
    :root {
      --acid: #c7ff10;
      --ink: #071a2c;
      --muted: #607286;
      --paper: #f4f7f5;
      --mist: #dce7ea;
      --line: rgba(7, 26, 44, 0.12);
      --white: #ffffff;
      --blue: #0a79d8;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button, input, textarea, select {
      font: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

     .float-call-btn {
      position: fixed;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 12px;
      background: #16a34a;
      color: #fff;
      text-decoration: none;
      padding: 14px 28px 14px 20px;
      border-radius: 60px;
      box-shadow: 0 6px 32px rgba(22,163,74,0.55), 0 2px 8px rgba(0,0,0,0.18);
      font-family: inherit;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
      animation: floatPulse 2.4s ease-in-out infinite;
      white-space: nowrap;
    }
    .float-call-btn:hover,
    .float-call-btn:focus {
      background: #15803d;
      transform: translateX(-50%) translateY(-3px) scale(1.04);
      box-shadow: 0 10px 40px rgba(22,163,74,0.65), 0 4px 12px rgba(0,0,0,0.2);
      animation: none;
      outline: 3px solid #86efac;
    }
    .float-call-icon {
      font-size: 1.55rem;
      line-height: 1;
      flex-shrink: 0;
    }
    .float-call-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    .float-call-top {
      font-size: 0.72rem;
      font-weight: 500;
      opacity: 0.88;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }
    .float-call-num {
      font-size: 1.08rem;
      font-weight: 700;
      letter-spacing: 0.02em;
    }
    @keyframes floatPulse {
      0%,100% { box-shadow: 0 6px 32px rgba(22,163,74,0.55), 0 0 0 0 rgba(22,163,74,0.45); }
      50%      { box-shadow: 0 6px 32px rgba(22,163,74,0.55), 0 0 0 14px rgba(22,163,74,0); }
    }
    /* On very small screens, shrink slightly */
    @media (max-width: 380px) {
      .float-call-btn { padding: 12px 20px 12px 16px; }
      .float-call-num { font-size: 0.95rem; }
    }

    .site-shell {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
    }

    .hero-wrap {
      width: 100%;
      padding-top: 82px; /* offset for fixed nav */
    }

    .hero {
      margin-top: 0;
      position: relative;
      isolation: isolate;
      height: calc(100vh - 82px);
      width: 100%;
      overflow: hidden;
      border-radius: 0;
      background: var(--ink);
      box-shadow: none;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image: linear-gradient(90deg, rgba(6, 20, 34, 0.68) 0%, rgba(6, 20, 34, 0.32) 42%, rgba(6, 20, 34, 0.1) 100%), url("./hero.jpg");
      background-size: cover;
      background-position: center right;
      animation: heroDrift 14s ease-in-out infinite alternate;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.48), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.16));
      pointer-events: none;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      display: grid;
      grid-template-columns: 260px 1fr auto;
      align-items: stretch;
      min-height: 82px;
      width: 100%;
      background: #071a2c;
      transition: box-shadow 300ms ease;
    }

    .nav.scrolled {
      box-shadow: 0 4px 28px rgba(7, 26, 44, 0.6);
    }

    .brand-mark {
      display: flex;
      align-items: center;
      padding-left: 44px;
      color: var(--ink);
      background: var(--acid);
      font-size: clamp(1.6rem, 2.2vw, 2.1rem);
      font-weight: 900;
      letter-spacing: -0.06em;
      clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
      animation: brandIn 900ms cubic-bezier(.2,.8,.2,1) both;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(20px, 2.8vw, 34px);
      color: rgba(255, 255, 255, 0.92);
      font-weight: 700;
      font-size: 0.94rem;
    }

    .nav-links a {
      position: relative;
      padding: 8px 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--acid);
      transition: width 220ms ease;
    }

    .nav-links a:hover::after,
    .nav-links a:focus-visible::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 2px;
      padding-right: 44px;
    }

    .book-btn,
    .outline-btn,
    .solid-btn {
      border: 0;
      cursor: pointer;
      transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    .book-btn {
      min-height: 44px;
      padding: 0 24px;
      border-radius: 999px;
      color: var(--ink);
      background: var(--acid);
      font-weight: 900;
      box-shadow: 0 16px 32px rgba(199, 255, 16, 0.23);
    }

    .circle-btn,
    .menu-btn {
      display: inline-grid;
      place-items: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid currentColor;
      color: rgba(255, 255, 255, 0.9);
      background: transparent;
      cursor: pointer;
      transition: transform 180ms ease, color 180ms ease, background 180ms ease;
    }

    .circle-btn span,
    .inline-arrow {
      font-size: 1.6rem;
      line-height: 1;
      transform: translateY(-1px);
    }

    .book-btn:hover,
    .solid-btn:hover,
    .outline-btn:hover,
    .circle-btn:hover {
      transform: translateY(-2px);
    }

    .circle-btn:hover {
      color: var(--ink);
      background: var(--acid);
      border-color: var(--acid);
    }

    .menu-btn {
      display: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 300px;
      align-items: end;
      padding: 60px 60px 72px;
      color: var(--white);
    }

    .hero-copy {
      max-width: 610px;
      padding-bottom: 102px;
      animation: fadeUp 900ms 180ms cubic-bezier(.2,.8,.2,1) both;
    }

    .hero-kicker {
      margin: 0 0 18px;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--acid);
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(3rem, 4.9vw, 4.65rem);
      line-height: 1.02;
      font-weight: 900;
      letter-spacing: -0.06em;
      text-wrap: balance;
    }

    .hero p {
      max-width: 520px;
      margin: 24px 0 0;
      font-size: clamp(1rem, 1.4vw, 1.18rem);
      line-height: 1.7;
      font-weight: 650;
      color: rgba(255, 255, 255, 0.86);
    }

    .hero-ctas {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 48px;
    }

    .call-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 2px;
      min-height: 68px;
      padding: 0 40px;
      border-radius: 16px;
      border: 0;
      background: var(--acid);
      color: var(--ink);
      font-weight: 900;
      font-size: 1.22rem;
      letter-spacing: -0.02em;
      cursor: pointer;
      text-decoration: none;
      line-height: 1.1;
      transition: transform 200ms ease, box-shadow 200ms ease;
      box-shadow: 0 0 0 0 rgba(199,255,16,0.6);
      animation: callPulse 1.8s infinite;
    }

    .call-btn .btn-sub {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      opacity: 0.7;
      text-transform: uppercase;
    }

    .call-btn:hover {
      transform: translateY(-4px) scale(1.03);
      animation: none;
      box-shadow: 0 18px 40px rgba(199,255,16,0.45);
    }

    .wa-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 2px;
      min-height: 68px;
      padding: 0 40px;
      border-radius: 16px;
      border: 0;
      background: #25D366;
      color: #fff;
      font-weight: 900;
      font-size: 1.22rem;
      letter-spacing: -0.02em;
      cursor: pointer;
      text-decoration: none;
      line-height: 1.1;
      transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
      box-shadow: 0 8px 24px rgba(37,211,102,0.28);
    }

    .wa-btn .btn-sub {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      opacity: 0.85;
      text-transform: uppercase;
    }

    .wa-btn:hover {
      transform: translateY(-4px) scale(1.03);
      background: #1ebe5a;
      box-shadow: 0 18px 40px rgba(37,211,102,0.45);
    }

    @keyframes callPulse {
      0%   { box-shadow: 0 0 0 0 rgba(199,255,16,0.65); }
      70%  { box-shadow: 0 0 0 20px rgba(199,255,16,0); }
      100% { box-shadow: 0 0 0 0 rgba(199,255,16,0); }
    }

    .outline-btn {
      min-height: 46px;
      padding: 0 26px;
      border: 1px solid rgba(255,255,255,0.88);
      border-radius: 999px;
      color: var(--white);
      background: rgba(255,255,255,0.02);
      font-weight: 850;
    }

    .outline-btn:hover {
      background: rgba(255,255,255,0.16);
    }

    .hero-proof {
      align-self: end;
      animation: fadeUp 900ms 360ms cubic-bezier(.2,.8,.2,1) both;
    }

    .hero-proof p {
      margin: 0 0 18px;
      max-width: 290px;
      font-weight: 850;
      font-size: 1rem;
      line-height: 1.45;
      color: rgba(255,255,255,0.86);
    }

    .proof-photo {
      width: 235px;
      height: 150px;
      overflow: hidden;
      border-radius: 18px;
      background: rgba(255,255,255,0.7);
    }

    .proof-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    main {
      background: var(--paper);
    }

    section {
      padding: 112px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.52fr);
      gap: 56px;
      align-items: end;
      margin-bottom: 56px;
    }

    .eyebrow {
      margin: 0 0 16px;
      color: var(--blue);
      font-size: 0.84rem;
      font-weight: 950;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .section-head h2,
    .split h2,
    .booking h2,
    .faq h2 {
      margin: 0;
      font-size: clamp(2.4rem, 5vw, 5.1rem);
      line-height: 0.96;
      font-weight: 950;
      letter-spacing: -0.075em;
    }

    .section-head p,
    .split p,
    .booking p,
    .faq-intro {
      margin: 0;
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.75;
      font-weight: 560;
    }

    .service-list {
      border-top: 1px solid var(--line);
    }

    .service-row {
      display: grid;
      grid-template-columns: 0.36fr 1fr 0.56fr auto;
      gap: 28px;
      align-items: center;
      padding: 30px 0;
      border-bottom: 1px solid var(--line);
      color: var(--ink);
    }

    .service-number {
      color: var(--blue);
      font-weight: 950;
      letter-spacing: -0.04em;
    }

    .service-row h3 {
      margin: 0;
      font-size: clamp(1.5rem, 2.8vw, 2.7rem);
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.055em;
    }

    .service-row p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
      font-weight: 560;
    }

    .row-arrow {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--ink);
      transition: background 200ms ease, transform 200ms ease;
    }

    .service-row:hover .row-arrow {
      background: var(--acid);
      transform: rotate(45deg);
    }

    .visual-band {
      padding: 0;
      background: var(--paper);
    }

    .band-image {
      min-height: 520px;
      background-image: linear-gradient(90deg, rgba(7,26,44,0.58), rgba(7,26,44,0.06)), url("./bg.png");
      background-size: cover;
      background-position: center right;
      display: flex;
      align-items: end;
    }

    .band-text {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
      padding: 0 0 72px;
      color: var(--white);
    }

    .band-text h2 {
      max-width: 720px;
      margin: 0;
      font-size: clamp(2.4rem, 5vw, 5rem);
      line-height: 0.98;
      font-weight: 950;
      letter-spacing: -0.075em;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr);
      gap: 72px;
      align-items: center;
    }

    .split-visual {
      min-height: 580px;
      border-radius: 20px;
      background-image: linear-gradient(180deg, rgba(7,26,44,0.02), rgba(7,26,44,0.24)), url("https://images.unsplash.com/photo-1660053156709-8e8bd69b1c19?auto=format&fit=crop&w=900&q=80");
      background-size: cover;
      background-position: center;
    }

    .why-list {
      margin: 38px 0 0;
      padding: 0;
      list-style: none;
      border-top: 1px solid var(--line);
    }

    .why-list li {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 18px;
      padding: 22px 0;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      line-height: 1.65;
      font-weight: 560;
    }

    .check {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--acid);
      color: var(--ink);
      font-weight: 950;
    }

    .process {
      background: #edf3f2;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .step {
      min-height: 260px;
      padding: 28px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .step span {
      color: var(--blue);
      font-weight: 950;
    }

    .step h3 {
      margin: 52px 0 14px;
      font-size: 1.7rem;
      line-height: 1.05;
      letter-spacing: -0.05em;
    }

    .step p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
      font-weight: 560;
    }

    .pricing-table {
      border-top: 1px solid var(--line);
    }

    .price-row {
      display: grid;
      grid-template-columns: 1fr 0.5fr auto;
      gap: 30px;
      align-items: center;
      padding: 28px 0;
      border-bottom: 1px solid var(--line);
    }

    .price-row h3 {
      margin: 0 0 8px;
      font-size: clamp(1.45rem, 2.5vw, 2.35rem);
      line-height: 1;
      letter-spacing: -0.052em;
    }

    .price-row p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .price {
      font-size: clamp(1.55rem, 3vw, 2.8rem);
      font-weight: 950;
      letter-spacing: -0.06em;
      white-space: nowrap;
    }

    .solid-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 24px;
      border-radius: 999px;
      color: var(--ink);
      background: var(--acid);
      font-weight: 950;
    }

    .areas {
      background: var(--ink);
      color: var(--white);
    }

    .areas .section-head p,
    .areas .eyebrow {
      color: rgba(255,255,255,0.72);
    }

    .area-line {
      display: flex;
      flex-wrap: wrap;
      gap: 18px 34px;
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: clamp(1.35rem, 3vw, 2.8rem);
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.06em;
    }

    .area-line li {
      color: rgba(255,255,255,0.88);
    }

    .area-line li::after {
      content: "/";
      margin-left: 34px;
      color: var(--acid);
    }

    .area-line li:last-child::after {
      content: "";
      margin: 0;
    }

    .testimonials {
      background: #f8fbf8;
    }

    .quote-wrap {
      display: grid;
      grid-template-columns: 0.42fr 1fr;
      gap: 72px;
      align-items: start;
      border-top: 1px solid var(--line);
      padding-top: 44px;
    }

    .quote-nav {
      display: flex;
      gap: 10px;
      margin-top: 28px;
    }

    .quote-btn {
      width: 62px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: transparent;
      cursor: pointer;
      font-size: 0.78rem;
      font-weight: 950;
      transition: background 180ms ease, transform 180ms ease;
    }

    .quote-btn:hover {
      background: var(--acid);
      transform: translateY(-2px);
    }

    .quote {
      margin: 0;
    }

    .quote p {
      margin: 0;
      font-size: clamp(1.8rem, 4vw, 4.2rem);
      line-height: 1.04;
      font-weight: 900;
      letter-spacing: -0.065em;
    }

    .quote footer {
      margin-top: 26px;
      color: var(--muted);
      font-weight: 800;
    }

    .faq {
      background: var(--paper);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 1fr);
      gap: 70px;
      align-items: start;
    }

    .faq-list {
      border-top: 1px solid var(--line);
    }

    .faq-item {
      border-bottom: 1px solid var(--line);
    }

    .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 24px 0;
      color: var(--ink);
      background: transparent;
      border: 0;
      cursor: pointer;
      text-align: left;
      font-weight: 900;
      font-size: clamp(1.1rem, 2vw, 1.45rem);
      letter-spacing: -0.04em;
    }

    .faq-question span:last-child {
      flex: 0 0 auto;
      transition: transform 180ms ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      color: var(--muted);
      line-height: 1.7;
      transition: max-height 220ms ease;
    }

    .faq-answer p {
      margin: 0;
      padding: 0 0 24px;
    }

    .faq-item.open .faq-question span:last-child {
      transform: rotate(45deg);
    }

    .booking {
      background: var(--ink);
      color: var(--white);
    }

    .booking-grid {
      display: grid;
      grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 0.72fr);
      gap: 70px;
      align-items: start;
    }

    .booking p {
      color: rgba(255,255,255,0.7);
      margin-top: 20px;
    }

    .contact-lines {
      margin: 42px 0 0;
      padding: 0;
      list-style: none;
      border-top: 1px solid rgba(255,255,255,0.18);
    }

    .contact-lines li {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.18);
      color: rgba(255,255,255,0.78);
    }

    .contact-lines strong {
      color: var(--white);
    }

    .booking-form {
      padding: 32px;
      border-radius: 22px;
      background: var(--white);
      color: var(--ink);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      color: var(--muted);
      font-size: 0.86rem;
      font-weight: 850;
    }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 13px;
      padding: 14px 14px;
      color: var(--ink);
      background: #f8fbf8;
      outline: none;
      transition: border-color 160ms ease, box-shadow 160ms ease;
    }

    .field textarea {
      min-height: 106px;
      resize: vertical;
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(10, 121, 216, 0.12);
    }

    .form-note {
      min-height: 22px;
      margin: 14px 0 0;
      color: var(--muted);
      font-weight: 700;
    }

    .booking-form .solid-btn {
      width: 100%;
      margin-top: 18px;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: #061423;
      color: rgba(255,255,255,0.68);
      font-size: 0.93rem;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 48px;
      padding: 72px 0 56px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-brand-name {
      font-size: 2rem;
      font-weight: 900;
      letter-spacing: -0.06em;
      color: var(--acid);
      display: block;
      margin-bottom: 14px;
    }

    .footer-tagline {
      line-height: 1.7;
      margin-bottom: 22px;
      color: rgba(255,255,255,0.6);
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.2);
      display: inline-grid;
      place-items: center;
      font-size: 1rem;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      transition: background 200ms, border-color 200ms, transform 200ms;
    }

    .social-icon:hover {
      background: var(--acid);
      border-color: var(--acid);
      color: var(--ink);
      transform: translateY(-3px);
    }

    .footer-col-title {
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--acid);
      margin: 0 0 20px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.68);
      font-weight: 600;
      transition: color 180ms;
    }

    .footer-links a:hover {
      color: var(--acid);
    }

    .footer-contact-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 16px;
    }

    .footer-contact-icon {
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-contact-item strong {
      display: block;
      color: var(--white);
      font-size: 0.82rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 2px;
    }

    .footer-contact-item a {
      color: rgba(255,255,255,0.68);
      transition: color 180ms;
    }

    .footer-contact-item a:hover {
      color: var(--acid);
    }

    .footer-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      padding: 8px 16px;
      border-radius: 999px;
      border: 1px solid rgba(199,255,16,0.35);
      background: rgba(199,255,16,0.06);
      font-size: 0.8rem;
      font-weight: 800;
      color: var(--acid);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      padding: 22px 0;
      font-size: 0.84rem;
      color: rgba(255,255,255,0.45);
    }

    .footer-bottom a {
      color: rgba(255,255,255,0.55);
      transition: color 180ms;
    }

    .footer-bottom a:hover {
      color: var(--acid);
    }

    /* =====================
       TABLET  ≤ 980px
    ===================== */
    @media (max-width: 980px) {

      /* Nav */
      .nav {
        grid-template-columns: 200px 1fr auto;
        min-height: 74px;
      }
      .brand-mark { padding-left: 24px; font-size: 1.6rem; }
      .menu-btn { display: inline-grid; }
      .nav-links {
        position: absolute;
        top: 74px; left: 0; right: 0;
        display: grid; gap: 0;
        padding: 8px 20px;
        border-radius: 0 0 18px 18px;
        color: var(--ink);
        background: rgba(255,255,255,0.97);
        box-shadow: 0 20px 50px rgba(7,26,44,0.22);
        opacity: 0; pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
        z-index: 998;
      }
      .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
      .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 1rem; }
      .nav-links a:last-child { border-bottom: 0; }
      .nav-actions { padding-right: 16px; gap: 8px; }
      .book-btn { display: none; }

      /* Hero */
      .hero-wrap { padding-top: 74px; }
      .hero { height: calc(100svh - 74px); min-height: 560px; }
      .hero-content { height: 100%; min-height: 0; grid-template-columns: 1fr; padding: 48px 24px 56px; align-items: end; }
      .hero-copy { padding-bottom: 0; max-width: 100%; }
      .hero-proof { display: none; }
      .hero-ctas { flex-wrap: wrap; gap: 12px; margin-top: 32px; }

      /* General */
      .site-shell { width: min(100% - 32px, 1120px); }
      section { padding: 72px 0; }
      .section-head, .split, .faq-grid, .booking-grid { grid-template-columns: 1fr; gap: 28px; }

      /* Services */
      .service-row { grid-template-columns: 56px 1fr auto; gap: 18px; }
      .service-row p { grid-column: 2 / -1; }

      /* Why / Split */
      .split-visual { min-height: 320px; order: -1; }

      /* Steps */
      .steps { grid-template-columns: repeat(2, 1fr); }
      .step { min-height: 220px; }

      /* Pricing */
      .price-row { grid-template-columns: 1fr auto; gap: 16px; }
      .price-row .solid-btn { grid-column: 1 / -1; justify-self: start; }

      /* Booking */
      .contact-lines li { flex-direction: column; gap: 4px; }
      .booking-form { padding: 24px 20px; }

      /* Footer */
      .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; padding: 52px 0 40px; }
    }

    /* =====================
       MOBILE  ≤ 620px
    ===================== */
    @media (max-width: 620px) {

      /* Nav */
      .nav { grid-template-columns: 1fr auto; min-height: 64px; }
      .brand-mark { min-height: 64px; padding-left: 18px; font-size: 1.35rem; clip-path: polygon(0 0, 94% 0, 86% 100%, 0 100%); }
      .nav-links { top: 64px; }
      .nav-actions { padding-right: 12px; }

      /* Hero */
      .hero-wrap { padding-top: 64px; }
      .hero { height: calc(100svh - 64px); min-height: 520px; }
      .hero-content { padding: 32px 16px 44px; }
      .hero h1 { font-size: clamp(2rem, 9.5vw, 3rem); letter-spacing: -0.04em; }
      .hero p { font-size: 0.96rem; margin-top: 14px; }
      .hero-ctas { flex-direction: column; align-items: stretch; margin-top: 22px; gap: 12px; }
      .call-btn, .wa-btn { min-height: 60px; font-size: 1rem; padding: 0 20px; justify-content: center; text-align: center; width: 100%; }
      .hero-trust { flex-wrap: wrap; gap: 8px; margin-top: 16px; }

      /* Sections */
      section { padding: 52px 0; }
      .section-head h2, .split h2, .booking h2, .faq h2, .band-text h2 { font-size: clamp(1.9rem, 10vw, 3rem); letter-spacing: -0.055em; }

      /* Services */
      .service-row { grid-template-columns: 1fr auto; gap: 14px; padding: 20px 0; }
      .service-number, .service-row p { grid-column: 1 / -1; }
      .service-row h3 { font-size: clamp(1.25rem, 6vw, 1.85rem); }

      /* Band */
      .band-image { min-height: 300px; }
      .band-text { padding: 0 0 36px; }

      /* Steps */
      .steps, .form-grid { grid-template-columns: 1fr; }
      .step { min-height: auto; padding: 20px 18px; }
      .step h3 { margin-top: 22px; font-size: 1.3rem; }

      /* Pricing */
      .price-row { grid-template-columns: 1fr; gap: 10px; padding: 18px 0; }
      .price { font-size: 1.55rem; }

      /* Areas */
      .area-line { font-size: clamp(1rem, 5vw, 1.5rem); gap: 10px 18px; }

      /* Booking */
      .booking-form { padding: 20px 16px; border-radius: 16px; }

      /* Footer */
      .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 36px 0 24px; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

      /* Brands bar */
      .brands-label { padding: 0 10px 0 14px; font-size: 0.6rem; }
      .brands-track span { font-size: 0.76rem; padding: 0 9px; }
    }

    /* =====================
       SMALL PHONES  ≤ 380px
    ===================== */
    @media (max-width: 380px) {
      .float-call-btn { padding: 12px 16px 12px 14px; }
      .float-call-num { font-size: 0.9rem; }
      .hero h1 { font-size: clamp(1.75rem, 9vw, 2.4rem); }
      .call-btn, .wa-btn { min-height: 54px; font-size: 0.95rem; }
      .brands-label { display: none; }
    }




    /* ===== Brands Bar ===== */
    .brands-bar {
      display: flex;
      align-items: center;
      background: var(--ink);
      border-top: 1px solid rgba(199,255,16,0.15);
      border-bottom: 1px solid rgba(199,255,16,0.12);
      padding: 0;
      overflow: hidden;
      height: 56px;
    }

    .brands-label {
      flex-shrink: 0;
      padding: 0 24px 0 32px;
      font-size: 0.72rem;
      font-weight: 950;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--acid);
      border-right: 1px solid rgba(199,255,16,0.2);
      height: 100%;
      display: flex;
      align-items: center;
      white-space: nowrap;
      background: rgba(199,255,16,0.04);
    }

    .brands-track-wrap {
      flex: 1;
      overflow: hidden;
      position: relative;
    }

    .brands-track-wrap::before,
    .brands-track-wrap::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 60px;
      z-index: 2;
      pointer-events: none;
    }
    .brands-track-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--ink), transparent);
    }
    .brands-track-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--ink), transparent);
    }

    .brands-track {
      display: flex;
      align-items: center;
      gap: 0;
      white-space: nowrap;
      animation: brandScroll 28s linear infinite;
      will-change: transform;
    }

    .brands-track span {
      display: inline-block;
      padding: 0 18px;
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      color: rgba(255,255,255,0.85);
      transition: color 180ms;
    }

    .brands-track span:hover {
      color: var(--acid);
    }

    .brand-dot {
      color: var(--acid) !important;
      font-size: 1.1rem !important;
      padding: 0 2px !important;
      opacity: 0.5;
    }

    @keyframes brandScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @media (max-width: 600px) {
      .brands-label {
        padding: 0 14px 0 16px;
        font-size: 0.65rem;
      }
      .brands-track span {
        font-size: 0.8rem;
        padding: 0 12px;
      }
    }
  