  :root {
    --navy-900: #061243;
    --navy-800: #0A1E5E;
    --navy-700: #12307E;
    --navy-600: #1D4499;
    --blue: #63C6E5;
    --blue-soft: #EAF7FC;
    --ink: #17233F;
    --muted: #5A6786;
    --line: #E3E9F2;
    --white: #FFFFFF;
    --radius: 16px;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

  /* Header */
  header {
    position: sticky; top: 0; z-index: 50;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0; gap: 16px;
  }
  .nav img.logo { height: 40px; width: auto; display: block; }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    color: rgba(255,255,255,.85); text-decoration: none;
    font-size: 14.5px; font-weight: 500; transition: color .15s;
  }
  .nav-links a:hover { color: var(--blue); }
  .btn {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--blue); color: var(--navy-900);
    font-weight: 700; font-size: 15px;
    padding: 11px 22px; border-radius: 999px; text-decoration: none;
    transition: transform .15s, box-shadow .15s;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(99,198,229,.35); }
  .btn.big { font-size: 17px; padding: 15px 32px; }
  .btn.ghost {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,.35);
  }
  .btn.ghost:hover { border-color: var(--blue); color: var(--blue); box-shadow: none; }
  .btn svg { flex: none; }

  /* Hero */
  .hero {
    background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-800) 45%, var(--navy-900) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .hero-inner {
    display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px;
    align-items: center; padding: 88px 0 110px;
    position: relative; z-index: 1;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 18px;
  }
  .eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--blue); display: inline-block; }
  h1 {
    font-size: clamp(34px, 4.6vw, 52px); font-weight: 800;
    line-height: 1.12; letter-spacing: -0.01em; margin-bottom: 20px;
  }
  h1 .accent { color: var(--blue); }
  .hero p.lead {
    font-size: 17.5px; color: rgba(255,255,255,.82);
    max-width: 480px; margin-bottom: 32px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 34px; }
  .badge {
    font-size: 13px; font-weight: 600;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.92);
    padding: 7px 15px; border-radius: 999px;
  }
  .hero-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px; padding: 36px 32px;
    text-align: center; backdrop-filter: blur(6px);
  }
  .hero-card img {
    width: 168px; height: 168px; border-radius: 50%;
    border: 4px solid var(--blue); display: block; margin: 0 auto 18px;
  }
  .hero-card .name { font-weight: 700; font-size: 19px; }
  .hero-card .role { font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 16px; }
  .hero-card .phone {
    display: block; font-size: 24px; font-weight: 800; color: var(--blue);
    text-decoration: none; letter-spacing: .01em;
  }
  .hero-card .phone:hover { text-decoration: underline; }
  .wave { display: block; width: 100%; height: 70px; position: absolute; bottom: -1px; left: 0; z-index: 0; }

  /* Sections */
  section { padding: 84px 0; }
  .sec-head { max-width: 620px; margin-bottom: 48px; }
  .sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .kicker {
    font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--navy-600); margin-bottom: 10px;
  }
  h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
  .sec-head p { color: var(--muted); margin-top: 12px; font-size: 16px; }

  /* Services */
  .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .card {
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px 28px; transition: box-shadow .2s, transform .2s;
    background: var(--white);
  }
  .card:hover { box-shadow: 0 14px 36px rgba(6,18,67,.09); transform: translateY(-3px); }
  .card .icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--blue-soft); color: var(--navy-600);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .card h3 { font-size: 18.5px; font-weight: 700; margin-bottom: 10px; }
  .card p { font-size: 14.5px; color: var(--muted); }

  /* Areas */
  .areas { background: var(--blue-soft); }
  .area-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  }
  .area {
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 26px 20px; text-align: center;
    font-weight: 700; font-size: 16.5px; color: var(--navy-800);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
  }
  .area svg { color: var(--blue); }
  .area small { font-weight: 500; font-size: 12.5px; color: var(--muted); }

  /* About */
  .about-inner { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: center; }
  .about-photo { position: relative; width: 300px; }
  .about-photo img { width: 100%; border-radius: 50%; border: 6px solid var(--blue-soft); display: block; }
  .about-photo .years {
    position: absolute; bottom: 6px; right: -6px;
    background: var(--navy-800); color: var(--white);
    border-radius: 999px; padding: 10px 18px;
    font-size: 13px; font-weight: 700; text-align: center; line-height: 1.25;
    box-shadow: 0 10px 24px rgba(6,18,67,.25);
  }
  .about-photo .years b { display: block; font-size: 20px; color: var(--blue); }
  .about-copy h2 { margin-bottom: 16px; }
  .about-copy p { color: var(--muted); margin-bottom: 14px; font-size: 15.5px; }
  .about-points { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
  .about-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; font-weight: 500; }
  .about-points svg { color: var(--blue); flex: none; margin-top: 3px; }

  /* CTA */
  .cta {
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    color: var(--white); text-align: center;
    border-radius: 24px; padding: 64px 32px;
  }
  .cta h2 { color: var(--white); margin-bottom: 12px; }
  .cta p { color: rgba(255,255,255,.78); margin-bottom: 30px; font-size: 16px; }
  .cta .phone-line { margin-top: 22px; font-size: 14px; color: rgba(255,255,255,.65); }
  .cta .phone-line a { color: var(--blue); font-weight: 700; text-decoration: none; }

  /* Footer */
  footer {
    background: var(--navy-900); color: rgba(255,255,255,.65);
    padding: 36px 0; font-size: 13.5px;
  }
  .foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
  .foot img { height: 30px; display: block; }
  .foot a { color: var(--blue); text-decoration: none; font-weight: 600; }

  /* Mobile */
  @media (max-width: 880px) {
    .nav-links { display: none; }
    .hero-inner { grid-template-columns: 1fr; padding: 56px 0 90px; gap: 40px; }
    .hero p.lead { max-width: none; }
    .cards { grid-template-columns: 1fr; }
    .area-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-photo { margin: 0 auto; }
    section { padding: 64px 0; }
  }
  @media (max-width: 480px) {
    .area-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .nav img.logo { height: 32px; }
    .btn { font-size: 14px; padding: 10px 18px; }
  }
