  :root {
      --navy:    #0D0D0D;
      --blue:    #B8922A;
      --blue-lt: #D4AF5A;
      --teal:    #C9A84C;
      --teal-dk: #9A7520;
      --white:   #FFFFFF;
      --off:     #F8F5EF;
      --gray:    #7A7A7A;
      --gray-lt: #E8E2D8;
      --card:    #FFFFFF;
      --radius:  16px;
      --shadow:  0 8px 40px rgba(184,146,42,0.12);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Source Sans 3', sans-serif;
      background: var(--white);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* ── UTILITIES ─────────────────────────────── */
    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
    .tag {
      display: inline-block;
      background: rgba(184,146,42,0.12);
      color: var(--teal-dk);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 40px;
      margin-bottom: 14px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 14px;
    }
    .section-sub {
      color: var(--gray);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 560px;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--blue);
      color: #fff;
      font-family: 'Source Sans 3', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 14px 30px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background .25s, transform .2s, box-shadow .25s;
      box-shadow: 0 4px 20px rgba(184,146,42,0.35);
    }
    .btn-primary:hover { background: #9A7520; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,146,42,0.45); }
    .btn-teal {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--teal);
      color: var(--navy);
      font-family: 'Source Sans 3', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 14px 30px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background .25s, transform .2s;
    }
    .btn-teal:hover { background: var(--teal-dk); color: #fff; transform: translateY(-2px); }
    .fade-up { opacity: 0; transform: translateY(36px); transition: opacity .65s ease, transform .65s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ── NAV ───────────────────────────────────── */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      padding: 18px 0;
      transition: background .3s, box-shadow .3s, padding .3s;
    }
    #navbar.scrolled {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(16px);
      box-shadow: 0 2px 24px rgba(184,146,42,0.12);
      padding: 8px 0;
    }
    #navbar .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      text-decoration: none;
      display: flex; align-items: center;
    }
    .nav-logo-img {
      height: 52px;
      width: auto;
      object-fit: contain;
      transition: transform .3s, filter .3s;
      filter: drop-shadow(0 2px 8px rgba(184,146,42,.35));
    }
    #navbar.scrolled .nav-logo-img {
      height: 44px;
      filter: drop-shadow(0 2px 6px rgba(184,146,42,.2)) brightness(0.88);
    }
    .nav-logo-img:hover { transform: scale(1.04); }
    .nav-links { display: flex; gap: 30px; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-family: 'Source Sans 3', sans-serif;
      font-weight: 500;
      font-size: .95rem;
      transition: color .2s;
    }
    #navbar.scrolled .nav-links a { color: var(--navy); }
    .nav-links a:hover { color: var(--teal); }
    .nav-cta { /* shown in nav */ }
    .hamburger {
      display: none; background: none; border: none; cursor: pointer;
      flex-direction: column; gap: 5px;
    }
    .hamburger span {
      display: block; width: 26px; height: 2px;
      background: #fff; border-radius: 2px; transition: background .3s;
    }
    #navbar.scrolled .hamburger span { background: var(--navy); }
    .mobile-menu {
      display: none;
      background: var(--white);
      padding: 20px 24px 28px;
      box-shadow: 0 10px 30px rgba(0,0,0,.1);
    }
    .mobile-menu a {
      display: block; padding: 12px 0;
      color: var(--navy); text-decoration: none; font-weight: 500;
      border-bottom: 1px solid var(--gray-lt);
    }

    /* ── HERO ──────────────────────────────────── */
    #hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #000000 0%, #0D0D0D 50%, #1A1500 100%);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      padding: 120px 0 80px;
    }
    .hero-bg-pattern {
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 70% 30%, rgba(184,146,42,.20) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(201,168,76,.12) 0%, transparent 45%);
      pointer-events: none;
    }
    .hero-dots {
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 36px 36px;
      pointer-events: none;
    }
    .hero-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center;
      position: relative; z-index: 2;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(184,146,42,.15);
      border: 1px solid rgba(184,146,42,.3);
      color: var(--teal);
      font-size: .8rem; font-weight: 600;
      letter-spacing: .08em; text-transform: uppercase;
      padding: 6px 16px; border-radius: 40px; margin-bottom: 22px;
    }
    .hero-eyebrow i { font-size: .7rem; }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 800; color: #fff;
      line-height: 1.1; margin-bottom: 22px;
    }
    .hero-title .accent { color: var(--teal); }
    .hero-sub {
      color: rgba(255,255,255,.7);
      font-size: 1.1rem; line-height: 1.75;
      margin-bottom: 36px; max-width: 480px;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      color: #fff;
      font-family: 'Source Sans 3', sans-serif; font-weight: 700;
      font-size: 1rem; padding: 14px 30px;
      border-radius: 50px;
      border: 1.5px solid rgba(255,255,255,.3);
      text-decoration: none;
      transition: border-color .25s, background .25s;
    }
    .btn-ghost:hover { border-color: var(--teal); background: rgba(14,207,176,.1); }
    .hero-stats {
      display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap;
    }
    .hero-stat { }
    .hero-stat .num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 800;
      color: #fff; line-height: 1;
    }
    .hero-stat .num span { color: var(--teal); }
    .hero-stat .label { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: 4px; }
    /* hero card */
    .hero-card-wrap { position: relative; }
    .hero-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(14px);
      border-radius: 24px;
      padding: 36px;
      position: relative;
    }
    .hero-card-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--teal); color: var(--navy);
      font-weight: 700; font-size: .82rem;
      padding: 6px 14px; border-radius: 30px;
      margin-bottom: 20px;
    }
    .hero-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; color: #fff; margin-bottom: 24px;
    }
    .mini-step {
      display: flex; align-items: center; gap: 14px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .mini-step:last-child { border-bottom: none; }
    .mini-step-icon {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(184,146,42,.15);
      display: flex; align-items: center; justify-content: center;
      color: var(--teal); font-size: .9rem; flex-shrink: 0;
    }
    .mini-step-text { color: rgba(255,255,255,.8); font-size: .95rem; }
    .mini-step-text strong { color: #fff; display: block; font-weight: 600; }
    .floating-pill {
      position: absolute;
      background: #fff;
      border-radius: 50px;
      padding: 10px 18px;
      display: flex; align-items: center; gap: 10px;
      box-shadow: 0 8px 30px rgba(0,0,0,.18);
      font-size: .85rem; font-weight: 600; color: var(--navy);z-index: 1;
    }
    .floating-pill.p1 { top: -20px; right: -18px; animation: float1 3s ease-in-out infinite; }
    .floating-pill.p2 { bottom: -18px; left: -18px; animation: float2 3.5s ease-in-out infinite; }
    .pill-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    @keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
    @keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

    /* ── ABOUT ─────────────────────────────────── */
    #about { padding: 100px 0; background: var(--off); }
    .about-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 70px; align-items: center;
    }
    .about-visual {
      position: relative;
    }
    .about-img-box {
    width: 511px;
      background: linear-gradient(135deg, #1A1500 0%, #2A1F00 100%);
      border-radius: 24px;
      aspect-ratio: 4/3;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .about-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .about-img-box::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .about-img-icon {
      font-size: 6rem; color: rgba(255,255,255,.15);
      position: relative; z-index: 1;
    }
    .about-badge {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--teal);
      border-radius: 18px; padding: 18px 22px;
      box-shadow: 0 8px 30px rgba(184,146,42,.35);
      text-align: center; color: var(--navy);
    }
    .about-badge .big { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; line-height: 1; }
    .about-badge .sm { font-size: .8rem; font-weight: 600; margin-top: 2px; }
    .about-text .section-sub { margin-bottom: 28px; }
    .trust-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .trust-list li {
      display: flex; align-items: flex-start; gap: 12px;
      color: var(--navy); font-size: .97rem;
    }
    .trust-list li i { color: var(--teal); margin-top: 3px; font-size: 1rem; }

    /* ── PROCESS ───────────────────────────────── */
    #process { padding: 100px 0; background: var(--white); }
    .process-head { text-align: center; margin-bottom: 60px; }
    .process-head .section-sub { margin: 0 auto; }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0; position: relative;
    }
    .steps-grid::after {
      content: '';
      position: absolute;
      top: 44px; left: calc(12.5%);
      width: 75%; height: 2px;
      background: linear-gradient(90deg, var(--teal-dk), var(--blue-lt));
      z-index: 0;
    }
    .step-card {
      text-align: center; padding: 0 20px;
      position: relative; z-index: 1;
    }
    .step-num {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--blue);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-family: 'Playfair Display', serif;
      font-weight: 800; font-size: 1.2rem; color: #fff;
      box-shadow: 0 4px 20px rgba(184,146,42,.35);
      position: relative; z-index: 2;
      border: 4px solid #fff;
    }
    .step-card:nth-child(2) .step-num,
    .step-card:nth-child(4) .step-num { background: var(--teal); color: #fff; box-shadow: 0 4px 20px rgba(184,146,42,.25); }
    .step-icon-wrap {
      width: 72px; height: 72px; border-radius: 20px;
      background: var(--off);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      font-size: 1.6rem; color: var(--blue);
      transition: background .3s, color .3s, transform .3s;
    }
    .step-card:hover .step-icon-wrap {
      background: var(--blue); color: #0D0D0D; transform: scale(1.08);
    }
    .step-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 700;
      margin-bottom: 8px;
    }
    .step-card p { color: var(--gray); font-size: .9rem; line-height: 1.6; }

    /* ── WHY CHOOSE US ─────────────────────────── */
    #why { padding: 100px 0; background: var(--off); }
    .why-head { text-align: center; margin-bottom: 56px; }
    .why-head .section-sub { margin: 0 auto; }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .benefit-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 28px;
      box-shadow: var(--shadow);
      transition: transform .3s, box-shadow .3s;
      position: relative; overflow: hidden;
    }
    .benefit-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--teal-dk), var(--blue-lt));
      opacity: 0; transition: opacity .3s;
    }
    .benefit-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(22,86,240,.14); }
    .benefit-card:hover::before { opacity: 1; }
    .benefit-icon {
      width: 56px; height: 56px; border-radius: 14px;
      background: linear-gradient(135deg, rgba(184,146,42,.12), rgba(201,168,76,.08));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: var(--blue);
      margin-bottom: 20px;
    }
    .benefit-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 700;
      margin-bottom: 10px;
    }
    .benefit-card p { color: var(--gray); font-size: .93rem; line-height: 1.65; }

    /* ── TESTIMONIALS ──────────────────────────── */
    #testimonials { padding: 100px 0; background: #0D0D0D; }
    .test-head { text-align: center; margin-bottom: 56px; }
    .test-head .section-title { color: #fff; }
    .test-head .section-sub { color: rgba(255,255,255,.55); margin: 0 auto; }
    .test-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .test-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: background .3s, transform .3s;
    }
    .test-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
    .stars { color: #FBBF24; font-size: 1rem; margin-bottom: 16px; }
    .test-quote {
      color: rgba(255,255,255,.8);
      font-size: .97rem; line-height: 1.75;
      font-style: italic; margin-bottom: 24px;
    }
    .test-author { display: flex; align-items: center; gap: 14px; }
    .test-avatar {
      width: 46px; height: 46px; border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--teal));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif; font-weight: 800;
      font-size: 1rem; color: #fff; flex-shrink: 0;
    }
    .test-name { font-weight: 700; color: #fff; font-size: .97rem; }
    .test-meta { color: rgba(255,255,255,.45); font-size: .82rem; margin-top: 2px; }

    /* ── PLATFORMS ─────────────────────────────── */
    #platforms { padding: 80px 0; background: var(--white); }
    .plat-head { text-align: center; margin-bottom: 50px; }
    .plat-grid {
      display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    }
    .plat-card {
      display: flex; flex-direction: column;
      align-items: center; gap: 14px;
      background: var(--off);
      border-radius: 20px;
      padding: 36px 48px;
      transition: transform .3s, box-shadow .3s;
      cursor: default; min-width: 200px;
    }
    .plat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
    .plat-logo {
      width: 70px; height: 70px; border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; font-weight: 900;
    }
    .plat-uber .plat-logo { background: #000; color: #fff; font-family: 'Source Sans 3', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: .05em; }
    .plat-ola .plat-logo { background: #25AE88; color: #fff; font-family: 'Source Sans 3', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: .05em; }
    .plat-rapido .plat-logo { background: #FFD500; color: #000; font-family: 'Source Sans 3', sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: .05em; }
    .plat-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; }
    .plat-tag { color: var(--gray); font-size: .83rem; }

    /* ── CONTACT ───────────────────────────────── */
    #contact { padding: 100px 0; background: var(--off); }
    .contact-head { margin-bottom: 50px; }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 48px; align-items: start;
    }
    .offices { display: flex; flex-direction: column; gap: 22px; }
    .office-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 24px 26px;
      display: flex; gap: 18px;
      box-shadow: var(--shadow);
      transition: transform .25s;
    }
    .office-card:hover { transform: translateX(5px); }
    .office-icon {
      width: 46px; height: 46px; border-radius: 12px;
      background: rgba(22,86,240,.08);
      display: flex; align-items: center; justify-content: center;
      color: var(--blue); font-size: 1.1rem; flex-shrink: 0;
    }
    .office-info h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 700; font-size: .97rem;
      margin-bottom: 5px;
    }
    .office-info p { color: var(--gray); font-size: .88rem; line-height: 1.55; }
    .contact-right { }
    .contact-actions { display: flex; flex-direction: column; gap: 16px; }
    .contact-action-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 22px 26px;
      display: flex; align-items: center; gap: 18px;
      box-shadow: var(--shadow);
      text-decoration: none; color: var(--navy);
      transition: transform .25s;
    }
    .contact-action-card:hover { transform: translateX(5px); }
    .ca-icon {
      width: 50px; height: 50px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; flex-shrink: 0;
    }
    .ca-icon.phone { background: rgba(22,86,240,.1); color: var(--blue); }
    .ca-icon.whatsapp { background: rgba(37,211,102,.12); color: #25D366; }
    .ca-icon.mail { background: rgba(239,68,68,.1); color: #EF4444; }
    .ca-label { font-size: .8rem; color: var(--gray); margin-bottom: 3px; }
    .ca-value { font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: 1rem; }
    .contact-form-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow);
      margin-top: 24px;
    }
    .contact-form-card h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 700; font-size: 1.15rem;
      margin-bottom: 20px;
    }
    .form-row { display: flex; flex-direction: column; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group label { font-size: .85rem; font-weight: 600; color: var(--navy); }
    .form-group input, .form-group select {
      border: 1.5px solid var(--gray-lt);
      border-radius: 10px;
      padding: 11px 14px;
      font-family: 'Source Sans 3', sans-serif;
      font-size: .95rem; color: var(--navy);
      outline: none; transition: border-color .2s;
    }
    .form-group input:focus, .form-group select:focus { border-color: var(--blue); }
    .form-submit {
      width: 100%; margin-top: 8px;
      justify-content: center;
    }

    /* ── CTA SECTION ───────────────────────────── */
    #cta {
      padding: 100px 0;
      background: linear-gradient(135deg, #000000 0%, #0D0D0D 60%, #1A1500 100%);
      position: relative; overflow: hidden; text-align: center;
    }
    #cta::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle at 50% 50%, rgba(184,146,42,.18) 0%, transparent 65%);
    }
    .cta-inner { position: relative; z-index: 1; }
    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800; color: #fff;
      margin-bottom: 16px; line-height: 1.15;
    }
    .cta-title .accent { color: var(--teal); }
    .cta-sub { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
    .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .cta-note { margin-top: 22px; color: rgba(255,255,255,.4); font-size: .85rem; }
    .cta-note i { color: var(--teal); margin-right: 4px; }

    /* ── FOOTER ────────────────────────────────── */
    footer {
      background: #080808;
      padding: 40px 0 24px;
      text-align: center;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-weight: 800; font-size: 1.6rem;
      color: #fff; margin-bottom: 10px;
    }
    .footer-logo span { color: var(--teal); }
    .footer-tagline { color: rgba(255,255,255,.4); font-size: .88rem; margin-bottom: 24px; }
    .footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
    .footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .88rem; transition: color .2s; }
    .footer-links a:hover { color: var(--teal); }
    .footer-bottom { color: rgba(255,255,255,.25); font-size: .82rem; border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; }

    .contact-bottom-wrapper {display: flex;align-items: center;flex-wrap: wrap;margin: 0 -8px;}
    .office-card-outer {width: 50%;padding: 0 8px; margin-bottom: 16px;}
    .contact-text-wrapper {width: 100%;display: flex;align-items: center;flex-wrap: wrap;margin: 0 -8px; padding-top: 25px;}
    .contact-text-box-outer {width: 50%;padding: 0 8px;}
    .offer-bottom .office-card-outer {height: 344px;}
    .benefit-card {width: 100%; height: 100%;}
    #we-offer {padding-bottom: 60px;}

    /* ── RESPONSIVE ────────────────────────────── */
    @media (max-width: 1024px) {
      .benefits-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .steps-grid::after { display: none; }
    }
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-card-wrap { display: none; }
      .about-inner { grid-template-columns: 1fr; }
      .about-visual { order: -1; }
      .test-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .benefits-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .hero-stats { gap: 20px; }
      .office-card-outer {width: 50%; margin-bottom: 16px;}
      .about-img-box {width: 100%;}
      .hero-actions a {justify-content: center;}
      .offer-bottom .office-card-outer {height: 458px;}   
    }
    @media(max-width: 575px) {
        .offer-bottom .office-card-outer {height: 625px;}
    }
    @media (max-width: 480px) {
      .steps-grid { grid-template-columns: 1fr; }
      .plat-card { min-width: 140px; padding: 24px 32px; }
      .hero-actions { flex-direction: column; }
      .cta-buttons { flex-direction: column; align-items: center; }
      .office-card-outer {width: 100%; }
      .contact-text-box-outer {width: 100%; margin-bottom: 16px;}
      .contact-text-box-outer:last-child {margin-bottom: 0px;}
      .hero-title{text-align: center;font-size: 36px;}
      .hero-actions {flex-direction: row;justify-content: space-between; gap: 0;}
      .hero-actions a {width: 48%;font-size: 14px;padding: 12px 13px;}
      .hero-actions a span {display:none;}
      .hero-stat .num {font-size: 22px;}
      .hero-stat .label {font-size: 11px;}
        .hero-stats {gap: 16px;}
        .hero-stat {text-align: center;}
        #hero .container {padding: 0 14px;}
        .offer-bottom .office-card-outer {height: auto;}
    }