:root {
    --orange: #F5A623;
    --orange-hover: #ffb53d;
    --navy: #0e1d38;
    --ink: #0a1426;
    --white: #ffffff;
    --nav-h: clamp(72px, 7vw, 104px);
    --gutter: clamp(20px, 5vw, 88px);
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html, body {
    font-family: var(--font);
    background: var(--ink);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  .hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
  }

  /* ---- Background video (house image is the poster / fallback) ---- */
  .hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    background: var(--ink) url('assets/clean-edge-house.jpg') center 38% / cover no-repeat;
  }

  /* ---- Gradient overlays: darker on the left & bottom, clear on the right ---- */
  .hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(90deg,
        rgba(8,16,32,0.92) 0%,
        rgba(8,16,32,0.78) 22%,
        rgba(8,16,32,0.42) 48%,
        rgba(8,16,32,0.06) 72%,
        rgba(8,16,32,0.00) 100%),
      linear-gradient(0deg,
        rgba(8,16,32,0.80) 0%,
        rgba(8,16,32,0.30) 28%,
        rgba(8,16,32,0.00) 55%),
      linear-gradient(180deg,
        rgba(8,16,32,0.55) 0%,
        rgba(8,16,32,0.00) 26%);
  }

  /* ======================= NAV ======================= */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 40;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 0 var(--gutter);
    transition: background 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
  }
  .nav.scrolled {
    background: rgba(8,16,32,0.95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.28);
    height: clamp(62px, 6vw, 84px);
  }
  section[id] { scroll-margin-top: var(--nav-h); }

  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--white);
    flex: 0 0 auto;
  }
  .logo__brush {
    width: clamp(34px, 3.4vw, 46px);
    height: auto;
    flex: 0 0 auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
  }
  .logo__text { display: flex; flex-direction: column; line-height: 1; }
  .logo__top {
    font-weight: 800;
    font-size: clamp(22px, 2.5vw, 34px);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }
  .logo__bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
  }
  .logo__bottom::before,
  .logo__bottom::after {
    content: "";
    height: 1.5px;
    flex: 1;
    background: rgba(255,255,255,0.65);
  }
  .logo__bottom span {
    font-weight: 600;
    font-size: clamp(10px, 1vw, 13px);
    letter-spacing: 0.46em;
    padding-left: 0.46em;
    white-space: nowrap;
  }

  /* Center links */
  .nav__links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 40px);
    list-style: none;
  }
  .nav__links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(13px, 1.05vw, 15px);
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 6px 0;
    position: relative;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    transition: color 0.2s ease;
  }
  .nav__links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .nav__links a:hover { color: var(--orange); }
  .nav__links a:hover::after { transform: scaleX(1); }
  .nav__links .caret { width: 10px; height: 10px; opacity: 0.9; }

  /* Right cluster */
  .nav__right {
    display: flex;
    align-items: center;
    gap: clamp(16px, 1.8vw, 28px);
    flex: 0 0 auto;
  }
  .nav__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(15px, 1.15vw, 18px);
    letter-spacing: 0.02em;
    text-shadow: 0 1px 8px rgba(0,0,0,0.45);
    transition: color 0.2s ease;
  }
  .nav__phone:hover { color: var(--orange); }
  .nav__phone svg { width: 18px; height: 18px; }
  .nav__divider {
    width: 1px;
    height: 34px;
    background: rgba(255,255,255,0.4);
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--orange);
    color: var(--white);
    border: none;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  .btn:hover { background: var(--orange-hover); transform: translateY(-2px); }
  .btn:active { transform: translateY(0); }

  .btn--nav {
    font-size: clamp(12px, 0.95vw, 14px);
    padding: 14px 22px;
    box-shadow: 0 8px 22px rgba(245,166,35,0.32);
  }

  .btn--hero {
    font-size: clamp(15px, 1.3vw, 19px);
    padding: 20px 34px;
    box-shadow: 0 14px 38px rgba(245,166,35,0.36);
  }
  .btn--hero svg { width: 22px; height: 22px; transition: transform 0.2s ease; }
  .btn--hero:hover svg { transform: translateX(5px); }

  /* ======================= HERO CONTENT ======================= */
  .hero__content {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 var(--gutter) clamp(40px, 6vh, 76px);
    max-width: 1040px;
  }

  .hero__headline {
    font-weight: 800;
    font-size: clamp(44px, 7.4vw, 124px);
    line-height: 0.96;
    letter-spacing: -0.025em;
    text-shadow: 0 6px 34px rgba(0,0,0,0.45);
    text-wrap: balance;
  }

  .hero__sub {
    margin-top: clamp(20px, 2.6vh, 34px);
    max-width: 620px;
    font-weight: 400;
    font-size: clamp(17px, 1.55vw, 25px);
    line-height: 1.45;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 2px 16px rgba(0,0,0,0.55);
    text-wrap: pretty;
  }

  .hero__cta {
    margin-top: clamp(28px, 3.8vh, 46px);
  }

  .hero__trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: clamp(30px, 4.6vh, 58px);
    font-weight: 500;
    font-size: clamp(13px, 1.05vw, 16px);
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.94);
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  }
  .hero__trust svg { width: 20px; height: 22px; flex: 0 0 auto; }
  .hero__trust .dot { opacity: 0.55; padding: 0 2px; }

  /* ======================= RESPONSIVE ======================= */
  /* Mobile menu toggle */
  .nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 6;
  }
  .nav__toggle svg { width: 30px; height: 30px; stroke: var(--white); }
  @media (max-width: 1080px) {
    .nav__toggle { display: inline-flex; }
    .nav__links {
      position: fixed;
      inset: 0;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 30px;
      background: rgba(8,16,32,0.97);
      transform: translateX(100%);
      transition: transform 0.32s ease;
      z-index: 5;
    }
    .nav.is-open .nav__links { transform: translateX(0); }
    .nav__links a { font-size: 21px; letter-spacing: 0.14em; }
  }
  @media (max-width: 720px) {
    .nav__phone span { display: none; }
    .btn--nav { padding: 12px 16px; }
    .hero__bg { object-position: center 30%; background-position: center 30%; }
    .hero__overlay {
      background:
        linear-gradient(0deg,
          rgba(8,16,32,0.90) 0%,
          rgba(8,16,32,0.55) 34%,
          rgba(8,16,32,0.10) 64%,
          rgba(8,16,32,0.30) 100%);
    }
    .hero__trust { flex-wrap: wrap; }
  }
  @media (max-width: 540px) {
    .nav__divider, .nav__phone { display: none; }
    .logo__bottom span { letter-spacing: 0.34em; }
  }

  @media (prefers-reduced-motion: no-preference) {
    .hero__headline, .hero__sub, .hero__cta, .hero__trust {
      animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .hero__sub  { animation-delay: 0.10s; }
    .hero__cta  { animation-delay: 0.20s; }
    .hero__trust{ animation-delay: 0.30s; }
    @keyframes rise {
      from { opacity: 0; transform: translateY(26px); }
      to   { opacity: 1; transform: translateY(0); }
    }
  }

  /* ======================= EXAMPLES SECTION ======================= */
  .examples {
    background: var(--white);
    color: var(--navy);
    padding: clamp(64px, 9vh, 124px) var(--gutter);
  }
  .examples__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(28px, 4vh, 48px);
  }
  .eyebrow {
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: clamp(12px, 1vw, 14px);
  }
  .examples__title {
    font-weight: 800;
    font-size: clamp(32px, 4.6vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-top: 14px;
    color: var(--navy);
  }
  .examples__sub {
    margin-top: 16px;
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.5;
    color: #5b6678;
  }

  .filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(26px, 4vh, 44px);
  }
  .filter {
    border: 1.5px solid #d7dce4;
    background: var(--white);
    color: var(--navy);
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  .filter:hover { border-color: var(--orange); color: var(--orange); }
  .filter.is-active { background: var(--orange); border-color: var(--orange); color: var(--white); }

  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2vw, 28px);
    max-width: 1180px;
    margin: 0 auto;
  }
  .card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: var(--navy);
    aspect-ratio: 16 / 10;
    box-shadow: 0 18px 50px rgba(14,29,56,0.13);
  }
  .card.is-hidden { display: none; }
  .card__media,
  .card .ba__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .card__caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 6;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(14,29,56,0.88) 0%, rgba(14,29,56,0.0) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: clamp(14px, 1.1vw, 18px);
    letter-spacing: 0.02em;
    padding: 30px 18px 15px;
  }

  /* Before / after slider */
  .ba {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    touch-action: none;
  }
  .ba__img { position: absolute; inset: 0; }
  .ba__before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
  .ba__tag {
    position: absolute;
    top: 14px;
    z-index: 6;
    pointer-events: none;
    background: rgba(14,29,56,0.82);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 11px;
    border-radius: 999px;
  }
  .ba__tag--before { left: 14px; }
  .ba__tag--after { right: 14px; }
  .ba__handle {
    position: absolute;
    top: 0; bottom: 0;
    left: var(--pos, 50%);
    width: 3px;
    background: var(--white);
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 0 14px rgba(0,0,0,0.45);
  }
  .ba__handle::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 6px 18px rgba(0,0,0,0.32);
  }
  .ba__handle::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 20px; height: 20px;
    background: var(--orange);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8 7l-5 5 5 5M16 7l5 5-5 5' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8 7l-5 5 5 5M16 7l5 5-5 5' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
  }

  @media (max-width: 720px) {
    .grid { grid-template-columns: 1fr; }
  }

  /* ======================= SHARED SECTION HEADERS ======================= */
  .section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(34px, 5vh, 56px); }
  .sec-title { font-weight: 800; font-size: clamp(32px, 4.6vw, 64px); line-height: 1.04; letter-spacing: -0.02em; margin-top: 14px; }
  .sec-sub { margin-top: 16px; font-size: clamp(16px, 1.3vw, 20px); line-height: 1.5; color: #5b6678; }

  /* ======================= SERVICES ======================= */
  .services { background: #f6f8fb; color: var(--navy); padding: clamp(64px, 9vh, 124px) var(--gutter); }
  .svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.6vw, 24px); max-width: 1200px; margin: 0 auto; }
  .svc { background: #fff; border: 1px solid #e6eaf0; border-radius: 18px; padding: clamp(24px, 2.2vw, 34px); transition: transform 0.2s ease, box-shadow 0.2s ease; }
  .svc:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(14,29,56,0.12); }
  .svc__icon { width: 54px; height: 54px; border-radius: 14px; background: rgba(245,166,35,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
  .svc__icon svg { width: 28px; height: 28px; stroke: var(--orange); fill: none; }
  .svc h3 { font-size: clamp(18px, 1.4vw, 22px); font-weight: 800; margin-bottom: 8px; }
  .svc p { font-size: 15px; line-height: 1.55; color: #5b6678; }
  @media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .svc-grid { grid-template-columns: 1fr; } }

  /* ======================= WHY ======================= */
  .why { background: var(--navy); color: var(--white); padding: clamp(64px, 9vh, 124px) var(--gutter); }
  .why .sec-sub { color: rgba(255,255,255,0.8); }
  .why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 2.4vw, 40px); max-width: 1180px; margin: 0 auto; }
  .feat { text-align: center; }
  .feat__icon { width: 62px; height: 62px; border-radius: 50%; background: rgba(245,166,35,0.14); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
  .feat__icon svg { width: 30px; height: 30px; stroke: var(--orange); fill: none; }
  .feat h3 { font-size: clamp(17px, 1.3vw, 20px); font-weight: 800; margin-bottom: 8px; }
  .feat p { font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,0.72); }
  @media (max-width: 860px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }

  /* ======================= PROCESS ======================= */
  .process { background: #fff; color: var(--navy); padding: clamp(64px, 9vh, 124px) var(--gutter); }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 32px); max-width: 1120px; margin: 0 auto; }
  .step { text-align: center; }
  .step__num { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--orange); color: var(--orange); font-weight: 800; font-size: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
  .step h3 { font-size: clamp(16px, 1.3vw, 20px); font-weight: 800; margin-bottom: 6px; }
  .step p { font-size: 14.5px; color: #5b6678; line-height: 1.5; max-width: 220px; margin: 0 auto; }
  @media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); row-gap: 36px; } }

  /* ======================= CTA BAND ======================= */
  .cta-band { background: linear-gradient(120deg, #0b1830, #16294b); color: var(--white); text-align: center; padding: clamp(56px, 8vh, 104px) var(--gutter); }
  .cta-band h2 { font-size: clamp(30px, 4vw, 56px); font-weight: 800; letter-spacing: -0.02em; }
  .cta-band p { margin-top: 14px; font-size: clamp(16px, 1.4vw, 21px); color: rgba(255,255,255,0.82); }
  .cta-band__actions { margin-top: clamp(26px, 4vh, 40px); display: flex; gap: 24px; justify-content: center; align-items: center; flex-wrap: wrap; }
  .cta-band__phone { color: var(--white); font-weight: 700; font-size: clamp(16px, 1.3vw, 20px); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
  .cta-band__phone svg { width: 20px; height: 20px; }
  .cta-band__phone:hover { color: var(--orange); }

  /* ======================= FOOTER ======================= */
  .footer { background: var(--ink); color: rgba(255,255,255,0.72); padding: clamp(48px, 7vh, 80px) var(--gutter) 28px; }
  .footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(24px, 3vw, 48px); max-width: 1200px; margin: 0 auto; }
  .footer__brand .logo__top { font-size: 26px; }
  .footer__tag { margin-top: 14px; font-size: 14.5px; line-height: 1.6; max-width: 300px; }
  .footer__col h4 { color: var(--white); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
  .footer__col a, .footer__col p { display: block; color: rgba(255,255,255,0.72); text-decoration: none; font-size: 14.5px; margin-bottom: 10px; }
  .footer__col a:hover { color: var(--orange); }
  .footer__bottom { max-width: 1200px; margin: clamp(32px, 5vh, 52px) auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }
  .footer__bottom .badges span { margin-right: 16px; }
  @media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

  /* ======================= SCROLL REVEAL ======================= */
  @media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1); }
    .reveal.is-visible { opacity: 1; transform: none; }
  }

  /* ======================= FAQ ======================= */
  .faq { background: #f6f8fb; color: var(--navy); padding: clamp(64px, 9vh, 124px) var(--gutter); }
  .faq__list { max-width: 820px; margin: 0 auto; }
  .faq__item { background: #fff; border: 1px solid #e6eaf0; border-radius: 14px; margin-bottom: 14px; overflow: hidden; }
  .faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: var(--font); font-weight: 700; font-size: clamp(16px, 1.3vw, 19px); color: var(--navy); padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
  .faq__q svg { width: 22px; height: 22px; stroke: var(--orange); flex: 0 0 auto; transition: transform 0.25s ease; }
  .faq__item.open .faq__q svg { transform: rotate(45deg); }
  .faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .faq__a p { padding: 0 24px 22px; color: #5b6678; font-size: 15.5px; line-height: 1.6; }

  /* ======================= STICKY MOBILE CTA ======================= */
  .mobile-cta { display: none; }
  @media (max-width: 720px) {
    .mobile-cta {
      display: flex;
      position: fixed;
      left: 0; right: 0; bottom: 0;
      z-index: 60;
      box-shadow: 0 -6px 24px rgba(0,0,0,0.25);
    }
    .mobile-cta a {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 8px;
      font-weight: 800;
      font-size: 15px;
      letter-spacing: 0.04em;
      text-decoration: none;
      text-transform: uppercase;
    }
    .mobile-cta__call { background: var(--navy); color: #fff; }
    .mobile-cta__quote { background: var(--orange); color: #fff; }
    .mobile-cta a svg { width: 18px; height: 18px; }
    body { padding-bottom: 54px; }
    body.menu-open .mobile-cta { display: none; }
  }
/* ======================= SERVICE PAGES ======================= */
.page-hero { background: var(--navy); color: var(--white); padding: calc(var(--nav-h) + clamp(40px,6vh,80px)) var(--gutter) clamp(40px,6vh,80px); text-align: center; }
.page-hero .eyebrow { color: var(--orange); }
.page-hero h1 { font-size: clamp(34px,5vw,68px); font-weight: 800; letter-spacing: -0.02em; margin-top: 12px; }
.page-hero p { margin-top: 14px; font-size: clamp(16px,1.4vw,20px); color: rgba(255,255,255,0.82); max-width: 680px; margin: 14px auto 0; line-height: 1.5; }
.svc-page { padding: clamp(56px,8vh,110px) var(--gutter); background: #fff; color: var(--navy); }
.grid--3 { grid-template-columns: repeat(3,1fr); }
@media (max-width: 920px) { .grid--3 { grid-template-columns: 1fr; } }
.svc-detail { max-width: 820px; margin: clamp(40px,6vh,72px) auto 0; }
.svc-detail h2 { font-size: clamp(24px,2.6vw,34px); font-weight: 800; margin-bottom: 22px; text-align: center; }
.svc-detail ul { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 14px 28px; }
.svc-detail li { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; color: #44505f; }
.svc-detail li svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; flex: 0 0 auto; margin-top: 2px; }
@media (max-width: 560px) { .svc-detail ul { grid-template-columns: 1fr; } }
a.svc { text-decoration: none; color: inherit; display: block; }

/* "More Services" pill + link-style filters */
a.filter { text-decoration: none; display: inline-flex; align-items: center; }
.filter--more { color: var(--orange); border-color: var(--orange); }
.filter--more:hover { background: var(--orange); color: #fff; }

/* Examples "View all" CTA */
.examples__cta { text-align: center; margin-top: clamp(28px, 4vh, 46px); }
.examples__more { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--navy); border: 2px solid var(--navy); border-radius: 999px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; padding: 14px 28px; text-decoration: none; font-size: clamp(13px, 1vw, 15px); transition: background 0.2s ease, color 0.2s ease; }
.examples__more:hover { background: var(--navy); color: #fff; }

/* Service-page overview / detail copy */
.svc-overview { max-width: 780px; margin: 0 auto clamp(40px, 6vh, 64px); text-align: center; }
.svc-overview h2 { font-size: clamp(24px, 2.8vw, 38px); font-weight: 800; margin-bottom: 16px; color: var(--navy); }
.svc-overview p { font-size: 16.5px; line-height: 1.7; color: #44505f; margin-bottom: 16px; }

/* Services dropdown */
.has-dropdown { position: relative; }
.dropdown { position: absolute; top: 100%; left: 0; min-width: 230px; list-style: none; margin-top: 6px; padding: 10px; background: rgba(8,16,32,0.97); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-radius: 12px; box-shadow: 0 14px 34px rgba(0,0,0,0.4); display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; z-index: 50; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 10px 14px !important; border-radius: 8px; font-size: 14px !important; letter-spacing: 0.04em !important; text-transform: none !important; white-space: nowrap; }
.dropdown a::after { content: none !important; }
.dropdown a:hover { background: rgba(255,255,255,0.08); color: var(--orange); }
@media (max-width: 1080px) {
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; box-shadow: none; margin-top: 4px; padding: 0; align-items: center; }
  .dropdown a { font-size: 16px !important; color: rgba(255,255,255,0.75); }
}

/* Service switcher (move between services on service pages) */
.svc-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: clamp(24px, 4vh, 36px); }
.svc-nav a { padding: 10px 22px; border-radius: 999px; font-weight: 700; font-size: 14px; letter-spacing: 0.04em; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.3); color: #fff; transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease; }
.svc-nav a:hover { border-color: var(--orange); color: var(--orange); }
.svc-nav a.is-active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* Logo image */
.logo__img { height: clamp(46px, 5vw, 64px); width: auto; display: block; }

/* Solid navy nav + larger responsive logo (baked-navy logo blends seamlessly) */
.nav { background: #0e1d38; }
.nav.scrolled { background: #0e1d38; -webkit-backdrop-filter: none; backdrop-filter: none; }
.logo__img { height: clamp(54px, 6.5vw, 80px); width: auto; display: block; }
@media (max-width: 600px) { .logo__img { height: 46px; } }

/* Logo swap: white over hero (transparent nav), gold when scrolled (solid navy) */
.nav { background: transparent; }
.nav.scrolled { background: #0e1d38; box-shadow: 0 6px 24px rgba(0,0,0,0.28); }
.logo__img--dark { display: none; }
.nav.scrolled .logo__img--light { display: none; }
.nav.scrolled .logo__img--dark { display: block; }

/* Keep white logo in both states */
.nav.scrolled .logo__img--light { display: block; }
.nav.scrolled .logo__img--dark { display: none; }

/* Slightly bigger logo on mobile */
@media (max-width: 600px) { .logo__img { height: 56px; } }

/* ======================= SERVICE AREA ======================= */
.area { background: #f6f8fb; color: var(--navy); padding: clamp(64px, 9vh, 120px) var(--gutter); }
.area__inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 60px); align-items: center; }
.area__text .sec-title { margin-top: 12px; }
.area__text .sec-sub { margin-top: 14px; max-width: 520px; }
.area__chips { list-style: none; padding: 0; margin: 26px 0 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.area__chips li { background: #fff; border: 1px solid #e3e8f0; color: var(--navy); font-weight: 600; font-size: 14px; padding: 9px 16px; border-radius: 999px; }
.area__chips .area__chips--all { background: var(--navy); color: #fff; border-color: var(--navy); }
.area__map { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 54px rgba(14,29,56,0.18); min-height: 400px; }
.area__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 860px) {
  .area__inner { grid-template-columns: 1fr; gap: 30px; }
  .area__map { min-height: 300px; order: 2; }
}