/* ===== Subpage hero ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-800) 45%, var(--navy-900) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.page-hero-inner { padding: 72px 0 96px; max-width: 760px; position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.page-hero .sub { font-size: 19px; font-weight: 600; color: var(--blue); margin-bottom: 20px; }
.page-hero p.lead { font-size: 16px; color: rgba(255,255,255,.82); margin-bottom: 14px; }
.page-hero .hero-ctas { margin-top: 30px; }

/* ===== Trust strip ===== */
.trust { background: var(--navy-900); padding: 40px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; color: rgba(255,255,255,.9);
  font-size: 13px; font-weight: 600; line-height: 1.35;
  padding: 14px 8px; border-radius: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
}
.trust-item svg { color: var(--blue); }

/* ===== Property chips ===== */
.chip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.chip {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 12px; text-align: center;
  font-weight: 600; font-size: 14.5px; color: var(--navy-800);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.chip svg { color: var(--blue); }

/* ===== Checklist ===== */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; list-style: none; }
.check-grid li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; font-weight: 500; }
.check-grid svg { color: var(--blue); flex: none; margin-top: 3px; }

/* ===== Depend-on panel ===== */
.depend {
  background: var(--blue-soft); border-radius: 24px; padding: 52px 48px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center;
}
.depend .goal {
  background: var(--white); border-left: 4px solid var(--blue); border-radius: 12px;
  padding: 26px 28px; font-size: 17px; font-weight: 600; color: var(--navy-800);
  box-shadow: 0 10px 28px rgba(6,18,67,.07);
}
.depend .goal .kicker { margin-bottom: 6px; }
.depend p { color: var(--muted); font-size: 15.5px; }
.depend h2 { margin-bottom: 14px; }

/* ===== Nav active ===== */
.nav-links a.active { color: var(--blue); }

/* ===== Homepage commercial teaser ===== */
.teaser {
  margin-top: 26px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(120deg, var(--blue-soft), #F6FBFE);
  padding: 26px 30px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.teaser strong { font-size: 17px; color: var(--navy-800); display: block; }
.teaser span { font-size: 14.5px; color: var(--muted); }
.btn.navy { background: var(--navy-800); color: var(--white); }
.btn.navy:hover { box-shadow: 0 8px 22px rgba(10,30,94,.3); }

@media (max-width: 880px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .check-grid { grid-template-columns: 1fr; }
  .depend { grid-template-columns: 1fr; padding: 36px 26px; }
  .page-hero-inner { padding: 52px 0 80px; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Language switcher ===== */
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85);
  text-decoration: none; padding: 8px 14px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.3); white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.lang-switch:hover { color: var(--blue); border-color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 10px; }
@media (max-width: 480px) {
  .lang-switch { font-size: 12px; padding: 7px 11px; }
}
