    /* ============================================================
       CSS CUSTOM PROPERTIES
    ============================================================ */
    :root {
      --navy:         #0c1e35;
      --navy-mid:     #163350;
      --navy-light:   #1e4060;
      --green:            #a8cc9f;
      --green-rgb:        168, 204, 159;
      --green-pale:       #eef5ec;
      --green-dark:       #3a6b4a;
      --green-dark-rgb:   58, 107, 74;
      --green-light:      #5a9470;
      --green-hover:      #7dcb98;
      --green-hover-rgb:  125, 203, 152;
      --cream:        #f5f0e8;
      --sand:         #e8ddc9;
      --gold:         #b8905a;
      --white:        #fefdfb;
      --text-dark:    #0c1e35;
      --text-mid:     #4a5568;
      --text-light:   #8896a4;

      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

      --ease:         cubic-bezier(0.4, 0, 0.2, 1);
      --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);

      --shadow-sm:    0 2px 12px rgba(12,30,53,0.07);
      --shadow-md:    0 8px 32px rgba(12,30,53,0.11);
      --shadow-lg:    0 24px 64px rgba(12,30,53,0.16);
      --shadow-xl:    0 40px 100px rgba(12,30,53,0.22);

      --radius:       4px;
      --radius-md:    8px;
      --radius-lg:    14px;
      --radius-xl:    24px;

      --nav-logo-color: var(--green);
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--text-dark);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; font-family: var(--font-body); }
    input, select, textarea { font-family: var(--font-body); }

    /* ============================================================
       TYPOGRAPHY
    ============================================================ */
    h1, h2, h3, h4 {
      font-family: var(--font-display);
      font-weight: 400;
      line-height: 1.12;
      color: var(--text-dark);
    }
    h1 { font-size: clamp(2.8rem, 5.5vw, 5.2rem); }
    h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); }
    h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); }
    h4 { font-size: 1.1rem; }
    p {
      font-size: 1.02rem;
      line-height: 1.72;
      color: var(--text-mid);
    }

    /* ============================================================
       LAYOUT UTILITIES
    ============================================================ */
    .container       { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
    .container--wide { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
    .section    { padding: 7rem 0; }
    .section--sm { padding: 4rem 0; }
    section[id] { scroll-margin-top: 88px; }

    /* Section label */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      font-family: var(--font-body);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 1.1rem;
    }
    .eyebrow::before {
      content: '';
      display: block;
      width: 2rem;
      height: 1px;
      background: var(--green);
      flex-shrink: 0;
    }
    .eyebrow--light { color: var(--green); }
    .eyebrow--light::before { background: var(--green); }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      padding: 0.88rem 1.9rem;
      font-family: var(--font-body);
      font-size: 0.84rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      border-radius: var(--radius-md);
      transition: all var(--transition);
      cursor: pointer;
      border: none;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }
    .btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0);
      transition: background var(--transition);
    }
    .btn:hover::after { background: rgba(255,255,255,0.08); }

    .btn--primary {
      background-color: #a8cc9f;
      color: #0c1e35;
      box-shadow: 0 4px 20px rgba(168, 204, 159, 0.28);
    }
    .btn--primary:hover {
      background-color: #3a6b4a;
      color: #fefdfb;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(58, 107, 74, 0.38);
    }
    .btn--primary.btn--whatsapp {
      background: #25d366;
      color: var(--white);
      box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
    }
    .btn--primary.btn--whatsapp:hover {
      background: #20bd5a;
      color: var(--white);
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    }
    .btn--ghost {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.42);
    }
    .btn--ghost:hover {
      border-color: rgba(255,255,255,0.8);
      background: rgba(255,255,255,0.08);
    }
    .btn--dark {
      background: var(--navy);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(12,30,53,0.25);
    }
    .btn--dark:hover {
      background: var(--navy-mid);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(12,30,53,0.35);
    }
    .btn--outline-dark {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid rgba(12,30,53,0.22);
    }
    .btn--outline-dark:hover {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }
    .btn svg { width: 1em; height: 1em; flex-shrink: 0; }
    .btn--lg { padding: 1.05rem 2.3rem; font-size: 0.92rem; }

    /* ============================================================
       SCROLL REVEAL
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: 0.1s; }
    .reveal-d2 { transition-delay: 0.2s; }
    .reveal-d3 { transition-delay: 0.3s; }
    .reveal-d4 { transition-delay: 0.4s; }

    /* ============================================================
       NAVIGATION
    ============================================================ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0.5rem 0;
      background: rgba(9, 18, 33, 0.45);
      transition: background 0.45s ease, backdrop-filter 0.45s ease,
                  box-shadow 0.45s ease, padding 0.4s ease;
    }
    .nav.scrolled {
      background: rgba(9, 18, 33, 0.93);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 1px 32px rgba(0,0,0,0.22);
      padding: 0.5rem 0;
    }
    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .nav__logo {
      display: flex;
      align-items: center;
      line-height: 1;
      flex-shrink: 0;
    }
    .nav__logo-img {
      display: block;
      height: 4rem;
      width: auto;
      max-width: min(220px, 42vw);
    }
    /* Weißes PNG-Logo per Maske einfärben (Farbe: --nav-logo-color) */
    .nav__logo-mark {
      display: block;
      height: 4rem;
      width: auto;
      aspect-ratio: 825 / 302;
      max-width: min(220px, 42vw);
      background-color: var(--nav-logo-color);
      -webkit-mask-image: url('../gfx/logo_clean_and_green_sylt_transparent.png');
      mask-image: url('../gfx/logo_clean_and_green_sylt_transparent.png');
      -webkit-mask-size: contain;
      mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-position: left center;
      mask-position: left center;
    }
    .nav__logo-main {
      font-family: var(--font-display);
      font-size: 1.52rem;
      font-weight: 500;
      color: var(--white);
      letter-spacing: 0.015em;
    }
    .nav__logo-main em { font-style: normal; color: var(--green); }
    .nav__logo-sub {
      font-size: 0.58rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.42);
      margin-top: 2px;
    }
    .nav__links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      align-items: center;
    }
    .nav__links a {
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 500;
      color: rgba(255,255,255,0.7);
      transition: color var(--transition);
      position: relative;
    }
    .nav__links a::after {
      content: '';
      position: absolute;
      bottom: -5px; left: 0; right: 0;
      height: 1px;
      background: var(--green-hover);
      transform: scaleX(0);
      transition: transform 0.3s var(--ease);
      transform-origin: left;
    }
    .nav__links a:hover,
    .nav__links a.is-active { color: var(--white); }
    .nav__links a:hover::after,
    .nav__links a.is-active::after { transform: scaleX(1); }
    .nav__links a.is-active { font-weight: 600; }
    .nav__right {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }
    .nav__phone {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.6);
      display: flex;
      align-items: center;
      gap: 0.4rem;
      letter-spacing: 0.02em;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .nav__phone:hover { color: var(--white); }
    .nav__phone svg { color: var(--green); flex-shrink: 0; }
    .nav__toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 5px;
      background: none;
      border: none;
    }
    .nav__toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--white);
      transition: var(--transition);
      border-radius: 2px;
    }

    /* ============================================================
       MOBILE NAV OVERLAY
    ============================================================ */
    .mobile-nav {
      position: fixed;
      inset: 0;
      background: #070f1c;
      z-index: 1100;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .mobile-nav.open { opacity: 1; pointer-events: all; }
    .mobile-nav a {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 2.8rem);
      color: rgba(255,255,255,0.85);
      font-weight: 300;
      transition: color var(--transition);
    }
    .mobile-nav a:hover,
    .mobile-nav a.is-active { color: var(--green-hover); }
    .mobile-nav a.is-active { font-weight: 400; }
    .mobile-nav__close {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      background: none;
      border: none;
      color: rgba(255,255,255,0.6);
      padding: 0.5rem;
    }
    .mobile-nav__close svg { width: 26px; height: 26px; display: block; }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: flex-end;
      padding-top: 7rem;
      padding-bottom: 8rem;
      overflow: hidden;
    }
    .hero__bg {
      position: absolute;
      inset: 0;
      background-image: var(--hero-bg-image);
      background-size: cover;
      background-position: center 45%;
      transform: scale(1.06);
      transition: transform 7s ease;
      filter: brightness(1.14) contrast(0.97);
    }
    .hero__bg.ready { transform: scale(1); }
    .hero__gradient {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(8,16,28,0.9) 0%, rgba(8,16,28,0.56) 46%, rgba(8,16,28,0.2) 100%),
        linear-gradient(to right, rgba(8,16,28,0.42) 0%, rgba(8,16,28,0.12) 62%, transparent 100%);
    }
    .hero__gradient::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.06);
      pointer-events: none;
    }
    /* Subtle grain texture */
    .hero__grain {
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      pointer-events: none;
    }
    .hero__content {
      position: relative;
      z-index: 2;
      max-width: 780px;
      padding: clamp(1rem, 2.2vw, 1.5rem);
      border-radius: 1rem;
      background: linear-gradient(115deg, rgba(6,13,24,0.6), rgba(6,13,24,0.24));
      backdrop-filter: blur(2px);
      box-shadow: 0 12px 36px rgba(0,0,0,0.22);
    }
    .hero__eyebrow {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.6rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.25s forwards ease;
    }
    .hero__eyebrow-line {
      width: 2.8rem;
      height: 2px;
      background: var(--green);
      box-shadow: 0 0 6px rgba(var(--green-rgb), 0.6);
    }
    .hero__eyebrow-text {
      font-size: 0.68rem;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--green);
      font-weight: 700;
      text-shadow: 0 1px 8px rgba(0,0,0,0.6);
    }
    .hero h1 {
      color: var(--white);
      font-weight: 300;
      margin-bottom: 1.5rem;
      text-shadow: 0 10px 26px rgba(0,0,0,0.58), 0 2px 8px rgba(0,0,0,0.7);
      opacity: 0;
      animation: fadeUp 0.85s 0.4s forwards ease;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--sand);
    }
    .hero__sub {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.88);
      max-width: 520px;
      margin-bottom: 2.6rem;
      font-weight: 300;
      line-height: 1.65;
      text-shadow: 0 4px 16px rgba(0,0,0,0.65);
      opacity: 0;
      animation: fadeUp 0.85s 0.55s forwards ease;
    }
    .hero__actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.85s 0.7s forwards ease;
    }
    .hero__scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      right: 3rem;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.55rem;
    }
    .hero__scroll-hint span {
      font-size: 0.6rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      writing-mode: vertical-rl;
    }
    .hero__scroll-line {
      width: 1px;
      height: 3.5rem;
      background: rgba(255,255,255,0.15);
      overflow: hidden;
      position: relative;
    }
    .hero__scroll-line::after {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 60%;
      background: linear-gradient(to bottom, transparent, var(--green));
      animation: scrollDrop 1.8s 1s infinite ease-in-out;
    }

    /* Floating service pills on hero */
    .hero__pills {
      display: flex;
      gap: 0.7rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.85s 0.3s forwards ease;
    }
    .hero__pill {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.38rem 0.85rem;
      background: rgba(255,255,255,0.16);
      border: 1px solid rgba(255,255,255,0.38);
      border-radius: 100px;
      font-size: 0.72rem;
      color: #fff;
      font-weight: 500;
      letter-spacing: 0.04em;
      backdrop-filter: blur(8px);
      text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    }
    .hero__pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 6px rgba(var(--green-rgb), 0.7);
      flex-shrink: 0;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes scrollDrop {
      0%   { top: -100%; }
      100% { top: 200%; }
    }

    /* ============================================================
       STATS BAR
    ============================================================ */
    .stats {
      background: var(--navy);
      overflow: hidden;
    }
    .stats__inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
    .stats__item {
      padding: 2.4rem 2.8rem;
      display: flex;
      align-items: center;
      gap: 1.4rem;
      border-right: 1px solid rgba(255,255,255,0.07);
      position: relative;
      overflow: hidden;
    }
    .stats__item:last-child { border-right: none; }
    .stats__item::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--green-hover), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s var(--ease);
    }
    .stats__item:hover::before { transform: scaleX(1); }
    .stats__icon {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: rgba(var(--green-rgb), 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--green);
    }
    .stats__icon svg { width: 20px; height: 20px; }
    .stats__num {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 300;
      color: var(--white);
      line-height: 1;
    }
    .stats__label {
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.42);
      margin-top: 0.22rem;
    }

    /* ============================================================
       SERVICES
    ============================================================ */
    .services { background: var(--cream); }
    .services__header {
      text-align: center;
      max-width: 580px;
      margin: 0 auto 4.5rem;
    }
    .services__header h2 { margin-bottom: 0.8rem; }
    .services__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--sand);
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1.5px solid var(--sand);
    }
    .svc-card {
      background: var(--white);
      padding: 2.8rem 2.4rem 2.4rem;
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
      overflow: hidden;
      transition: background var(--transition);
    }
    .svc-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2.5px;
      background: linear-gradient(90deg, var(--green-hover), var(--green-hover));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.45s var(--ease);
    }
    .svc-card:hover { background: #fafaf8; }
    .svc-card:hover::after { transform: scaleX(1); }
    .svc-card__num {
      font-family: var(--font-display);
      font-size: 4.5rem;
      font-weight: 300;
      color: var(--sand);
      line-height: 1;
      margin-bottom: 1.2rem;
      transition: color 0.35s ease;
      user-select: none;
    }
    .svc-card:hover .svc-card__num { color: var(--green-pale); }
    .svc-card__icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(var(--green-rgb), 0.09);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      color: var(--green);
      flex-shrink: 0;
      transition: background var(--transition), color var(--transition), transform var(--transition);
    }
    .svc-card__icon svg { width: 22px; height: 22px; }
    .svc-card:hover .svc-card__icon {
      background: var(--green-hover);
      color: var(--white);
      transform: scale(1.08);
    }
    .svc-card h3 {
      color: var(--navy);
      font-size: 1.7rem;
      margin-bottom: 0.9rem;
    }
    .svc-card > p {
      font-size: 0.93rem;
      line-height: 1.72;
      flex-grow: 1;
    }
    .svc-card__list {
      list-style: none;
      margin-top: 1.4rem;
      display: flex;
      flex-direction: column;
      gap: 0.48rem;
    }
    .svc-card__list li {
      font-size: 0.83rem;
      color: var(--text-mid);
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .svc-card__list li::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
    }
    .svc-card__link {
      margin-top: 2rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--green);
      transition: gap var(--transition);
    }
    .svc-card__link svg { width: 14px; height: 14px; transition: transform var(--transition); }
    .svc-card:hover .svc-card__link { gap: 0.9rem; }
    .svc-card:hover .svc-card__link svg { transform: translateX(4px); }

    .services__extra {
      margin-top: 5.5rem;
      padding-top: 5rem;
      border-top: 1px solid var(--sand);
    }
    .services__header--extra { margin-bottom: 3.5rem; }
    .services__grid--extra {
      grid-template-columns: repeat(2, 1fr);
    }
    .svc-card--compact { padding: 2.2rem 2rem 2rem; }
    .svc-card--compact .svc-card__num {
      font-size: 3.2rem;
      margin-bottom: 0.9rem;
    }
    .svc-card--compact h3 { font-size: 1.45rem; margin-bottom: 0.75rem; }
    .services__combo {
      margin-top: 2rem;
      padding: 2.2rem 2.6rem;
      background: var(--white);
      border: 1.5px solid var(--sand);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      position: relative;
      overflow: hidden;
      transition: background var(--transition), box-shadow var(--transition);
    }
    .services__combo::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2.5px;
      background: linear-gradient(90deg, var(--green-hover), var(--green-hover));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.45s var(--ease);
    }
    .services__combo:hover {
      background: #fafaf8;
      box-shadow: var(--shadow-md);
    }
    .services__combo:hover::after { transform: scaleX(1); }
    .services__combo-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(var(--green-rgb), 0.09);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      flex-shrink: 0;
      transition: background var(--transition), color var(--transition);
    }
    .services__combo:hover .services__combo-icon {
      background: var(--green-hover);
      color: var(--white);
    }
    .services__combo-icon svg { width: 22px; height: 22px; }
    .services__combo h3 {
      font-size: 1.35rem;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }
    .services__combo p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--text-mid);
    }

    /* ============================================================
       WHY US
    ============================================================ */
    .why { background: var(--white); }
    .why__inner {
      display: grid;
      grid-template-columns: 1fr 1.08fr;
      gap: 5.5rem;
      align-items: center;
    }
    .why__visual {
      position: relative;
      flex-shrink: 0;
    }
    .why__img-main {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
      display: block;
    }
    .why__img-secondary {
      position: absolute;
      width: 52%;
      aspect-ratio: 1/1;
      object-fit: cover;
      border-radius: var(--radius-lg);
      bottom: -2.5rem;
      right: -2.5rem;
      border: 5px solid var(--white);
      box-shadow: var(--shadow-lg);
    }
    .why__badge {
      position: absolute;
      top: 2rem;
      left: -1.8rem;
      background: var(--green);
      color: var(--white);
      padding: 1.1rem 1.4rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      text-align: center;
    }
    .why__badge-num {
      font-family: var(--font-display);
      font-size: 2.1rem;
      font-weight: 300;
      line-height: 1;
      color: var(--white);
    }
    .why__badge-lbl {
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      margin-top: 0.3rem;
    }
    .why__content h2 { margin-bottom: 1rem; }
    .why__content > p { margin-bottom: 2.5rem; }
    .why__list {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .why__item {
      display: flex;
      gap: 1.1rem;
      align-items: flex-start;
      padding: 1.1rem;
      border-radius: var(--radius-md);
      transition: background var(--transition);
    }
    .why__item:hover { background: var(--cream); }
    .why__item-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(var(--green-rgb), 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--green);
      margin-top: 1px;
    }
    .why__item-icon svg { width: 17px; height: 17px; }
    .why__item h4 {
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.25rem;
    }
    .why__item p { font-size: 0.84rem; margin: 0; line-height: 1.62; }

    /* ============================================================
       PROCESS
    ============================================================ */
    .process {
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    .process__orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    .process__orb--1 {
      width: 700px;
      height: 700px;
      top: -250px;
      right: -200px;
      background: radial-gradient(circle, rgba(var(--green-rgb), 0.12), transparent 65%);
    }
    .process__orb--2 {
      width: 400px;
      height: 400px;
      bottom: -150px;
      left: -100px;
      background: radial-gradient(circle, rgba(var(--green-rgb), 0.08), transparent 65%);
    }
    .process__header {
      text-align: center;
      margin-bottom: 5rem;
      position: relative;
    }
    .process__header h2 { color: var(--white); margin-bottom: 0.8rem; }
    .process__header p { color: rgba(255,255,255,0.52); max-width: 460px; margin: 0 auto; }
    .process__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
    }
    .process__connector {
      position: absolute;
      top: 2rem;
      left: calc(16.67% + 2.5rem);
      right: calc(16.67% + 2.5rem);
      height: 1px;
      background: linear-gradient(90deg,
        rgba(var(--green-rgb), 0.5) 0%,
        rgba(var(--green-rgb), 0.15) 50%,
        rgba(var(--green-rgb), 0.5) 100%);
    }
    .process__step {
      padding: 0 2.8rem;
      text-align: center;
    }
    .process__step:first-child { padding-left: 0; }
    .process__step:last-child  { padding-right: 0; }
    .process__step-num {
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      background: rgba(var(--green-rgb), 0.14);
      border: 1px solid rgba(var(--green-rgb), 0.28);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 2rem;
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--green);
      position: relative;
      z-index: 1;
      transition: background var(--transition), border-color var(--transition), transform var(--transition);
    }
    .process__step:hover .process__step-num {
      background: rgba(90,148,112,0.25);
      border-color: rgba(90,148,112,0.5);
      transform: scale(1.06);
    }
    .process__step h3 { color: var(--white); margin-bottom: 0.8rem; font-size: 1.4rem; }
    .process__step p { color: rgba(255,255,255,0.52); font-size: 0.9rem; line-height: 1.72; }

    /* ============================================================
       TESTIMONIALS
    ============================================================ */
    .testimonials { background: var(--cream); }
    .testimonials__header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .testimonials__header h2 { margin-bottom: 0.8rem; }
    .stars-row,
    .testi-card__stars {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3px;
    }
    .testi-card__stars { justify-content: flex-start; margin-bottom: 1rem; }
    .stars-row { margin-bottom: 0.4rem; }
    .stars-row .star,
    .testi-card__stars .star {
      position: relative;
      display: inline-flex;
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }
    .testi-card__stars .star { width: 13px; height: 13px; }
    .stars-row .star svg,
    .testi-card__stars .star svg {
      width: 100%;
      height: 100%;
      fill: var(--sand);
    }
    .star--full svg,
    .star--partial .star__overlay { fill: var(--gold); }
    .star--partial .star__overlay {
      position: absolute;
      inset: 0;
      clip-path: inset(0 calc(100% - var(--star-fill, 50%)) 0 0);
    }
    .rating-text {
      font-size: 0.78rem;
      color: var(--text-light);
      text-align: center;
    }
    .rating-google-link {
      display: inline-block;
      margin-top: 0.35rem;
      font-size: 0.72rem;
      color: var(--text-light);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .rating-google-link:hover { color: var(--navy); }
    .testi-card__avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .testi-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2.4rem;
      position: relative;
      transition: transform var(--transition), box-shadow var(--transition);
      display: flex;
      flex-direction: column;
    }
    .testi-card:hover {
      transform: translateY(-7px);
      box-shadow: var(--shadow-xl);
    }
    .testi-card__mark {
      font-family: var(--font-display);
      font-size: 5rem;
      line-height: 0.5;
      color: var(--green);
      opacity: 0.25;
      margin-bottom: 1rem;
      user-select: none;
    }
    .testi-card p {
      font-size: 0.93rem;
      font-style: italic;
      line-height: 1.76;
      flex-grow: 1;
      margin-bottom: 1.5rem;
    }
    .testi-card__footer {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding-top: 1.2rem;
      border-top: 1px solid var(--sand);
    }
    .testi-card__avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--sand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1rem;
      color: var(--navy);
      flex-shrink: 0;
      font-weight: 500;
    }
    .testi-card__name {
      font-size: 0.84rem;
      font-weight: 600;
      color: var(--navy);
    }
    .testi-card__loc {
      font-size: 0.73rem;
      color: var(--text-light);
      margin-top: 1px;
    }

    /* ============================================================
       SERVICE AREA
    ============================================================ */
    .area { background: var(--white); }
    .area__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }
    .area__content h2 { margin-bottom: 1rem; }
    .area__content > p { margin-bottom: 2rem; }
    .area__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-bottom: 2rem;
    }
    .area__chip {
      padding: 0.38rem 0.9rem;
      background: var(--cream);
      border: 1px solid var(--sand);
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--navy);
      transition: background var(--transition), border-color var(--transition), color var(--transition);
      cursor: default;
    }
    .area__chip:hover {
      background: var(--green-hover);
      border-color: var(--green-hover);
      color: var(--white);
    }
    .area__note { font-size: 0.8rem; color: var(--text-light); font-style: italic; }
    .area__visual {
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4/3;
      box-shadow: var(--shadow-xl);
      position: relative;
    }
    .area__visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.65s ease;
      display: block;
    }
    .area__visual:hover img { transform: scale(1.04); }
    .area__visual-tag {
      position: absolute;
      bottom: 1.4rem;
      left: 1.4rem;
      background: rgba(8,16,28,0.82);
      backdrop-filter: blur(8px);
      color: rgba(255,255,255,0.9);
      padding: 0.6rem 1.1rem;
      border-radius: var(--radius-md);
      font-size: 0.76rem;
      letter-spacing: 0.06em;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .area__visual-tag svg { color: var(--green); width: 14px; height: 14px; }

    /* ============================================================
       CONTACT
    ============================================================ */
    .contact {
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    .contact__orb {
      position: absolute;
      bottom: -300px;
      left: -200px;
      width: 650px;
      height: 650px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(var(--green-rgb), 0.1), transparent 65%);
      pointer-events: none;
    }
    .contact__inner {
      display: grid;
      grid-template-columns: 1fr 1.25fr;
      gap: 6rem;
      align-items: start;
      position: relative;
    }
    .contact__side h2 { color: var(--white); margin-bottom: 1rem; }
    .contact__side > p { color: rgba(255,255,255,0.58); margin-bottom: 2.5rem; }
    .contact__person {
      margin-bottom: 1.25rem;
      padding: 0.9rem 1rem;
      border-radius: var(--radius-md);
      border: 1px solid rgba(var(--green-rgb), 0.3);
      background: rgba(var(--green-rgb), 0.08);
    }
    .contact__person-label {
      font-size: 0.62rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(255,255,255,0.6);
      margin-bottom: 0.3rem;
      font-weight: 600;
    }
    .contact__person-name {
      color: var(--green);
      font-size: 0.96rem;
      font-weight: 500;
    }
    .contact__hours {
      margin-bottom: 1.25rem;
      padding: 0.9rem 1rem;
      border-radius: var(--radius-md);
      border: 1px solid rgba(var(--green-rgb), 0.3);
      background: rgba(var(--green-rgb), 0.08);
    }
    .contact__hours-status {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.82rem;
      font-weight: 600;
      margin-bottom: 0.55rem;
    }
    .contact__hours-status--open { color: var(--green); }
    .contact__hours-status--closed { color: rgba(255,255,255,0.55); }
    .contact__hours-status--unknown { color: rgba(255,255,255,0.45); }
    .contact__hours-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
      flex-shrink: 0;
    }
    .contact__hours-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.22rem;
    }
    .contact__hours-row {
      display: flex;
      justify-content: space-between;
      gap: 0.75rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.52);
    }
    .contact__hours-row.is-today {
      color: var(--green);
      font-weight: 500;
    }
    .contact__hours-day { flex-shrink: 0; }
    .contact__hours-time { text-align: right; }
    .contact__promise {
      background: rgba(var(--green-rgb), 0.1);
      border: 1px solid rgba(var(--green-rgb), 0.22);
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.6rem;
      margin-bottom: 2rem;
    }
    .contact__promise-head {
      font-size: 0.66rem;
      letter-spacing: 0.17em;
      text-transform: uppercase;
      color: var(--green);
      font-weight: 600;
      margin-bottom: 0.45rem;
    }
    .contact__promise p { color: rgba(255,255,255,0.65); font-size: 0.87rem; margin: 0; }
    .contact__meta {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }
    .contact__meta-item {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      color: rgba(255,255,255,0.56);
      font-size: 0.87rem;
    }
    .contact__meta-item a {
      color: var(--green);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .contact__meta-item a:hover { color: var(--green-hover); }
    .contact__meta-item svg { color: var(--green); width: 17px; height: 17px; flex-shrink: 0; }
    .contact__form-box {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-xl);
      padding: 2.5rem;
      backdrop-filter: blur(10px);
    }
    .fgrid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.9rem;
    }
    .fg { display: flex; flex-direction: column; gap: 0.38rem; }
    .fg--full { grid-column: 1 / -1; }
    .flabel {
      font-size: 0.66rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.44);
      font-weight: 600;
    }
    .finput, .fselect, .ftextarea {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.11);
      border-radius: var(--radius-md);
      padding: 0.78rem 1rem;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.88rem;
      transition: border-color var(--transition), background var(--transition);
      outline: none;
      width: 100%;
    }
    .finput::placeholder,
    .ftextarea::placeholder { color: rgba(255,255,255,0.22); }
    .finput:focus,
    .fselect:focus,
    .ftextarea:focus {
      border-color: var(--green-hover);
      background: rgba(255,255,255,0.1);
      box-shadow: 0 0 0 3px rgba(var(--green-hover-rgb), 0.15);
    }
    .fselect { appearance: none; cursor: pointer; }
    .fselect option { background: #0c1e35; color: var(--white); }
    .ftextarea { resize: vertical; min-height: 96px; }
    .fsubmit {
      width: 100%;
      margin-top: 1.4rem;
      padding: 1rem;
      font-size: 0.9rem;
    }
    .fprivacy {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.28);
      text-align: center;
      margin-top: 0.7rem;
      line-height: 1.55;
    }
    .form-success {
      display: none;
      text-align: center;
      padding: 4rem 2rem;
    }
    .form-error {
      display: block;
      margin-bottom: 1rem;
      padding: 0.85rem 1rem;
      border-radius: 8px;
      background: rgba(248, 113, 113, 0.12);
      border: 1px solid rgba(248, 113, 113, 0.35);
      color: #fecaca;
      font-size: 0.88rem;
      line-height: 1.5;
    }
    .form-error[hidden] { display: none !important; }
    .cg-hp {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }
    .fsubmit:disabled { opacity: 0.65; cursor: wait; }
    .form-success__check {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(var(--green-rgb), 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: var(--green);
    }
    .form-success__check svg { width: 28px; height: 28px; }
    .form-success h3 { color: var(--white); margin-bottom: 0.75rem; }
    .form-success p { color: rgba(255,255,255,0.55); max-width: 320px; margin: 0 auto; font-size: 0.92rem; }

    /* ============================================================
       FAQ
    ============================================================ */
    .faq { background: var(--cream); }
    .faq__header {
      text-align: center;
      max-width: 520px;
      margin: 0 auto 3.5rem;
    }
    .faq__header h2 { margin-bottom: 0.6rem; }
    .faq__list {
      max-width: 740px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .faq__item {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .faq__q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.4rem 1.6rem;
      background: none;
      border: none;
      text-align: left;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--navy);
      cursor: pointer;
      transition: color var(--transition);
    }
    .faq__q:hover { color: var(--green-hover); }
    .faq__icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background var(--transition), transform var(--transition);
    }
    .faq__icon svg { width: 14px; height: 14px; color: var(--green); transition: transform 0.3s ease; }
    .faq__item.open .faq__icon { background: var(--green); }
    .faq__item.open .faq__icon svg { transform: rotate(45deg); color: var(--white); }
    .faq__a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s var(--ease), padding 0.3s ease;
    }
    .faq__a-inner {
      padding: 0 1.6rem 1.4rem;
      font-size: 0.91rem;
      color: var(--text-mid);
      line-height: 1.72;
    }
    .faq__item.open .faq__a { max-height: 300px; }

    /* ============================================================
       FOOTER
    ============================================================ */
    .footer {
      background: #060d18;
      padding: 4.5rem 0 2rem;
    }
    .footer__top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      gap: 4rem;
      padding-bottom: 3rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .footer__logo {
      display: inline-block;
      line-height: 0;
    }
    .footer__logo-img {
      display: block;
      height: 5rem;
      width: auto;
      max-width: 200px;
    }
    .footer__brand p {
      color: rgba(255,255,255,0.4);
      font-size: 0.84rem;
      line-height: 1.72;
      margin-top: 1.1rem;
      max-width: 280px;
    }
    .footer__nap {
      margin-top: 1rem;
      font-style: normal;
      color: rgba(255,255,255,0.62);
      font-size: 0.8rem;
      line-height: 1.7;
    }
    .footer__nap strong { color: rgba(255,255,255,0.86); }
    .footer__nap a { color: var(--green); }
    .footer__nap a:hover { color: var(--green-hover); }
    .footer__col h4 {
      font-family: var(--font-body);
      font-size: 0.64rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.32);
      margin-bottom: 1.2rem;
    }
    .footer__links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }
    .footer__links a {
      font-size: 0.84rem;
      color: rgba(255,255,255,0.46);
      transition: color var(--transition);
    }
    .footer__links a:hover { color: var(--green-hover); }
    .footer__bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer__copy {
      font-size: 0.73rem;
      color: rgba(255,255,255,0.62);
      line-height: 1.5;
    }
    .footer__legal {
      display: flex;
      gap: 1.5rem;
    }
    .footer__legal a {
      font-size: 0.73rem;
      color: rgba(255,255,255,0.62);
      transition: color var(--transition);
    }
    .footer__legal a:hover,
    .footer__legal a.is-current { color: var(--green-hover); }

    /* ============================================================
       RESPONSIVE
    ============================================================ */

    /* ── Tablet landscape (≤1100px) ── */
    @media (max-width: 1100px) {
      .why__inner              { grid-template-columns: 1fr; }
      .why__visual             { display: none; }
      .area__inner             { grid-template-columns: 1fr; }
      .area__visual            { display: none; }
      .contact__inner          { grid-template-columns: 1fr; gap: 3rem; }
      /* Services: 3 → 2 columns */
      .services__grid          { grid-template-columns: repeat(2, 1fr); }
      .services__grid--extra   { grid-template-columns: repeat(2, 1fr); }
      /* Testimonials: 3 → 2 columns */
      .testi-grid              { grid-template-columns: repeat(2, 1fr); }
    }

    /* ── Tablet portrait (≤900px) ── */
    @media (max-width: 900px) {
      .process__grid           { grid-template-columns: 1fr; gap: 3rem; }
      .process__connector      { display: none; }
      .process__step           { padding: 0; }
      .process__step-num       { margin-bottom: 1.2rem; }
      .stats__inner            { grid-template-columns: 1fr; }
      .stats__item             { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
      .stats__item:last-child  { border-bottom: none; }
      .footer__top             { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    }

    /* ── Mobile large (≤768px) ── */
    @media (max-width: 768px) {
      /* Layout & spacing */
      .container               { padding: 0 1.25rem; }
      .container--wide         { padding: 0 1.25rem; }
      .section                 { padding: 4.5rem 0; }
      .section--sm             { padding: 3rem 0; }

      /* Navigation */
      .nav__links, .nav__phone { display: none; }
      .nav__right .btn         { display: none; }
      .nav__toggle             { display: flex; }
      .nav__toggle             { padding: 8px; margin-right: -8px; }

      /* Hero */
      .hero                    { padding-bottom: 5rem; }
      .hero__gradient {
        background:
          linear-gradient(to top, rgba(8,16,28,0.93) 0%, rgba(8,16,28,0.66) 48%, rgba(8,16,28,0.28) 100%),
          linear-gradient(to right, rgba(8,16,28,0.5) 0%, rgba(8,16,28,0.2) 65%, transparent 100%);
      }
      .hero__scroll-hint       { display: none; }
      .hero__pills             { display: none; }
      .hero__content           { max-width: 100%; padding: 1rem 0.9rem; border-radius: 0.85rem; }
      .hero__sub               { max-width: 100%; font-size: 1rem; }
      .hero__actions           { flex-direction: column; align-items: flex-start; }
      .hero__actions .btn      { width: 100%; max-width: 340px; justify-content: center; }

      /* Stats */
      .stats__item             { padding: 1.8rem 1.6rem; }

      /* Services */
      .services__grid,
      .services__grid--extra   { grid-template-columns: 1fr; }
      .services__combo         { flex-direction: column; padding: 1.8rem 1.6rem; }

      /* Testimonials */
      .testi-grid              { grid-template-columns: 1fr; }

      /* Contact form */
      .fgrid                   { grid-template-columns: 1fr; }
      .contact__form-box       { padding: 1.8rem 1.4rem; }

      /* Footer */
      .footer__top             { grid-template-columns: 1fr; gap: 2rem; }
      .footer__bottom          { flex-direction: column; gap: 1rem; text-align: center; }
      .footer__legal           { justify-content: center; }

    }

    /* ── Mobile small (≤480px) ── */
    @media (max-width: 480px) {
      .container               { padding: 0 1rem; }
      .container--wide         { padding: 0 1rem; }
      .section                 { padding: 3.5rem 0; }
      .section--sm             { padding: 2.5rem 0; }

      /* Typography */
      h1                       { font-size: clamp(2.2rem, 9vw, 2.8rem); }
      h2                       { font-size: clamp(1.7rem, 7vw, 2rem); }

      /* Hero */
      .hero__actions .btn      { max-width: 100%; }
      .hero__sub               { font-size: 0.95rem; }

      /* Stats */
      .stats__item             { padding: 1.4rem 1.2rem; }
      .stats__num              { font-size: 2rem; }

      /* Service cards */
      .svc-card                { padding: 2rem 1.6rem 1.8rem; }
      .svc-card--compact       { padding: 1.6rem 1.4rem 1.6rem; }

      /* Testimonials */
      .testi-card              { padding: 1.8rem 1.4rem; }

      /* Process */
      .process__step           { text-align: left; }
      .process__step-num       { margin: 0 0 1.2rem; }

      /* Contact */
      .contact__form-box       { padding: 1.4rem 1rem; }
      .contact__inner          { gap: 2rem; }

      /* Buttons */
      .btn--lg                 { padding: 0.95rem 1.6rem; font-size: 0.87rem; }
      /* Why / Area tweaks */
      .why__content > p        { margin-bottom: 1.8rem; }
      .area__content > p       { margin-bottom: 1.5rem; }
    }

