/* ─── RESET ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body { font-family: 'Inter', sans-serif; background: #F5F8FC; color: #111; overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    ul { list-style: none; }

    /* ─── VARIABLES ─── */
    :root {
      --orange:     #0077CC;
      --orange-d:   #005fa3;
      --orange-l:   #e8f4fd;
      --green:      #00C566;
      --green-d:    #00a354;
      --ink:        #0A0A0F;
      --bg:         #F5F8FC;
      --white:      #ffffff;
      --line:       #DBE5EF;
      --muted:      #5A6A7A;
      --muted-lt:   #8E9CAB;
      --nav-h:      68px;
      --r-sm:       10px;
      --r-md:       16px;
      --r-lg:       22px;
      --r-full:     9999px;
      --sh-sm:      0 1px 8px rgba(0,0,0,.06);
      --sh-md:      0 4px 20px rgba(0,0,0,.09);
      --sh-lg:      0 10px 40px rgba(0,0,0,.12);
      --sh-xl:      0 20px 60px rgba(0,0,0,.16);
    }

    /* ─── LAYOUT ─── */
    .container { width: 100%; max-width: 1140px; margin-inline: auto; padding-inline: 24px; }

    /* ─── BUTTONS ─── */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      border-radius: var(--r-full); font-family: 'Inter', sans-serif;
      font-weight: 700; border: none; cursor: pointer; line-height: 1;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      white-space: nowrap;
    }
    .btn:hover  { transform: translateY(-2px); }
    .btn:active { transform: translateY(0) scale(.97); }

    .btn-sm  { font-size: .8125rem;  padding: 10px 18px; }
    .btn-md  { font-size: .9375rem;  padding: 14px 26px; }
    .btn-lg  { font-size: 1rem;      padding: 16px 32px; }
    .btn-xl  { font-size: 1.0625rem; padding: 18px 40px; }

    .btn-primary { background: var(--orange); color: #fff; box-shadow: 0 4px 18px rgba(0,119,204,.30); }
    .btn-primary:hover { background: var(--orange-d); box-shadow: 0 8px 28px rgba(0,119,204,.40); }

    .btn-green { background: var(--green); color: #fff; box-shadow: 0 4px 18px rgba(0,197,102,.25); }
    .btn-green:hover { background: var(--green-d); box-shadow: 0 8px 28px rgba(0,197,102,.35); }

    .btn-white { background: #fff; color: var(--orange); box-shadow: var(--sh-md); font-weight: 800; }
    .btn-white:hover { box-shadow: var(--sh-lg); color: var(--orange-d); }

    .btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.22); }
    .btn-ghost:hover { background: rgba(255,255,255,.22); }

    /* ─── PILL LABEL ─── */
    .pill {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: .6875rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
      padding: 6px 14px; border-radius: var(--r-full);
    }
    .pill-orange { background: var(--orange-l); color: var(--orange); }
    .pill-dark   { background: rgba(255,255,255,.1); color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.18); }

    /* ═══════════════════════════════
       ANNOUNCEMENT BAR
    ═══════════════════════════════ */
    .ann-bar {
      background: var(--ink); color: rgba(255,255,255,.7);
      font-size: .75rem; font-weight: 500; text-align: center;
      padding: 9px 16px; letter-spacing: .01em;
    }
    .ann-bar a { color: var(--orange); font-weight: 700; }
    .ann-dot {
      display: inline-block; width: 6px; height: 6px; border-radius: 50%;
      background: var(--green); margin-right: 6px; vertical-align: middle;
    }

    /* ═══════════════════════════════
       NAVBAR
    ═══════════════════════════════ */
    .navbar {
      position: sticky; top: 0; z-index: 900;
      height: var(--nav-h);
      background: rgba(245,248,252,.94);
      backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
      transition: box-shadow .25s;
    }
    .navbar.scrolled { box-shadow: var(--sh-md); }
    .navbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

    .logo { display: flex; align-items: center; gap: 10px; }
    .logo-icon {
      width: 40px; height: 40px; border-radius: 10px; background: var(--orange);
      display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0;
    }
    .logo-name { font-size: 1.1875rem; font-weight: 800; color: var(--ink); line-height: 1.1; }
    .logo-name span { color: var(--orange); }
    .logo-sub { font-size: .625rem; font-weight: 600; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }

    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a {
      font-size: .875rem; font-weight: 600; color: var(--muted);
      transition: color .2s; position: relative; padding-bottom: 2px;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 2px; background: var(--orange); border-radius: 2px;
      transform: scaleX(0); transition: transform .25s;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-actions { display: flex; align-items: center; gap: 10px; }

    /* hamburger */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* mobile nav drawer */
    .mobile-nav {
      display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: var(--white); z-index: 850; flex-direction: column;
      padding: 90px 24px 32px;
      gap: 8px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-size: 1.0625rem; font-weight: 600; color: var(--ink);
      padding: 14px 0; border-bottom: 1px solid var(--line);
    }
    .mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

    /* ═══════════════════════════════
       HERO
    ═══════════════════════════════ */
    .hero {
      background: var(--ink); min-height: calc(100svh - var(--nav-h) - 37px);
      display: grid; grid-template-columns: 1fr 460px;
      position: relative; overflow: hidden;
      align-items: start;
    }
    .hero-glow {
      position: absolute; border-radius: 50%; pointer-events: none;
    }
    .hero-glow-a {
      width: 580px; height: 580px;
      background: radial-gradient(circle, rgba(0,119,204,.20) 0%, transparent 70%);
      top: -120px; left: -60px;
    }

    .hero-content {
      padding: clamp(40px,8vw,96px) clamp(20px,5vw,64px);
      position: relative; z-index: 2;
      display: flex; flex-direction: column; justify-content: center;
    }
    .hero-badge { margin-bottom: 22px; }

    .hero h1 {
      font-size: clamp(1.9rem, 5vw, 3.8rem);
      font-weight: 800; line-height: 1.1;
      letter-spacing: -.025em; color: #fff;
      margin-bottom: 18px;
    }
    .hero h1 .accent {
      background: linear-gradient(120deg, var(--orange), #00A8E8);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-desc {
      font-size: clamp(.9rem, 2vw, 1.0625rem);
      color: rgba(255,255,255,.6); line-height: 1.8;
      max-width: 460px; margin-bottom: 36px;
    }

    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

    .hero-trust { display: flex; flex-wrap: wrap; gap: 18px; }
    .ht {
      display: flex; align-items: center; gap: 7px;
      font-size: .8125rem; font-weight: 500; color: rgba(255,255,255,.5);
    }
    .ht-dot { color: var(--orange); font-size: .75rem; }

    /* hero right — form panel */
    .hero-form-panel {
      padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 40px);
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 2;
    }
    .hero-form-card {
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
      border: 1px solid rgba(255,255,255,.13);
      border-radius: var(--r-lg);
      padding: 32px 28px;
      width: 100%;
      box-shadow: 0 24px 64px rgba(0,0,0,.45);
    }
    .hfc-head { text-align: center; margin-bottom: 22px; }
    .hfc-head h3 { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 5px; }
    .hfc-head p  { font-size: .775rem; color: rgba(255,255,255,.45); }

    .hf-group { margin-bottom: 13px; }
    .hf-group label {
      display: block; font-size: .7rem; font-weight: 700;
      color: rgba(255,255,255,.45); letter-spacing: .06em;
      text-transform: uppercase; margin-bottom: 6px;
    }
    .hf-input, .hf-select {
      width: 100%; background: rgba(255,255,255,.08);
      border: 1.5px solid rgba(255,255,255,.12);
      border-radius: var(--r-sm); padding: 12px 14px;
      font-family: 'Inter', sans-serif; font-size: .9rem;
      color: #fff; outline: none;
      transition: border-color .2s, background .2s;
    }
    .hf-input::placeholder { color: rgba(255,255,255,.28); }
    .hf-input:focus, .hf-select:focus {
      border-color: var(--orange);
      background: rgba(255,255,255,.11);
    }
    .hf-select { appearance: none; cursor: pointer; color: rgba(255,255,255,.65); }
    .hf-select option { background: #0f0f1a; color: #fff; }
    .hf-sel-wrap { position: relative; }
    .hf-sel-wrap::after {
      content: '▾'; position: absolute; right: 12px; top: 50%;
      transform: translateY(-50%); color: rgba(255,255,255,.35);
      font-size: .7rem; pointer-events: none;
    }
    .hf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

    /* phone */
    .hf-phone-wrap { display: flex; }
    .hf-phone-flag {
      display: flex; align-items: center; gap: 5px;
      background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.12);
      border-right: none; border-radius: var(--r-sm) 0 0 var(--r-sm);
      padding: 12px 12px; font-size: .8rem; color: rgba(255,255,255,.55);
      white-space: nowrap; flex-shrink: 0;
    }
    .hf-phone-wrap .hf-input { border-radius: 0 var(--r-sm) var(--r-sm) 0; }

    .hf-submit {
      width: 100%; margin-top: 6px;
      background: linear-gradient(135deg, var(--orange), #00A8E8);
      color: #fff; border: none; border-radius: var(--r-full);
      padding: 14px 24px; font-family: 'Inter', sans-serif;
      font-size: .9375rem; font-weight: 800; cursor: pointer;
      box-shadow: 0 6px 24px rgba(0,119,204,.4);
      transition: transform .2s, box-shadow .2s, opacity .2s;
    }
    .hf-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,119,204,.5); }
    .hf-submit:active { transform: scale(.97); }
    .hf-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
    .hf-privacy {
      text-align: center; margin-top: 10px;
      font-size: .68rem; color: rgba(255,255,255,.28);
    }
    /* success state */
    .hf-success {
      display: none; text-align: center; padding: 20px 0;
    }
    .hf-success-icon { font-size: 2.8rem; margin-bottom: 12px; }
    .hf-success h4 { font-size: 1.1rem; font-weight: 800; color: var(--green); margin-bottom: 7px; }
    .hf-success p { font-size: .825rem; color: rgba(255,255,255,.5); line-height: 1.65; }

    /* ═══════════════════════════════
       BRAND STRIP
    ═══════════════════════════════ */
    .brand-strip {
      background: var(--white); border-bottom: 1px solid var(--line);
      padding: 16px 0; overflow: hidden;
    }
    .brand-strip .container { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
    .bs-label { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-lt); white-space: nowrap; }
    .bs-div   { width: 1px; height: 24px; background: var(--line); flex-shrink: 0; }
    .bs-tags  { display: flex; gap: 8px; flex-wrap: wrap; }
    .bs-tag {
      font-size: .75rem; font-weight: 600; color: var(--muted);
      padding: 5px 14px; border-radius: var(--r-full);
      border: 1.5px solid var(--line); transition: border-color .2s, color .2s;
    }
    .bs-tag:hover { border-color: var(--orange); color: var(--orange); }

    /* ═══════════════════════════════
       SECTION SHARED
    ═══════════════════════════════ */
    .section { padding: clamp(48px, 8vw, 96px) 0; }

    .sec-header { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
    .sec-header .pill { margin-bottom: 14px; }
    .sec-header h2 {
      font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800;
      letter-spacing: -.02em; color: var(--ink); line-height: 1.15; margin-bottom: 14px;
    }
    .sec-header p { font-size: clamp(.875rem,2vw,1rem); color: var(--muted); max-width: 500px; margin-inline: auto; line-height: 1.8; }

    /* ═══════════════════════════════
       SERVICES
    ═══════════════════════════════ */
    .services-section { background: var(--bg); }

    .srv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px; margin-bottom: 28px;
    }

    .srv-card {
      background: var(--white); border-radius: var(--r-lg);
      padding: 28px 24px; border: 1.5px solid var(--line);
      position: relative; overflow: hidden;
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }
    .srv-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--orange), #00A8E8);
      transform: scaleX(0); transform-origin: left; transition: transform .32s ease;
    }
    .srv-card:hover { transform: translateY(-7px); box-shadow: var(--sh-xl); border-color: var(--orange); }
    .srv-card:hover::before { transform: scaleX(1); }

    .srv-icon {
      width: 58px; height: 58px; border-radius: 15px;
      background: var(--orange-l);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; margin-bottom: 20px;
      transition: background .25s, transform .25s;
    }
    .srv-card:hover .srv-icon { background: var(--orange); transform: scale(1.07) rotate(-4deg); }

    .srv-badge-pop {
      position: absolute; top: 18px; right: 18px;
      font-size: .625rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
      background: var(--orange); color: #fff;
      padding: 4px 10px; border-radius: var(--r-full);
    }

    .srv-title { font-size: 1.125rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
    .srv-desc  { font-size: .8125rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }

    .srv-feats { display: grid; gap: 8px; margin-bottom: 22px; }
    .srv-feats li { display: flex; align-items: center; gap: 9px; font-size: .8125rem; color: var(--muted); }
    .srv-chk {
      width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
      background: var(--orange-l);
      display: flex; align-items: center; justify-content: center;
      font-size: .6rem; font-weight: 800; color: var(--orange);
    }

    .srv-foot {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 18px; border-top: 1.5px solid var(--line);
    }
    .srv-price { font-size: 1.125rem; font-weight: 800; color: var(--orange); }
    .srv-price sub { font-size: .6875rem; font-weight: 500; color: var(--muted-lt); font-style: normal; margin-left: 2px; }

    /* service card image */
    .srv-img {
      width: calc(100% + 48px); margin: -28px -24px 20px;
      height: 180px; overflow: hidden;
    }
    .srv-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
    .srv-card:hover .srv-img img { transform: scale(1.05); }

    /* ═══════════════════════════════
       SERVICES SEO BLOCK
    ═══════════════════════════════ */
    .srv-seo-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      background: linear-gradient(135deg, var(--orange-l) 0%, #fff 60%);
      border: 1.5px solid rgba(0,119,204,.18);
      border-left: 5px solid var(--orange);
      border-radius: var(--r-lg);
      padding: 36px 40px;
      margin-top: 36px;
      margin-bottom: 28px;
    }
    .srv-seo-h2 {
      font-size: clamp(1.25rem, 3vw, 1.75rem);
      font-weight: 800; letter-spacing: -.02em;
      color: var(--ink); line-height: 1.2; margin-bottom: 14px;
    }
    .srv-seo-accent {
      background: linear-gradient(120deg, var(--orange), #00A8E8);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .srv-seo-p {
      font-size: .9375rem; color: var(--muted);
      line-height: 1.8; margin-bottom: 4px;
    }
    .srv-seo-p strong { color: var(--ink); }
    .srv-seo-areas { }
    .srv-seo-area-label {
      font-size: .6875rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .08em;
      color: var(--orange); margin-bottom: 14px;
    }
    .srv-seo-chips {
      display: flex; flex-wrap: wrap; gap: 8px;
    }
    .srv-seo-chips span {
      font-size: .78rem; font-weight: 600; color: var(--ink);
      background: var(--white);
      border: 1.5px solid var(--line);
      border-radius: var(--r-full);
      padding: 5px 14px;
      transition: border-color .2s, color .2s, background .2s;
    }
    .srv-seo-chips span:hover {
      border-color: var(--orange); color: var(--orange);
      background: var(--orange-l);
    }
    @media (max-width: 768px) {
      .srv-seo-block {
        grid-template-columns: 1fr;
        gap: 22px; padding: 24px 18px;
        margin-top: 24px; margin-bottom: 20px;
      }
      .srv-seo-h2 { font-size: 1.2rem; }
      .srv-seo-p { font-size: .875rem; }
      .srv-seo-chips span { font-size: .73rem; padding: 4px 11px; }
    }
    @media (max-width: 480px) {
      .srv-seo-block { padding: 18px 14px; border-left-width: 4px; }
      .srv-seo-h2 { font-size: 1.1rem; }
    }

    /* ═══════════════════════════════
       GALLERY
    ═══════════════════════════════ */
    .gallery-section { background: var(--white); padding: clamp(48px,8vw,80px) 0; }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      grid-template-rows: 240px 240px;
      gap: 14px;
    }
    .gal-item {
      border-radius: var(--r-md);
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
    .gal-item:hover img { transform: scale(1.06); }

    .gal-tall { grid-row: span 2; }

    .gal-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 32px 16px 14px;
      background: linear-gradient(to top, rgba(10,10,15,.75), transparent);
      color: #fff; font-size: .8125rem; font-weight: 700;
      letter-spacing: .01em;
    }

    /* ═══════════════════════════════
       RESPONSIVE — TABLET (≤ 1024px)
    ═══════════════════════════════ */
    @media (max-width: 1024px) {
      body { overflow-x: hidden; }

      /* Hero */
      .hero { grid-template-columns: 1fr; min-height: auto; align-items: start; }
      .hero-content { padding: 40px 24px 24px; }
      .hero-form-panel { padding: 0 24px 48px; }
      .hero h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
      .hero-btns { flex-wrap: wrap; }

      /* Sections */
      [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 36px !important; }
      .srv-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-wrap { grid-template-columns: repeat(2, 1fr); }
      .steps-wrap::before { display: none; }
      .why-grid { grid-template-columns: 1fr; gap: 40px; }
      .why-img-col { display: none; }
      .testi-grid { grid-template-columns: repeat(2, 1fr); }
      .ctr-grid { grid-template-columns: repeat(2, 1fr); }
      .ctr-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
      .ctr-cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); }
      .ctr-cell:nth-last-child(-n+2) { border-bottom: none; }

      /* Lead */
      .lead-inner { grid-template-columns: 1fr; gap: 32px; }
      .lead-form-card { max-width: 540px; margin-inline: auto; }

      /* Pricing */
      .pricing-grid { grid-template-columns: 1fr !important; max-width: 480px; margin-inline: auto; }

      /* Footer */
      .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .fabs { display: none; }
      .mob-bar { display: flex; }
      footer { padding-bottom: 80px; }

      /* Gallery */
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gal-tall { grid-row: span 1; }
      .gallery-grid .gal-item { height: 200px; }
      .srv-img { height: 160px; }
    }

    /* ═══════════════════════════════
       RESPONSIVE — MOBILE (≤ 768px)
    ═══════════════════════════════ */
    @media (max-width: 768px) {
      /* Global */
      html, body { overflow-x: hidden; max-width: 100vw; }
      .container { padding-inline: 16px; }
      .section { padding: clamp(36px, 7vw, 60px) 0; }

      /* Announcement bar */
      .ann-bar { font-size: .65rem; padding: 8px 12px; overflow: hidden; }

      /* Navbar */
      .navbar .container { padding-inline: 16px; }
      .nav-links { display: none; }
      .nav-actions { display: none; }
      .hamburger { display: flex; }

      /* Hero */
      .hero { grid-template-columns: 1fr; min-height: auto; align-items: start; }
      .hero-content { padding: 28px 16px 16px; }
      .hero-form-panel { padding: 0 16px 40px; }
      .hero h1 { font-size: clamp(1.45rem, 5.5vw, 2rem); margin-bottom: 10px; line-height: 1.18; }
      .hero-badge { margin-bottom: 12px; }
      .hero-badge .pill { font-size: .58rem; padding: 5px 10px; white-space: normal; text-align: center; line-height: 1.5; }
      .hero-location-text { font-size: .8rem; margin-bottom: 10px; padding-left: 10px; line-height: 1.55; }
      .hero-desc { font-size: .85rem; margin-bottom: 14px; line-height: 1.7; max-width: 100%; }
      .hero-btns { flex-direction: column; gap: 10px; margin-bottom: 18px; }
      .hero-btns .btn { width: 100% !important; justify-content: center; font-size: .9rem !important; padding: 14px 16px !important; }
      .hero-trust { flex-wrap: wrap; gap: 8px; margin-top: 4px; }
      .ht { font-size: .73rem; }
      .hero-areas { margin-top: 12px; }
      .area-label { font-size: .68rem; }
      .area-tag { font-size: .68rem; padding: 3px 8px; }
      .hf-row { grid-template-columns: 1fr; }
      .hero-form-card { width: 100%; }

      /* About */
      #about .container > div { grid-template-columns: 1fr !important; gap: 24px !important; }
      #about [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr 1fr !important; }

      /* Services */
      .srv-grid { grid-template-columns: 1fr; }
      .srv-card { padding: 20px 16px; }
      .srv-img { height: 170px; }

      /* CTA Banner */
      .cta-banner { flex-direction: column; text-align: center; padding: 22px 16px; gap: 14px; }
      .cta-banner::before { display: none; }
      .cb-btns { flex-direction: column; width: 100%; }
      .cb-btns .btn { width: 100%; justify-content: center; }

      /* Counters */
      .ctr-grid { grid-template-columns: repeat(2, 1fr); }
      .ctr-num { font-size: clamp(1.5rem, 5vw, 2.4rem); }
      .ctr-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
      .ctr-cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); }
      .ctr-cell:nth-last-child(-n+2) { border-bottom: none; }

      /* Testimonials */
      .testi-grid { grid-template-columns: 1fr; }

      /* Gallery */
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gal-tall { grid-row: span 1; }
      .gallery-grid .gal-item { height: 170px; }

      /* Pricing */
      .pricing-grid { grid-template-columns: 1fr !important; gap: 14px !important; }

      /* Lead section */
      .lead-section { padding: 40px 0; }
      .lead-inner { grid-template-columns: 1fr; gap: 0; }
      .lead-copy { display: none; }
      .lead-form-card { border-radius: var(--r-md); padding: 24px 16px; max-width: 100%; }
      .lf-row { grid-template-columns: 1fr; }
      .lf-phone-flag { font-size: .75rem; padding: 11px 8px; }

      /* Final CTA */
      .final-section { padding: clamp(40px, 6vw, 72px) 0; }
      .final-inner h2 { font-size: clamp(1.6rem, 5vw, 2.5rem); }
      .final-inner p { font-size: .875rem; margin-bottom: 20px; }
      .final-btns { flex-direction: column; align-items: stretch; gap: 10px; }
      .final-btns .btn { width: 100%; justify-content: center; }
      .final-badge-box { padding: 14px 16px; gap: 10px; }
      .final-badge-box span { font-size: .8125rem; }
      .final-meta { gap: 10px; margin-top: 16px; }

      /* Section headers */
      .sec-header { margin-bottom: clamp(22px, 4vw, 38px); }
      .sec-header h2 { font-size: clamp(1.3rem, 4.5vw, 1.75rem); }
      .sec-header p { font-size: .875rem; }

      /* FAQs */
      .faq-q { font-size: .875rem; padding: 14px 16px; }
      .faq-a { padding: 0 16px; }
      .faq-item.open .faq-a { padding: 0 16px 14px; }
    }

    /* ═══════════════════════════════
       RESPONSIVE — SMALL (≤ 480px)
    ═══════════════════════════════ */
    @media (max-width: 480px) {
      /* Hero */
      .hero h1 { font-size: clamp(1.3rem, 6vw, 1.65rem); }
      .hero-form-card { padding: 20px 14px; }
      .hf-phone-flag { font-size: .72rem; padding: 11px 8px; }
      .hfc-head h3 { font-size: 1.05rem; }
      .hero-badge .pill { font-size: .56rem; }

      /* About stats — keep 2-col */
      #about [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }

      /* Gallery */
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-grid .gal-item { height: 210px; }

      /* Counters */
      .ctr-grid { grid-template-columns: repeat(2, 1fr); }

      /* Service card footer */
      .srv-foot { flex-direction: column; gap: 10px; align-items: flex-start; }
      .srv-foot .btn { width: 100%; justify-content: center; }

      /* Steps */
      .step-card { padding: 18px 14px; }

      /* Lead form */
      .lead-form-card { padding: 20px 12px; }
      .lf-phone-flag { font-size: .72rem; padding: 11px 8px; }

      /* Final */
      .final-meta { flex-direction: column; align-items: center; gap: 8px; }

      /* Ann bar */
      .ann-bar { font-size: .6rem; letter-spacing: 0; padding: 6px 10px; }
    }

    /* ═══════════════════════════════
       RESPONSIVE — XS (≤ 360px)
    ═══════════════════════════════ */
    @media (max-width: 360px) {
      .hero h1 { font-size: 1.25rem; line-height: 1.2; }
      .hero-desc { font-size: .78rem; }
      .hero-location-text { font-size: .72rem; }
      .hfc-head h3 { font-size: .95rem; }
      .hero-form-card { padding: 16px 10px; }
      .hf-phone-flag { padding: 10px 6px; font-size: .68rem; }
      .hero-badge .pill { font-size: .53rem; padding: 4px 8px; }
      .area-tag { font-size: .62rem; padding: 2px 6px; }
      .ann-bar { display: none; }
      .mob-bar a { font-size: .78rem; padding: 13px 6px; }
      .sec-header h2 { font-size: 1.15rem; }
      .btn-xl { font-size: .875rem !important; padding: 13px 14px !important; }
      .btn-lg { font-size: .825rem !important; padding: 12px 12px !important; }
      .why-item { padding: 12px; gap: 10px; }
      .wi-icon { width: 34px; height: 34px; font-size: .95rem; }
      .why-content h2 { font-size: 1.1rem; }
      .lead-form-card { padding: 18px 12px; }
      .lf-phone-flag { font-size: .7rem; padding: 10px 6px; }
      .lfc-head h3 { font-size: 1.05rem; }
      .final-inner h2 { font-size: 1.4rem; }
      .final-badge-box { gap: 8px; padding: 12px 14px; }
    }

    /* CTA Banner */
    .cta-banner {
      background: var(--ink); border-radius: var(--r-lg);
      padding: clamp(24px, 4vw, 40px);
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
      position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: ''; position: absolute;
      width: 380px; height: 380px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,119,204,.18) 0%, transparent 70%);
      top: -120px; left: -60px; pointer-events: none;
    }
    .cb-text { position: relative; z-index: 1; }
    .cb-text h3 { font-size: clamp(1.125rem, 3vw, 1.5rem); font-weight: 800; color: #fff; margin-bottom: 4px; }
    .cb-text p  { font-size: .8125rem; color: rgba(255,255,255,.5); }
    .cb-btns    { display: flex; gap: 10px; flex-shrink: 0; position: relative; z-index: 1; }

    /* ═══════════════════════════════
       HOW IT WORKS
    ═══════════════════════════════ */
    .how-section { background: var(--white); }

    .steps-wrap {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }
    .steps-wrap::before {
      content: ''; position: absolute;
      top: 42px;
      left: calc(12.5% + 20px); right: calc(12.5% + 20px);
      height: 2px;
      background: repeating-linear-gradient(
        90deg, var(--orange) 0 8px, rgba(0,119,204,.2) 8px 16px
      );
      z-index: 0;
    }

    .step-card {
      background: var(--bg); border-radius: var(--r-md);
      padding: 30px 22px; text-align: center;
      border: 1.5px solid var(--line);
      position: relative; z-index: 1;
      transition: transform .25s, box-shadow .25s;
    }
    .step-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

    .step-num {
      width: 58px; height: 58px; border-radius: 50%;
      border: 2.5px solid var(--orange); background: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.125rem; font-weight: 800; color: var(--orange);
      margin: 0 auto 16px; position: relative; z-index: 1;
    }
    .step-icon { font-size: 1.5rem; margin-bottom: 12px; }
    .step-card h4 { font-size: .9375rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
    .step-card p  { font-size: .8125rem; color: var(--muted); line-height: 1.7; }

    @media (max-width: 1024px) {
      .steps-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .steps-wrap::before { display: none; }
      .step-card { padding: 24px 18px; }
    }

    @media (max-width: 768px) {
      .steps-wrap {
        grid-template-columns: unset;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .steps-wrap::-webkit-scrollbar { display: none; }
      .step-card {
        flex: 0 0 72vw;
        max-width: 260px;
        scroll-snap-align: start;
        padding: 22px 16px;
      }
      .step-num { width: 50px; height: 50px; font-size: 1rem; margin-bottom: 14px; }
      .step-icon { font-size: 1.3rem; margin-bottom: 10px; }
      .step-card h4 { font-size: .875rem; margin-bottom: 6px; }
    }

    @media (max-width: 480px) {
      .step-card { flex: 0 0 80vw; max-width: 240px; padding: 18px 14px; }
      .step-num { width: 46px; height: 46px; font-size: .9375rem; }
      .step-card p { font-size: .78rem; }
    }

    @media (max-width: 360px) {
      .step-card { flex: 0 0 86vw; max-width: 220px; padding: 16px 12px; }
      .step-card h4 { font-size: .8125rem; }
      .step-num { width: 42px; height: 42px; font-size: .875rem; margin-bottom: 12px; }
    }

    /* ═══════════════════════════════
       WHY CHOOSE US
    ═══════════════════════════════ */
    .why-section { background: var(--bg); }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    .why-img-col { position: relative; }
    .why-img-main {
      border-radius: var(--r-lg); overflow: hidden; height: 460px;
    }
    .why-img-main img { width: 100%; height: 100%; object-fit: cover; }

    .why-stat-box {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--white); border-radius: var(--r-md);
      padding: 20px 24px; box-shadow: var(--sh-xl); min-width: 190px;
    }
    .wsb-row {
      display: flex; justify-content: space-between; align-items: center; padding: 9px 0;
    }
    .wsb-row + .wsb-row { border-top: 1px solid var(--line); }
    .wsb-lbl { font-size: .8125rem; font-weight: 600; color: var(--muted); }
    .wsb-val { font-size: 1.0625rem; font-weight: 800; color: var(--ink); }

    .why-content .pill { margin-bottom: 14px; display: inline-block; }
    .why-content h2 {
      font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 800;
      letter-spacing: -.02em; color: var(--ink); line-height: 1.2; margin-bottom: 14px;
    }
    .why-content > p {
      font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: 22px;
    }

    .why-items { display: grid; gap: 12px; margin-bottom: 28px; }
    .why-item {
      display: flex; align-items: flex-start; gap: 14px;
      background: var(--white); border-radius: var(--r-sm);
      padding: 16px; border: 1.5px solid var(--line);
      transition: border-color .2s, box-shadow .2s;
    }
    .why-item:hover { border-color: var(--orange); box-shadow: var(--sh-sm); }
    .wi-icon {
      width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
      background: var(--orange-l); display: flex; align-items: center;
      justify-content: center; font-size: 1.1rem;
    }
    .wi-text h4 { font-size: .9375rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
    .wi-text p  { font-size: .8125rem; color: var(--muted); line-height: 1.65; }

    .why-btns { display: flex; gap: 12px; flex-wrap: wrap; }

    @media (max-width: 1024px) {
      .why-grid { grid-template-columns: 1fr; gap: 0; }
      .why-img-col { display: none; }
      .why-content { max-width: 680px; margin-inline: auto; }
      .why-content h2 { font-size: clamp(1.4rem, 4vw, 1.9rem); }
    }

    @media (max-width: 768px) {
      .why-section { padding-inline: 0; }
      .why-content { max-width: 100%; }
      .why-content h2 { font-size: 1.3rem; }
      .why-content > p { font-size: .875rem; margin-bottom: 18px; }
      .why-items { gap: 10px; margin-bottom: 20px; }
      .why-item { padding: 14px 12px; gap: 12px; }
      .wi-icon { width: 36px; height: 36px; font-size: 1rem; border-radius: 8px; }
      .wi-text h4 { font-size: .875rem; }
      .wi-text p  { font-size: .78rem; }
      .why-btns { flex-direction: column; gap: 10px; }
      .why-btns .btn { width: 100%; justify-content: center; }
    }

    @media (max-width: 480px) {
      .why-content h2 { font-size: 1.2rem; }
      .why-item { padding: 12px 10px; gap: 10px; }
      .wi-icon { width: 34px; height: 34px; font-size: .9rem; border-radius: 7px; }
      .wi-text h4 { font-size: .8375rem; }
      .wi-text p  { font-size: .75rem; line-height: 1.6; }
    }

    @media (max-width: 360px) {
      .why-content h2 { font-size: 1.1rem; }
      .why-item { padding: 10px 8px; }
      .wi-icon { width: 30px; height: 30px; font-size: .85rem; border-radius: 6px; }
      .wi-text h4 { font-size: .8rem; }
      .wi-text p  { font-size: .72rem; }
    }

    /* ═══════════════════════════════
       COUNTERS
    ═══════════════════════════════ */
    .counters-section { background: var(--orange); padding: clamp(40px,6vw,72px) 0; }
    .ctr-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    .ctr-cell {
      text-align: center; padding: clamp(20px,4vw,40px) 16px;
      border-right: 1px solid rgba(255,255,255,.2);
      transition: background .2s;
    }
    .ctr-cell:last-child { border-right: none; }
    .ctr-cell:hover { background: rgba(0,0,0,.07); }
    .ctr-num  { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; color: #fff; display: block; line-height: 1; }
    .ctr-lbl  { font-size: .8125rem; color: rgba(255,255,255,.75); margin-top: 7px; font-weight: 500; }

    @media (max-width: 768px) {
      .ctr-grid { grid-template-columns: repeat(2, 1fr); }
      .ctr-cell { padding: 24px 12px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
      .ctr-cell:nth-child(even) { border-right: none; }
      .ctr-cell:nth-last-child(-n+2) { border-bottom: none; }
    }

    @media (max-width: 480px) {
      .ctr-cell { padding: 18px 10px; }
      .ctr-num { font-size: 1.8rem; }
      .ctr-lbl { font-size: .75rem; }
    }

    /* ═══════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════ */
    .testi-section { background: var(--white); }

    .testi-rating {
      display: flex; align-items: center; justify-content: center;
      gap: 10px; flex-wrap: wrap;
      margin-bottom: 12px;
    }
    .testi-rating .tr-stars { font-size: 1.25rem; color: #F5A623; letter-spacing: 2px; }
    .testi-rating .tr-score { font-size: 1rem; font-weight: 800; color: var(--ink); }
    .testi-rating .tr-count { font-size: .875rem; color: var(--muted); }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .testi-card {
      background: var(--bg); border-radius: var(--r-lg);
      padding: 26px 22px; border: 1.5px solid var(--line);
      display: flex; flex-direction: column; gap: 16px;
      transition: transform .25s, box-shadow .25s;
    }
    .testi-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

    .tc-stars { display: flex; gap: 3px; }
    .tc-stars span { color: #F5A623; font-size: 1.05rem; }

    .tc-body {
      font-size: .875rem; color: var(--muted);
      line-height: 1.8; flex-grow: 1;
    }

    .tc-author {
      display: flex; align-items: center; gap: 12px;
      padding-top: 16px; border-top: 1px solid var(--line);
    }
    .tc-av {
      width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.0625rem; font-weight: 800; color: #fff;
    }
    .tc-name { font-size: .875rem; font-weight: 700; color: var(--ink); }
    .tc-loc  { font-size: .75rem; color: var(--muted-lt); margin-top: 2px; }

    .testi-cta {
      text-align: center; margin-top: 36px;
    }
    .testi-cta .btn { display: inline-flex; }
    .testi-cta p {
      font-size: .8rem; color: var(--muted-lt); margin-top: 10px;
    }

    @media (max-width: 1024px) {
      .testi-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .testi-card:nth-child(3) { grid-column: 1 / -1; max-width: 520px; margin-inline: auto; }
    }

    @media (max-width: 768px) {
      .testi-grid {
        grid-template-columns: unset;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .testi-grid::-webkit-scrollbar { display: none; }
      .testi-card {
        flex: 0 0 82vw;
        max-width: 340px;
        scroll-snap-align: start;
        padding: 22px 18px;
        gap: 14px;
      }
      .testi-card:nth-child(3) { grid-column: unset; max-width: 340px; margin-inline: 0; }
      .testi-rating .tr-count { font-size: .8rem; }
      .testi-cta .btn { width: 100%; justify-content: center; }
      .testi-cta { margin-top: 24px; }
    }

    @media (max-width: 480px) {
      .testi-card { flex: 0 0 88vw; max-width: 300px; padding: 18px 16px; }
      .tc-body { font-size: .8375rem; line-height: 1.75; }
      .tc-stars span { font-size: .95rem; }
      .testi-rating .tr-stars { font-size: 1.1rem; }
      .testi-rating .tr-score { font-size: .9rem; }
    }

    @media (max-width: 360px) {
      .testi-card { flex: 0 0 92vw; max-width: 280px; padding: 16px 14px; }
      .tc-name { font-size: .8125rem; }
      .tc-av { width: 40px; height: 40px; font-size: .9rem; }
    }

    /* ═══════════════════════════════
       FINAL CTA
    ═══════════════════════════════ */
    .final-section {
      background: var(--ink); padding: clamp(56px,8vw,96px) 0;
      position: relative; overflow: hidden;
    }
    .final-section::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(ellipse at 20% 50%, rgba(0,119,204,.13) 0%, transparent 55%),
                  radial-gradient(ellipse at 80% 50%, rgba(0,197,102,.06) 0%, transparent 55%);
    }
    .final-inner { position: relative; z-index: 1; text-align: center; }
    .final-inner h2 {
      font-size: clamp(1.75rem, 5vw, 3.5rem); font-weight: 800;
      letter-spacing: -.025em; color: #fff; line-height: 1.1; margin-bottom: 14px;
    }
    .final-inner h2 .accent {
      background: linear-gradient(120deg, var(--orange), #00A8E8);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .final-inner p { font-size: .9375rem; color: rgba(255,255,255,.5); max-width: 540px; margin: 0 auto 32px; line-height: 1.8; }
    .final-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
    .final-badge-box {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
      background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--r-md); padding: 16px 24px; margin: 0 auto;
      max-width: 560px;
    }
    .final-badge-box span { font-size: .875rem; color: rgba(255,255,255,.7); white-space: nowrap; }
    .final-meta { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 24px; }
    .fm {
      display: flex; align-items: center; gap: 7px;
      font-size: .8125rem; color: rgba(255,255,255,.38); font-weight: 500;
    }
    .fm-d { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    footer {
      background: #060608;
      padding: clamp(40px,6vw,64px) 0 32px;
    }
    .ft-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      margin-bottom: 28px;
    }
    .ft-logo-name {
      font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 12px;
    }
    .ft-logo-name span { color: var(--orange); }
    .ft-desc {
      font-size: .8125rem; color: rgba(255,255,255,.45);
      line-height: 1.8; max-width: 280px; margin-bottom: 20px;
    }
    .ft-contacts a {
      display: flex; align-items: flex-start; gap: 8px;
      font-size: .8125rem; font-weight: 600;
      color: rgba(255,255,255,.55);
      margin-bottom: 10px; transition: color .2s;
      word-break: break-word; line-height: 1.5;
    }
    .ft-contacts a .ft-icon { flex-shrink: 0; margin-top: 1px; }
    .ft-contacts a:hover   { color: var(--orange); }
    .ft-contacts a.wa:hover { color: var(--green); }

    .ft-col h5 {
      font-size: .6875rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 14px;
    }
    .ft-col ul { display: grid; gap: 10px; }
    .ft-col ul li a {
      font-size: .8125rem; color: rgba(255,255,255,.45); transition: color .2s;
    }
    .ft-col ul li a:hover { color: var(--orange); }

    .ft-bottom {
      display: flex; justify-content: space-between;
      align-items: flex-start; flex-wrap: wrap; gap: 8px;
      font-size: .75rem; color: rgba(255,255,255,.28);
    }
    .ft-bottom a { color: var(--orange); }

    @media (max-width: 1024px) {
      .ft-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
      footer { padding-bottom: 90px; }
    }

    @media (max-width: 768px) {
      footer { padding-bottom: 90px; }
      .ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
        padding-bottom: 28px;
        margin-bottom: 20px;
      }
      .ft-grid > div:first-child { grid-column: 1 / -1; }
      .ft-desc { max-width: 100%; font-size: .8rem; margin-bottom: 14px; }
      .ft-logo-name { font-size: 1.1rem; }
      .ft-contacts a { font-size: .78rem; margin-bottom: 8px; }
      .ft-col h5 { font-size: .6rem; margin-bottom: 10px; }
      .ft-col ul { gap: 8px; }
      .ft-col ul li a { font-size: .78rem; }
      .ft-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        font-size: .7rem;
      }
    }

    @media (max-width: 480px) {
      .ft-grid { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
      .ft-contacts a { font-size: .75rem; }
      .ft-col ul li a { font-size: .75rem; }
    }

    @media (max-width: 360px) {
      .ft-grid { grid-template-columns: 1fr; gap: 20px; }
      .ft-logo-name { font-size: 1rem; }
      .ft-desc { font-size: .75rem; }
      .ft-bottom { font-size: .65rem; }
    }

    /* ═══════════════════════════════
       FLOATING BUTTONS (desktop)
    ═══════════════════════════════ */
    .fabs {
      position: fixed; right: 20px; bottom: 28px;
      display: flex; flex-direction: column; gap: 12px; z-index: 800;
    }
    .fab-wrap { position: relative; display: flex; align-items: center; justify-content: flex-end; }
    .fab-tip {
      position: absolute; right: 66px;
      background: var(--ink); color: #fff;
      font-size: .6875rem; font-weight: 700;
      padding: 6px 12px; border-radius: 8px;
      white-space: nowrap; pointer-events: none;
      opacity: 0; transform: translateX(6px);
      transition: opacity .2s, transform .2s;
    }
    .fab-tip::after {
      content: ''; position: absolute; top: 50%; right: -6px;
      transform: translateY(-50%);
      border: 5px solid transparent; border-left-color: var(--ink);
    }
    .fab-wrap:hover .fab-tip { opacity: 1; transform: translateX(0); }
    .fab {
      width: 56px; height: 56px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; cursor: pointer; box-shadow: var(--sh-xl);
      transition: transform .2s;
    }
    .fab:hover { transform: scale(1.12); }
    .fab-call { background: var(--orange); }
    .fab-wa   { background: var(--green); }

    /* ═══════════════════════════════
       MOBILE BOTTOM BAR
    ═══════════════════════════════ */
    .mob-bar {
      display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
    }
    .mob-bar a {
      flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
      font-size: .875rem; font-weight: 800; padding: 15px 8px;
    }
    .mob-call { background: var(--orange); color: #fff; }
    .mob-wa   { background: var(--green);  color: #fff; }

    /* ═══════════════════════════════
       UX ENHANCEMENTS
    ═══════════════════════════════ */

    /* Scroll progress bar */
    #scroll-bar {
      position: fixed; top: 0; left: 0; height: 3px; width: 0%;
      background: linear-gradient(90deg, var(--orange), #00A8E8);
      z-index: 9999; transition: width .1s linear;
      border-radius: 0 2px 2px 0;
    }

    /* Back to top button */
    #back-top {
      position: fixed; bottom: 92px; right: 22px; z-index: 800;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--white); border: 1.5px solid var(--line);
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem; cursor: pointer;
      box-shadow: var(--sh-md);
      opacity: 0; transform: translateY(12px);
      transition: opacity .3s, transform .3s, background .2s;
      pointer-events: none;
    }
    #back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
    #back-top:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
    @media (max-width: 1024px) { #back-top { bottom: 80px; right: 14px; } }

    /* Active nav link */
    .nav-links a.active { color: var(--ink); }
    .nav-links a.active::after { transform: scaleX(1); }

    /* FAQ Section */
    .faq-section { background: var(--bg); }
    .faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 10px; }

    .faq-item {
      background: var(--white); border-radius: var(--r-md);
      border: 1.5px solid var(--line);
      overflow: hidden;
      transition: border-color .2s, box-shadow .2s;
    }
    .faq-item.open { border-color: var(--orange); box-shadow: var(--sh-sm); }

    .faq-q {
      width: 100%; display: flex; align-items: center; justify-content: space-between;
      padding: 18px 22px; cursor: pointer; background: none; border: none;
      font-family: 'Inter', sans-serif; font-size: .9375rem; font-weight: 600;
      color: var(--ink); text-align: left; gap: 12px;
    }
    .faq-q:hover { color: var(--orange); }
    .faq-icon {
      width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
      background: var(--orange-l); display: flex; align-items: center; justify-content: center;
      font-size: .75rem; font-weight: 800; color: var(--orange);
      transition: background .2s, transform .3s;
    }
    .faq-item.open .faq-icon { background: var(--orange); color: #fff; transform: rotate(45deg); }

    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
      font-size: .875rem; color: var(--muted); line-height: 1.75;
      padding: 0 22px;
    }
    .faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }

    /* Live availability toast */
    #live-toast {
      position: fixed; bottom: 90px; left: 20px; z-index: 850;
      background: var(--white); border-radius: var(--r-md);
      padding: 14px 16px; box-shadow: var(--sh-xl);
      display: flex; align-items: center; gap: 12px;
      max-width: 280px; border-left: 4px solid var(--green);
      opacity: 0; transform: translateX(-20px);
      transition: opacity .4s ease, transform .4s ease;
      pointer-events: none;
    }
    #live-toast.show { opacity: 1; transform: translateX(0); }
    .lt-icon { font-size: 1.5rem; flex-shrink: 0; }
    .lt-text .lt-title { font-size: .8125rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
    .lt-text .lt-sub   { font-size: .75rem; color: var(--muted); }
    .lt-close {
      position: absolute; top: 8px; right: 10px;
      font-size: .7rem; color: var(--muted-lt); cursor: pointer;
      background: none; border: none; font-family: inherit;
    }
    @media (max-width: 768px) {
      #live-toast { bottom: 80px; left: 12px; max-width: 240px; }
      #back-top   { display: none; }
    }

    /* Focus accessibility */
    a:focus-visible, button:focus-visible {
      outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px;
    }

    /* Image lazy-load blur-in */
    img.lazy { filter: blur(6px); transition: filter .5s ease; }
    img.lazy.loaded { filter: blur(0); }

    /* Section divider wave */
    .wave-divider { line-height: 0; overflow: hidden; background: var(--white); }
    .wave-divider.flip { transform: scaleY(-1); }
    .wave-divider svg { display: block; width: 100%; }

    /* ═══════════════════════════════
       LEAD FORM SECTION
    ═══════════════════════════════ */
    .lead-section {
      background: linear-gradient(135deg, #0A0A0F 0%, #0d1b2a 50%, #0A0A0F 100%);
      padding: clamp(56px, 8vw, 96px) 0;
      position: relative; overflow: hidden;
    }
    .lead-section::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(ellipse at 70% 50%, rgba(0,119,204,.12) 0%, transparent 55%),
                  radial-gradient(ellipse at 20% 80%, rgba(0,197,102,.06) 0%, transparent 55%);
    }
    .lead-inner {
      display: grid; grid-template-columns: 1fr 480px;
      gap: 64px; align-items: center; position: relative; z-index: 1;
    }
    .lead-copy .pill { margin-bottom: 18px; }
    .lead-copy h2 {
      font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800;
      letter-spacing: -.025em; color: #fff; line-height: 1.15; margin-bottom: 16px;
    }
    .lead-copy h2 .accent {
      background: linear-gradient(120deg, var(--orange), #00A8E8);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .lead-copy p { font-size: .9375rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 28px; }
    .lead-perks { display: grid; gap: 12px; }
    .lead-perk {
      display: flex; align-items: center; gap: 10px;
      font-size: .875rem; color: rgba(255,255,255,.65); font-weight: 500;
    }
    .lp-dot {
      width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--orange), #00A8E8);
      display: flex; align-items: center; justify-content: center;
      font-size: .6rem; font-weight: 800; color: #fff;
    }

    /* form card */
    .lead-form-card {
      background: rgba(255,255,255,.04);
      backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--r-lg); padding: 36px 32px;
      box-shadow: 0 24px 64px rgba(0,0,0,.4);
    }
    .lfc-head { text-align: center; margin-bottom: 28px; }
    .lfc-head h3 {
      font-size: 1.375rem; font-weight: 800; color: #fff; margin-bottom: 6px;
    }
    .lfc-head p { font-size: .8125rem; color: rgba(255,255,255,.45); }

    .lf-group { margin-bottom: 16px; }
    .lf-group label {
      display: block; font-size: .75rem; font-weight: 700;
      color: rgba(255,255,255,.5); letter-spacing: .05em; text-transform: uppercase;
      margin-bottom: 7px;
    }
    .lf-input, .lf-select {
      width: 100%; background: rgba(255,255,255,.07);
      border: 1.5px solid rgba(255,255,255,.12);
      border-radius: var(--r-sm); padding: 13px 16px;
      font-family: 'Inter', sans-serif; font-size: .9375rem;
      color: #fff; outline: none;
      transition: border-color .2s, background .2s;
    }
    .lf-input::placeholder { color: rgba(255,255,255,.3); }
    .lf-input:focus, .lf-select:focus {
      border-color: var(--orange);
      background: rgba(255,255,255,.1);
    }
    .lf-select { appearance: none; cursor: pointer; color: rgba(255,255,255,.7); }
    .lf-select option { background: #0d1b2a; color: #fff; }
    .lf-select-wrap { position: relative; }
    .lf-select-wrap::after {
      content: '▾'; position: absolute; right: 14px; top: 50%;
      transform: translateY(-50%); color: rgba(255,255,255,.4);
      font-size: .75rem; pointer-events: none;
    }
    .lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

    .lf-phone-wrap { display: flex; gap: 0; }
    .lf-phone-flag {
      display: flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12);
      border-right: none; border-radius: var(--r-sm) 0 0 var(--r-sm);
      padding: 13px 14px; font-size: .875rem; color: rgba(255,255,255,.6);
      white-space: nowrap; flex-shrink: 0;
    }
    .lf-phone-wrap .lf-input { border-radius: 0 var(--r-sm) var(--r-sm) 0; }

    .lf-submit {
      width: 100%; margin-top: 8px;
      background: linear-gradient(135deg, var(--orange), #00A8E8);
      color: #fff; border: none; border-radius: var(--r-full);
      padding: 15px 28px; font-family: 'Inter', sans-serif;
      font-size: 1rem; font-weight: 800; cursor: pointer;
      box-shadow: 0 6px 24px rgba(0,119,204,.4);
      transition: transform .2s, box-shadow .2s, opacity .2s;
      letter-spacing: .01em;
    }
    .lf-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,119,204,.5); }
    .lf-submit:active { transform: scale(.97); }
    .lf-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
    .lf-privacy {
      text-align: center; margin-top: 12px;
      font-size: .7rem; color: rgba(255,255,255,.3);
    }

    .lf-success {
      display: none; text-align: center; padding: 24px 0;
    }
    .lf-success-icon {
      font-size: 3rem; margin-bottom: 14px;
    }
    @keyframes pop { 0%{transform:scale(0);} 100%{transform:scale(1);} }
    .lf-success h4 { font-size: 1.25rem; font-weight: 800; color: var(--green); margin-bottom: 8px; }
    .lf-success p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.7; }

    @media (max-width: 1024px) {
      .lead-inner { grid-template-columns: 1fr; gap: 40px; }
      .lead-form-card { max-width: 540px; margin-inline: auto; }
    }
    @media (max-width: 480px) {
      .lead-form-card { padding: 24px 18px; }
      .lf-row { grid-template-columns: 1fr; }
    }

    .hero-location-text {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.75);
      margin-bottom: 16px;
      line-height: 1.6;
      border-left: 3px solid #00A8E8;
      padding-left: 12px;
    }

    .hero-location-text strong {
      color: #00A8E8;
    }

    .hero-areas {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .area-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.6);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .area-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .area-tag {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.8);
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.78rem;
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .hero-location-text {
        font-size: 0.875rem;
      }
      .area-tag {
        font-size: 0.72rem;
        padding: 3px 8px;
      }
    }