    :root {
      --teal:    #00d4c8;
      --cyan:    #00b4d8;
      --blue:    #2563a8;
      --navy:    #1a3a6e;
      --dark:    #0d1b3e;
      --white:   #ffffff;
      --offwhite:#f0f8ff;
      --gray:    #6b7c93;
      --light:   #e8f4fd;
      --grad:    linear-gradient(135deg, #00d4c8 0%, #2563a8 100%);
      --grad2:   linear-gradient(135deg, #0d1b3e 0%, #1a3a6e 100%);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Sora', sans-serif;
      background: var(--white);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--dark);
      color: rgba(255,255,255,0.75);
      font-size: 0.78rem;
      padding: 8px 0;
      font-family: 'Space Mono', monospace;
    }
    .topbar .inner {
      max-width: 1280px;
      margin: auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }
    .topbar a { color: var(--teal); text-decoration: none; }
    .topbar .socials a { margin-left: 12px; color: rgba(255,255,255,0.6); transition: color .2s; }
    .topbar .socials a:hover { color: var(--teal); }
    .topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }

    /* ── HEADER / NAV ── */
    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 24px rgba(0,0,0,0.08);
      transition: box-shadow .3s;
    }
    .nav-inner {
      max-width: 1280px;
      margin: auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .logo img { height: 52px; width: auto; }

    .nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
    .nav-links > li { position: relative; }
    .nav-links > li > a {
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--navy);
      text-decoration: none;
      padding: 8px 14px;
      border-radius: 8px;
      transition: background .2s, color .2s;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .nav-links > li > a:hover,
    .nav-links > li > a.active { background: var(--light); color: var(--blue); }

    .dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 0px);
      left: 0;
      background: white;
      border: 1px solid #e2edf7;
      border-radius: 12px;
      min-width: 200px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
      overflow: hidden;
      z-index: 100;
    }
    .nav-links > li:hover .dropdown { display: block; }
    .dropdown a {
      display: block;
      padding: 12px 18px;
      color: var(--navy);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: background .15s;
    }
    .dropdown a:hover { background: var(--light); color: var(--blue); }

    .nav-cta {
      background: var(--grad);
      color: white !important;
      padding: 10px 20px !important;
      border-radius: 50px !important;
      font-weight: 700 !important;
      font-size: 0.84rem !important;
    }
    .nav-cta:hover { opacity: .9; background: var(--grad) !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all .3s;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 92vh;
      background: var(--grad2);
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(0,212,200,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 20%, rgba(37,99,168,0.2) 0%, transparent 60%);
    }
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,212,200,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,200,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    /* animated moving dots */
    .hero-particles { position: absolute; inset: 0; overflow: hidden; }
    .particle {
      position: absolute;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--teal);
      opacity: .25;
      animation: float linear infinite;
    }

    @keyframes float {
      0%   { transform: translateY(0) translateX(0); opacity: .25; }
      50%  { opacity: .5; }
      100% { transform: translateY(-120vh) translateX(40px); opacity: 0; }
    }

    .hero-inner {
      position: relative;
      max-width: 1280px;
      margin: auto;
      padding: 80px 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,212,200,0.12);
      border: 1px solid rgba(0,212,200,0.3);
      color: var(--teal);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 8px 16px;
      border-radius: 50px;
      margin-bottom: 24px;
      font-family: 'Space Mono', monospace;
    }
    .hero-tag::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--teal);
      animation: blink 1.4s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      line-height: 1.0;
      color: white;
      letter-spacing: .02em;
    }
    .hero h1 .accent { color: var(--teal); }

    .hero-sub {
      margin-top: 20px;
      color: rgba(255,255,255,0.65);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 480px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      margin-top: 36px;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--grad);
      color: white;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.92rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 8px 24px rgba(0,212,200,0.3);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,212,200,0.4); }

    .btn-outline {
      border: 2px solid rgba(255,255,255,0.3);
      color: white;
      padding: 13px 28px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.92rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: border-color .2s, background .2s;
    }
    .btn-outline:hover { border-color: var(--teal); background: rgba(0,212,200,0.08); }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 48px;
      flex-wrap: wrap;
    }
    .hero-stat { text-align: left; }
    .hero-stat .num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem;
      color: var(--teal);
      line-height: 1;
    }
    .hero-stat .label {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.55);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-top: 2px;
    }

    /* Hero right — visual card */
    .hero-visual {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: flex-end;
    }
    .hero-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      padding: 24px 28px;
      color: white;
      backdrop-filter: blur(8px);
      width: 100%;
      max-width: 360px;
      transition: transform .3s;
    }
    .hero-card:hover { transform: translateY(-4px); }
    .card-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      background: var(--grad);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 14px;
    }
    .hero-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
    .hero-card p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

    .hero-card.featured {
      background: var(--grad);
      border-color: transparent;
      box-shadow: 0 16px 40px rgba(0,212,200,0.25);
    }
    .hero-card.featured .card-icon { background: rgba(255,255,255,0.2); }

    /* ── TRACK BAR ── */
    .track-bar {
      background: white;
      padding: 0;
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }
    .track-inner {
      max-width: 1280px;
      margin: auto;
      padding: 0 24px;
      display: flex;
      align-items: stretch;
    }
    .track-label {
      background: var(--grad);
      color: white;
      padding: 0 28px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 0.88rem;
      white-space: nowrap;
      letter-spacing: .04em;
    }
    .track-form {
      display: flex;
      flex: 1;
      align-items: center;
      gap: 0;
    }
    .track-form input {
      flex: 1;
      border: none;
      padding: 22px 24px;
      font-size: 0.95rem;
      font-family: 'Sora', sans-serif;
      outline: none;
      color: var(--dark);
    }
    .track-form button {
      background: var(--navy);
      color: white;
      border: none;
      padding: 22px 32px;
      font-weight: 700;
      font-size: 0.9rem;
      cursor: pointer;
      font-family: 'Sora', sans-serif;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background .2s;
    }
    .track-form button:hover { background: var(--blue); }

    /* ── SECTIONS ── */
    section { padding: 96px 0; }
    .container { max-width: 1280px; margin: auto; padding: 0 24px; }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--blue);
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-family: 'Space Mono', monospace;
      margin-bottom: 14px;
    }
    .section-tag::before {
      content: '';
      display: block;
      width: 20px; height: 2px;
      background: var(--teal);
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: .02em;
      color: var(--dark);
      line-height: 1.1;
    }
    .section-title .accent { color: var(--blue); }
    .section-sub {
      color: var(--gray);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 540px;
      margin-top: 12px;
    }

    /* ── ABOUT ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-visual {
      position: relative;
    }
    .about-img-wrap {
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: var(--grad2);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-img-wrap .big-icon {
      font-size: 8rem;
      opacity: .15;
      color: var(--teal);
    }
    .about-badge {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: var(--grad);
      color: white;
      border-radius: 20px;
      padding: 24px 28px;
      box-shadow: 0 12px 32px rgba(0,180,216,0.35);
    }
    .about-badge .big { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; line-height: 1; }
    .about-badge .small { font-size: 0.78rem; opacity: .85; }

    .about-features { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
    .feature-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .feature-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: var(--light);
      color: var(--blue);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .feature-text h4 { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 4px; }
    .feature-text p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

    /* ── SERVICES ── */
    .services-section { background: var(--offwhite); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .service-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      transition: transform .3s, box-shadow .3s;
      cursor: pointer;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
    .service-img {
      height: 200px;
      background: var(--grad2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      color: var(--teal);
      opacity: .7;
      position: relative;
      overflow: hidden;
    }
    .service-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--grad);
      opacity: .15;
    }
    .service-body { padding: 28px 24px; }
    .service-tag {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 10px;
      font-family: 'Space Mono', monospace;
    }
    .service-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .service-body p { font-size: 0.87rem; color: var(--gray); line-height: 1.7; }
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 18px;
      color: var(--blue);
      font-weight: 700;
      font-size: 0.85rem;
      text-decoration: none;
      transition: gap .2s;
    }
    .service-link:hover { gap: 10px; }

    /* ── PARTNERS ── */
    .partners-section { padding: 48px 0; background: white; border-top: 1px solid #eef4fb; border-bottom: 1px solid #eef4fb; }
    .partners-label { text-align: center; font-size: 0.8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); margin-bottom: 32px; font-family: 'Space Mono', monospace; }
    .partners-track {
      overflow: hidden;
      position: relative;
    }
    .partners-track::before,
    .partners-track::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 80px;
      z-index: 2;
    }
    .partners-track::before { left: 0; background: linear-gradient(90deg, white, transparent); }
    .partners-track::after  { right: 0; background: linear-gradient(-90deg, white, transparent); }
    .partners-scroll {
      display: flex;
      gap: 64px;
      animation: scroll 22s linear infinite;
      width: max-content;
    }
    @keyframes scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
    .partner-item {
      display: flex;
      align-items: center;
      gap: 12px;
      white-space: nowrap;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--navy);
      opacity: .55;
      transition: opacity .2s;
    }
    .partner-item:hover { opacity: 1; }
    .partner-item i { font-size: 1.4rem; color: var(--blue); }

    /* ── STATS ── */
    .stats-section {
      background: var(--grad2);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .stats-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(0,212,200,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,200,0.03) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      position: relative;
    }
    .stat-item {
      text-align: center;
      padding: 40px 20px;
      border-right: 1px solid rgba(255,255,255,0.06);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      line-height: 1;
      color: var(--teal);
    }
    .stat-suffix { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--teal); }
    .stat-label { color: rgba(255,255,255,0.55); font-size: 0.82rem; text-transform: uppercase; letter-spacing: .08em; margin-top: 8px; }

    /* ── HOW IT WORKS ── */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 56px;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 40px;
      left: calc(12.5% + 20px);
      right: calc(12.5% + 20px);
      height: 2px;
      background: linear-gradient(90deg, var(--teal), var(--blue));
      z-index: 0;
    }
    .step-card {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .step-num {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: white;
      border: 3px solid var(--light);
      margin: 0 auto 20px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      color: var(--blue);
      position: relative;
      transition: all .3s;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    }
    .step-card:hover .step-num {
      background: var(--grad);
      border-color: transparent;
      color: white;
      transform: scale(1.08);
    }
    .step-card h4 { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 8px; }
    .step-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

    /* ── TESTIMONIALS ── */
    .testimonials-section { background: var(--offwhite); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .testi-card {
      background: white;
      border-radius: 20px;
      padding: 32px 28px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      position: relative;
      border: 1px solid #eef4fb;
      transition: transform .3s, box-shadow .3s;
    }
    .testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
    .testi-card .quote { font-size: 2.5rem; color: var(--teal); line-height: 1; margin-bottom: 16px; }
    .testi-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid #eef4fb;
    }
    .author-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--grad);
      display: flex; align-items: center; justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .testi-author strong { font-size: 0.9rem; display: block; }
    .testi-author span { font-size: 0.78rem; color: var(--gray); }
    .stars { color: #f59e0b; font-size: 0.8rem; margin-bottom: 4px; }

    /* ── CTA ── */
    .cta-section {
      background: var(--grad);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-section h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      color: white;
      letter-spacing: .03em;
      position: relative;
    }
    .cta-section p { color: rgba(255,255,255,0.8); font-size: 1rem; margin: 16px auto; max-width: 500px; position: relative; }
    .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; position: relative; }
    .btn-white {
      background: white;
      color: var(--blue);
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.92rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }
    .btn-white:hover { transform: translateY(-2px); }
    .btn-ghost-white {
      border: 2px solid rgba(255,255,255,0.5);
      color: white;
      padding: 13px 28px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.92rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: border-color .2s;
    }
    .btn-ghost-white:hover { border-color: white; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.65);
    }
    .footer-top {
      max-width: 1280px;
      margin: auto;
      padding: 72px 24px 48px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
    }
    .footer-brand img { height: 52px; margin-bottom: 20px; filter: brightness(1.1); }
    .footer-brand p { font-size: 0.87rem; line-height: 1.7; }
    .footer-socials { display: flex; gap: 12px; margin-top: 24px; }
    .footer-socials a {
      width: 38px; height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 0.9rem;
      transition: all .2s;
    }
    .footer-socials a:hover { background: var(--teal); border-color: var(--teal); color: white; }

    .footer-col h4 {
      color: white;
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 12px;
    }
    .footer-col h4::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 28px; height: 2px;
      background: var(--teal);
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: 0.87rem;
      transition: color .2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .footer-col ul a:hover { color: var(--teal); }
    .footer-col .contact-item {
      display: flex;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 0.87rem;
    }
    .footer-col .contact-item i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      max-width: 1280px;
      margin: auto;
      padding: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.82rem;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom a { color: var(--teal); text-decoration: none; }

    /* ── MOBILE ── */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
      .testimonials-grid { grid-template-columns: 1fr 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: white; padding: 20px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 999; }
      .nav-links.open { display: flex; }
      .nav-links > li > a { font-size: 1rem; padding: 14px 16px; }
      .dropdown { position: static; box-shadow: none; border: none; background: var(--offwhite); border-radius: 8px; margin-top: 4px; }
      .hamburger { display: flex; }
      .topbar-left { display: none; }

      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { align-items: flex-start; }
      .hero-card { max-width: 100%; }
      .about-grid { grid-template-columns: 1fr; }
      .about-badge { right: 0; bottom: -12px; }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid::before { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 36px; }
      .track-inner { flex-direction: column; }
      .track-label { padding: 14px 20px; }
      .track-form { flex-direction: column; }
      .track-form input { width: 100%; }
      .track-form button { width: 100%; justify-content: center; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .steps-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 20px; }
    }

    /* ── SCROLL ANIMATION ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* floating whatsapp */
    .whatsapp-float {
      position: fixed;
      bottom: 100px;
      right: 28px;
      width: 56px; height: 56px;
      background: #25d366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: white;
      font-size: 1.6rem;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(37,211,102,.45);
      z-index: 999;
      animation: pulse-green 2s ease-in-out infinite;
    }
    @keyframes pulse-green {
      0%,100%{box-shadow:0 8px 24px rgba(37,211,102,.45)}
      50%{box-shadow:0 8px 36px rgba(37,211,102,.7)}
    }

    /* ── FLOATING ENQUIRY BUTTON ── */
    .enquiry-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }
    .enquiry-fab {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--grad);
      color: white;
      border: none;
      cursor: pointer;
      font-size: 1.4rem;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 24px rgba(37,99,168,.4);
      animation: pulse-blue 2s ease-in-out infinite;
      transition: transform .2s;
    }
    .enquiry-fab:hover { transform: scale(1.1); }
    @keyframes pulse-blue {
      0%,100%{box-shadow:0 8px 24px rgba(37,99,168,.4)}
      50%{box-shadow:0 8px 36px rgba(0,212,200,.55)}
    }
    .enquiry-label {
      background: var(--dark);
      color: white;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: .06em;
      padding: 5px 12px;
      border-radius: 50px;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      transform: translateX(10px);
      transition: opacity .2s, transform .2s;
    }
    .enquiry-float:hover .enquiry-label { opacity: 1; transform: translateX(0); }

    /* ── ENQUIRY / CONTACT POPUP ── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(13,27,62,.7);
      backdrop-filter: blur(6px);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }
    .modal-overlay.active { opacity: 1; pointer-events: all; }

    .modal-box {
      background: white;
      border-radius: 24px;
      width: 100%;
      max-width: 520px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 24px 80px rgba(0,0,0,0.25);
      transform: translateY(30px) scale(.97);
      transition: transform .35s cubic-bezier(.34,1.56,.64,1);
      position: relative;
    }
    .modal-overlay.active .modal-box { transform: translateY(0) scale(1); }

    .modal-header {
      background: var(--grad2);
      border-radius: 24px 24px 0 0;
      padding: 28px 32px 24px;
      position: relative;
    }
    .modal-header h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      color: white;
      letter-spacing: .04em;
    }
    .modal-header p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-top: 4px; }
    .modal-tabs {
      display: flex;
      gap: 8px;
      margin-top: 16px;
    }
    .modal-tab {
      padding: 8px 18px;
      border-radius: 50px;
      border: 2px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.7);
      font-size: 0.8rem;
      font-weight: 700;
      cursor: pointer;
      transition: all .2s;
      background: transparent;
      font-family: 'Sora', sans-serif;
    }
    .modal-tab.active { background: var(--teal); border-color: var(--teal); color: white; }
    .modal-close {
      position: absolute;
      top: 16px; right: 20px;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: none;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .modal-close:hover { background: rgba(255,255,255,0.25); }

    .modal-body { padding: 28px 32px 32px; }
    .modal-form { display: none; }
    .modal-form.active { display: block; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: .06em;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      border: 1.5px solid #dde8f5;
      border-radius: 10px;
      padding: 11px 14px;
      font-size: 0.9rem;
      font-family: 'Sora', sans-serif;
      color: var(--dark);
      transition: border-color .2s, box-shadow .2s;
      outline: none;
      background: #fafcff;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 0 3px rgba(0,180,216,.12);
      background: white;
    }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7c93' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

    .form-submit {
      width: 100%;
      padding: 14px;
      background: var(--grad);
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 0.95rem;
      font-weight: 700;
      font-family: 'Sora', sans-serif;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: opacity .2s, transform .2s;
      margin-top: 8px;
    }
    .form-submit:hover { opacity: .9; transform: translateY(-1px); }

    .form-success {
      text-align: center;
      padding: 24px 0;
      display: none;
    }
    .form-success .success-icon {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg,#00d4c8,#2563a8);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      font-size: 1.8rem;
      color: white;
    }
    .form-success h4 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .form-success p { color: var(--gray); font-size: 0.88rem; }

    /* ── BECOME A PARTNER SECTION ── */
    .partner-section {
      background: var(--offwhite);
      position: relative;
      overflow: hidden;
    }
    .partner-section::before {
      content: '';
      position: absolute;
      right: -120px; top: -120px;
      width: 480px; height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,212,200,.08) 0%, transparent 70%);
    }
    .partner-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .partner-benefits { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
    .benefit-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px;
      background: white;
      border-radius: 16px;
      border: 1px solid #eef4fb;
      transition: box-shadow .25s, transform .25s;
    }
    .benefit-item:hover { box-shadow: 0 8px 28px rgba(0,0,0,.07); transform: translateX(4px); }
    .benefit-num {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: var(--grad);
      color: white;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .benefit-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .benefit-item p  { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

    .partner-form-card {
      background: white;
      border-radius: 24px;
      padding: 40px 36px;
      box-shadow: 0 12px 48px rgba(0,0,0,.08);
      border: 1px solid #eef4fb;
      position: relative;
    }
    .partner-form-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--grad);
      border-radius: 24px 24px 0 0;
    }
    .partner-form-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      color: var(--dark);
      letter-spacing: .03em;
      margin-bottom: 6px;
    }
    .partner-form-card > p { font-size: 0.87rem; color: var(--gray); margin-bottom: 24px; }

    @media (max-width: 768px) {
      .partner-grid { grid-template-columns: 1fr; gap: 40px; }
      .form-row { grid-template-columns: 1fr; }
      .modal-body { padding: 20px 20px 28px; }
      .modal-header { padding: 24px 20px 20px; }
    }

    /* ══════════════════════════════════
       SHIPMENT WIZARD SECTION
    ══════════════════════════════════ */
    .wizard-section {
      background: var(--grad2);
      position: relative;
      overflow: hidden;
      padding: 96px 0;
    }
    .wizard-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,212,200,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,200,0.04) 1px, transparent 1px);
      background-size: 56px 56px;
    }
    .wizard-section::after {
      content: '';
      position: absolute;
      right: -180px; bottom: -180px;
      width: 520px; height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,212,200,.1) 0%, transparent 65%);
    }

    .wizard-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
    .wizard-header .section-tag { color: var(--teal); justify-content: center; }
    .wizard-header .section-title { color: white; }
    .wizard-header .section-sub  { color: rgba(255,255,255,.6); margin: 12px auto 0; }

    /* progress stepper */
    .wz-stepper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
    }
    .wz-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      position: relative;
      flex: 1;
      max-width: 160px;
    }
    .wz-step::after {
      content: '';
      position: absolute;
      top: 22px;
      left: calc(50% + 22px);
      right: calc(-50% + 22px);
      height: 2px;
      background: rgba(255,255,255,0.15);
      transition: background .4s;
      z-index: 0;
    }
    .wz-step:last-child::after { display: none; }
    .wz-step.done::after { background: var(--teal); }

    .wz-step-circle {
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,.2);
      background: rgba(255,255,255,.07);
      color: rgba(255,255,255,.45);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      font-weight: 700;
      transition: all .35s;
      position: relative;
      z-index: 1;
    }
    .wz-step.active .wz-step-circle {
      background: var(--teal);
      border-color: var(--teal);
      color: white;
      box-shadow: 0 0 0 6px rgba(0,212,200,.2);
    }
    .wz-step.done .wz-step-circle {
      background: var(--blue);
      border-color: var(--blue);
      color: white;
    }
    .wz-step-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
      text-align: center;
      transition: color .35s;
      white-space: nowrap;
    }
    .wz-step.active .wz-step-label { color: var(--teal); }
    .wz-step.done  .wz-step-label  { color: rgba(255,255,255,.65); }

    /* wizard card */
    .wz-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0,0,0,.25);
      position: relative;
      z-index: 1;
      max-width: 880px;
      margin: 0 auto;
    }
    .wz-card-header {
      background: linear-gradient(135deg, var(--light) 0%, #dbeeff 100%);
      padding: 24px 36px;
      display: flex;
      align-items: center;
      gap: 16px;
      border-bottom: 1px solid #dce9f8;
    }
    .wz-card-header .step-badge {
      width: 48px; height: 48px;
      border-radius: 14px;
      background: var(--grad);
      color: white;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .wz-card-header h4 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      letter-spacing: .04em;
      color: var(--dark);
    }
    .wz-card-header p { font-size: 0.82rem; color: var(--gray); margin-top: 2px; }

    .wz-card-body { padding: 32px 36px 28px; }
    .wz-panel { display: none; }
    .wz-panel.active { display: block; animation: fadeSlide .35s ease; }
    @keyframes fadeSlide { from{opacity:0;transform:translateX(18px)} to{opacity:1;transform:none} }

    /* service type selector */
    .service-picker {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 24px;
    }
    .svc-option {
      border: 2px solid #dde8f5;
      border-radius: 14px;
      padding: 18px 14px;
      text-align: center;
      cursor: pointer;
      transition: all .2s;
      background: #fafcff;
    }
    .svc-option:hover { border-color: var(--cyan); background: var(--light); }
    .svc-option.selected { border-color: var(--teal); background: linear-gradient(135deg,rgba(0,212,200,.08),rgba(37,99,168,.06)); }
    .svc-option i { font-size: 1.8rem; color: var(--blue); display: block; margin-bottom: 8px; }
    .svc-option .svc-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
    .svc-option .svc-desc { font-size: 0.72rem; color: var(--gray); margin-top: 4px; }
    .svc-option.selected i { color: var(--teal); }

    /* package type pills */
    .pkg-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 8px;
    }
    .pkg-pill {
      padding: 8px 18px;
      border: 2px solid #dde8f5;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--navy);
      cursor: pointer;
      transition: all .2s;
      background: #fafcff;
    }
    .pkg-pill:hover { border-color: var(--cyan); }
    .pkg-pill.selected { border-color: var(--teal); background: rgba(0,212,200,.1); color: var(--blue); }

    /* summary box */
    .wz-summary {
      background: var(--offwhite);
      border: 1px solid #dde8f5;
      border-radius: 16px;
      padding: 24px;
      margin-bottom: 20px;
    }
    .wz-summary h5 {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--blue);
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 1px solid #dde8f5;
    }
    .summary-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 24px;
    }
    .summary-item label { font-size: 0.72rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 2px; }
    .summary-item span  { font-size: 0.9rem; font-weight: 700; color: var(--dark); }

    /* estimated cost pill */
    .cost-estimate {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--grad);
      color: white;
      padding: 12px 22px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 20px;
    }

    /* wizard nav buttons */
    .wz-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
      border-top: 1px solid #eef4fb;
      margin-top: 8px;
    }
    .wz-btn-back {
      display: flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: 2px solid #dde8f5;
      color: var(--navy);
      padding: 11px 24px;
      border-radius: 50px;
      font-size: 0.88rem;
      font-weight: 700;
      font-family: 'Sora', sans-serif;
      cursor: pointer;
      transition: all .2s;
    }
    .wz-btn-back:hover { border-color: var(--navy); }
    .wz-btn-next {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--grad);
      color: white;
      padding: 13px 32px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 700;
      font-family: 'Sora', sans-serif;
      border: none;
      cursor: pointer;
      transition: opacity .2s, transform .2s;
      box-shadow: 0 6px 20px rgba(0,180,216,.25);
    }
    .wz-btn-next:hover { opacity: .92; transform: translateY(-1px); }
    .wz-step-counter { font-size: 0.78rem; color: var(--gray); font-family: 'Space Mono', monospace; }

    /* success panel */
    .wz-success {
      text-align: center;
      padding: 40px 24px;
    }
    .wz-success-icon {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: var(--grad);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-size: 2.2rem;
      color: white;
      box-shadow: 0 12px 32px rgba(0,180,216,.3);
    }
    .wz-success h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--dark); letter-spacing: .04em; margin-bottom: 10px; }
    .wz-success p  { color: var(--gray); font-size: 0.9rem; max-width: 400px; margin: 0 auto; line-height: 1.7; }
    .wz-awb {
      display: inline-block;
      background: var(--light);
      border: 2px dashed var(--cyan);
      border-radius: 12px;
      padding: 14px 28px;
      margin: 20px auto;
      font-family: 'Space Mono', monospace;
      font-size: 1.1rem;
      color: var(--navy);
      font-weight: 700;
      letter-spacing: .12em;
    }

    @media (max-width: 768px) {
      .wz-card-body   { padding: 20px 18px 20px; }
      .wz-card-header { padding: 18px 20px; }
      .service-picker { grid-template-columns: 1fr 1fr; }
      .summary-grid   { grid-template-columns: 1fr; }
      .wz-stepper     { gap: 0; }
      .wz-step-label  { display: none; }
      .wz-step        { max-width: 80px; }
    }
    @media (max-width: 480px) {
      .service-picker { grid-template-columns: 1fr; }
    }

    /* ── STORE LOCATOR ── */
    .store-locator-section {
      background: var(--offwhite);
      padding: 96px 0;
    }

    .store-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .store-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .store-search input {
      width: 100%;
      padding: 14px;
      border-radius: 10px;
      border: 1px solid #dde8f5;
      margin-bottom: 10px;
    }

    .store-search button {
      width: 100%;
      padding: 12px;
      border: none;
      background: var(--grad);
      color: white;
      border-radius: 50px;
      font-weight: 700;
      cursor: pointer;
      margin-bottom: 20px;
    }

    .store-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .store-item {
      background: white;
      padding: 16px;
      border-radius: 12px;
      border: 1px solid #eef4fb;
      transition: 0.2s;
    }

    .store-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }

    .store-map {
      height: 350px;
      border-radius: 16px;
      overflow: hidden;
    }

    /* Mobile */
    @media (max-width: 768px) {
      .store-grid {
        grid-template-columns: 1fr;
      }
    }

    .image-slider {
      position: relative;
      width: 100%;
      height: 70vh;
      overflow: hidden;
    }

    .slider-container {
      position: relative;
      height: 100%;
    }

    .slides {
      display: flex;
      height: 100%;
    }

    .slide {
      min-width: 100%;
      position: relative;
      display: none;
    }

    .slide.active {
      display: block;
    }

    .slide img {
      width: 100%;
      height: 70vh;
      object-fit: cover;
    }

    /* Overlay */
    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 80px;
      color: white;
    }

    .overlay h2 {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .overlay p {
      margin-top: 10px;
      font-size: 1.1rem;
    }

    /* Controls */
    .slider-controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      transform: translateY(-50%);
    }

    .slider-controls span {
      font-size: 2rem;
      color: white;
      cursor: pointer;
      background: rgba(0,0,0,0.4);
      padding: 10px 15px;
      border-radius: 50%;
    }

    .about-img-wrap {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: black;
    }

    /* Video styling */
    .about-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Optional overlay for better readability */
    .about-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(13,27,62,0.2);
    }

    /* Service Image Container */
    .service-img {
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    /* Image styling */
    .service-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    /* Hover zoom effect (premium feel) */
    .service-card:hover .service-img img {
      transform: scale(1.08);
    }

    /* Optional overlay gradient */
    .service-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,27,62,0.4), transparent);
    }

    .industries-section {
      padding: 96px 0;
      background: var(--offwhite);
    }
    /* GRID */
    .industries-grid {
      display: grid;
      grid-template-columns: 1fr 3fr; /* 3:9 ratio */
      gap: 40px;
    }

    /* LEFT */
    .industries-list {
      background: white;
      border-radius: 16px;
      padding: 16px;
      border: 1px solid #eef4fb;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .industry-item {
      padding: 12px 14px;
      border-radius: 10px;
      cursor: pointer;
      font-weight: 600;
      color: var(--dark);
      transition: all 0.2s;
    }

    .industry-item:hover {
      background: var(--light);
    }

    .industry-item.active {
      background: var(--grad);
      color: white;
    }

    /* RIGHT */
    .industry-content {
      background: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    }

    .industry-content-inner {
      display: grid;
      grid-template-columns: 1.2fr 1.8fr;
      gap: 30px;
      align-items: center;
    }

    /* IMAGE */
    .industry-image img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 16px;
    }

    /* TEXT */
    .industry-text h3 {
      font-size: 1.8rem;
      margin-bottom: 10px;
    }

    .industry-text .short {
      font-weight: 600;
      color: var(--blue);
      margin-bottom: 10px;
    }

    .industry-text .desc {
      color: var(--gray);
      line-height: 1.7;
      margin-bottom: 14px;
    }

    .industry-text ul {
      padding-left: 18px;
      color: var(--dark);
    }

    .industry-text li {
      margin-bottom: 6px;
    }

    #industry-full-desc {
      margin-top: 50px;
      text-align: justify !important;
      color: var(--gray);
    }

    .industry-full-desc {
      margin-top: 50px;
      text-align: justify !important;
      color: var(--gray);
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .industries-grid {
        grid-template-columns: 1fr;
      }

      .industry-content-inner {
        grid-template-columns: 1fr;
      }
    }

/* ══════════════════════════════════════════════════════════
   ADDED FOR THE PHP + DATABASE BUILD
   (tracking results panel, form error banners, honeypot hiding,
   store search empty-state — none of this existed in the static
   design since those forms didn't have a backend yet)
   ══════════════════════════════════════════════════════════ */

/* Honeypot spam-trap field: invisible to real visitors, still in the DOM for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  display: none;
  background: #fdecec;
  color: #c53030;
  border: 1px solid #f5b5b5;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 4px 0 16px;
}
.form-error.show { display: block; }

.form-submit[disabled],
.wz-btn-next[disabled] { opacity: .6; cursor: not-allowed; }

/* ── Track results panel ── */
.track-result {
  display: none;
  background: white;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.track-result.show { display: block; }
.track-result-inner {
  padding: 24px 0 32px;
  border-top: 1px dashed #dbe7f3;
}
.track-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: 0.9rem;
  padding: 12px 0;
}
.track-spinner {
  width: 18px; height: 18px;
  border: 3px solid var(--light);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: track-spin .7s linear infinite;
}
@keyframes track-spin { to { transform: rotate(360deg); } }

.track-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.track-awb {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}
.track-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--grad);
  color: white;
}
.track-status-badge.is-delivered { background: linear-gradient(135deg,#00b09b,#1a3a6e); }
.track-status-badge.is-cancelled { background: linear-gradient(135deg,#e53e3e,#742a2a); }

.track-route {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.track-route i { color: var(--teal); }

.track-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  background: var(--offwhite);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 22px;
}
.track-meta-grid div label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray);
  margin-bottom: 4px;
}
.track-meta-grid div span { font-weight: 600; color: var(--dark); font-size: 0.9rem; }

.track-timeline { list-style: none; padding: 0; margin: 0; }
.track-timeline li {
  position: relative;
  padding: 0 0 22px 28px;
  border-left: 2px solid var(--light);
}
.track-timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.track-timeline li::before {
  content: '';
  position: absolute;
  left: -7px; top: 2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--grad);
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--teal);
}
.track-timeline li:first-child::before { background: var(--navy); box-shadow: 0 0 0 2px var(--navy); }
.track-timeline .tt-status { font-weight: 700; color: var(--dark); font-size: 0.9rem; }
.track-timeline .tt-meta { color: var(--gray); font-size: 0.8rem; margin-top: 2px; }

.track-not-found {
  text-align: center;
  padding: 20px 12px;
}
.track-not-found p { color: var(--gray); margin-bottom: 14px; font-size: 0.92rem; }
.track-partner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background .2s;
}
.track-partner-btn:hover { background: var(--blue); }

/* ── Store locator: filtered-out items ── */
.store-item.is-hidden { display: none; }

@media (max-width: 768px) {
  .track-meta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   SUB-PAGE COMPONENTS
   Shared by district-mother-hub.php and businessenquiry.php
   ========================================================= */

/* ── Page hero (dark, for sales/pitch pages) ── */
.page-hero {
  background: var(--grad2);
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: .5;
}
.page-hero .inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; padding: 0 24px; }
.page-hero .hero-tag { margin: 0 auto 22px; justify-content: center; display: inline-flex; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  color: white;
  letter-spacing: .01em;
}
.page-hero h1 .accent { color: var(--teal); }
.page-hero p.lead {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 20px auto 34px;
  max-width: 620px;
}
.page-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}
.page-hero-stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 2.1rem; color: var(--teal); }
.page-hero-stat .label { color: rgba(255,255,255,.6); font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
@media (max-width: 768px) {
  .page-hero { padding: 130px 0 60px; }
  .page-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
}

/* ── Urgency / scarcity banner ── */
.urgency-banner {
  background: #fdecec;
  border-top: 3px solid #d64545;
  border-bottom: 3px solid #d64545;
  color: #a52424;
  text-align: center;
  padding: 16px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}
.urgency-banner strong { color: #7a1717; }

/* ── Generic light section wrapper used by both pages ── */
.pitch-section { padding: 80px 0; }
.pitch-section.alt { background: var(--offwhite); }
.pitch-section.dark { background: var(--grad2); }
.pitch-section.dark .section-title { color: white; }
.pitch-section.dark .section-tag { color: var(--teal); }
.pitch-section.dark p.section-sub { color: rgba(255,255,255,.65); }

/* ── Loss-aversion / risk cards (red accent) ── */
.loss-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.loss-card {
  background: white;
  border: 1px solid #f7dede;
  border-top: 3px solid #d64545;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}
.loss-card .loss-icon { font-size: 1.8rem; margin-bottom: 10px; }
.loss-card h4 { font-size: .95rem; color: var(--dark); margin-bottom: 8px; }
.loss-card p { font-size: .82rem; color: var(--gray); line-height: 1.6; margin-bottom: 12px; min-height: 58px; }
.loss-card .loss-amount { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #c53030; }

/* ── Investment / capacity / phase cards ── */
.invest-grid, .capacity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.invest-card, .capacity-card {
  background: white;
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(13,27,62,0.06);
}
.invest-card .invest-label, .capacity-card .cap-label {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); font-weight: 700; margin-bottom: 10px;
}
.invest-card .invest-amount { font-family: 'Bebas Neue', sans-serif; font-size: 2.1rem; color: #c53030; }
.invest-card .invest-amount.refundable { color: var(--teal); }
.invest-card .invest-note { font-size: .78rem; color: var(--gray); margin-top: 6px; }
.capacity-card .cap-amount { font-family: 'Bebas Neue', sans-serif; font-size: 2.3rem; color: var(--blue); }
.capacity-card .cap-note { font-size: .8rem; color: var(--gray); margin-top: 6px; line-height: 1.5; }

.invest-highlight {
  margin-top: 22px;
  background: var(--light);
  border: 2px solid var(--teal);
  border-radius: 16px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.invest-highlight .label { font-weight: 700; color: var(--navy); font-size: 1rem; }
.invest-highlight .value { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--navy); }

/* ── Income projection phase cards ── */
.phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.phase-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 26px 22px;
}
.phase-card .phase-tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); font-weight: 700; margin-bottom: 6px; }
.phase-card h4 { color: white; font-size: 1.15rem; margin-bottom: 16px; }
.phase-card .line-item { display: flex; justify-content: space-between; font-size: .84rem; color: rgba(255,255,255,.75); padding: 6px 0; border-bottom: 1px dashed rgba(255,255,255,.12); }
.phase-card .line-item .plus { color: var(--teal); }
.phase-card .line-item .minus { color: #ff9b9b; }
.phase-card .phase-total {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.2);
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--teal); text-align: center;
}
.phase-card .phase-total-label { display:block; font-family:'Sora',sans-serif; font-size: .68rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }

/* ── Loyalty bonus highlight ── */
.bonus-box {
  background: white; border-radius: 20px; padding: 32px; margin-top: 30px;
  box-shadow: 0 4px 24px rgba(13,27,62,0.07);
}
.bonus-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 20px; }
.bonus-metric { background: var(--offwhite); border-radius: 14px; padding: 20px; text-align: center; }
.bonus-metric.highlight { background: var(--grad2); color: white; }
.bonus-metric .bm-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--navy); }
.bonus-metric.highlight .bm-num { color: var(--teal); }
.bonus-metric .bm-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray); margin-top: 4px; }
.bonus-metric.highlight .bm-label { color: rgba(255,255,255,.65); }
.bonus-metric .bm-sub { font-size: .78rem; color: var(--gray); margin-top: 4px; }
.bonus-note {
  margin-top: 20px; background: var(--offwhite); border-left: 3px solid var(--teal);
  border-radius: 8px; padding: 14px 18px; font-size: .85rem; color: var(--navy); line-height: 1.7;
}

/* ── Month-by-month timeline ── */
.timeline { position: relative; max-width: 640px; margin: 40px auto 0; padding-left: 60px; }
.timeline::before { content: ''; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: var(--light); }
.timeline-item { position: relative; margin-bottom: 22px; }
.timeline-dot {
  position: absolute; left: -60px; top: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: white; border: 2px solid var(--teal); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace; font-weight: 700; font-size: .7rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.timeline-item.milestone .timeline-dot { background: var(--grad); border-color: transparent; color: white; font-size: 1rem; }
.timeline-card {
  background: white; border: 1px solid #eef4fb; border-radius: 14px; padding: 18px 22px;
  box-shadow: 0 2px 14px rgba(13,27,62,0.05);
}
.timeline-item.milestone .timeline-card { border: 1px solid var(--teal); background: var(--light); }
.timeline-card .tl-tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--blue); font-weight: 700; }
.timeline-card h5 { color: var(--dark); font-size: 1rem; margin: 4px 0 6px; }
.timeline-card p.tl-desc { font-size: .82rem; color: var(--gray); margin-bottom: 8px; }
.timeline-card .tl-amount { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--teal); }

/* ── Decision comparison (✅ vs ❌) ── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.compare-col { border-radius: 18px; padding: 28px 26px; }
.compare-col.yes { background: #eafff9; border: 1px solid #b6ecdf; }
.compare-col.no { background: #fdecec; border: 1px solid #f5c6c6; }
.compare-col h4 { font-size: 1.05rem; margin-bottom: 18px; }
.compare-col.yes h4 { color: #0a7d5f; }
.compare-col.no h4 { color: #a52424; }
.compare-col ul { list-style: none; }
.compare-col li { font-size: .87rem; line-height: 1.7; padding: 8px 0; border-bottom: 1px dashed rgba(0,0,0,0.06); color: var(--dark); }
.compare-col li:last-child { border-bottom: none; }

/* ── Pitch page application / enquiry form card ── */
.pitch-form-section { background: var(--offwhite); padding: 80px 0; }
.pitch-form-card {
  background: white; border-radius: 22px; padding: 40px; max-width: 640px; margin: 0 auto;
  box-shadow: 0 10px 40px rgba(13,27,62,0.08);
}
.pitch-form-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--navy); letter-spacing: .02em; }
.pitch-form-card > p { color: var(--gray); font-size: .88rem; margin: 6px 0 24px; }
.pitch-disclaimer {
  max-width: 820px; margin: 30px auto 0; text-align: center;
  font-size: .78rem; color: var(--gray); line-height: 1.7; padding: 0 24px;
}

@media (max-width: 900px) {
  .loss-grid { grid-template-columns: repeat(2, 1fr); }
  .invest-grid, .capacity-grid { grid-template-columns: repeat(2, 1fr); }
  .phase-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .loss-grid, .invest-grid, .capacity-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 46px; }
  .timeline-dot { left: -46px; width: 34px; height: 34px; font-size: .62rem; }
}

/* ── Homepage teaser sections (DMH + Business) ── */
.teaser-section { padding: 70px 0; }
.dmh-teaser {
  background: var(--grad2);
  border-radius: 28px;
  margin: 0 24px;
  max-width: 1232px;
  margin-inline: auto;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.dmh-teaser::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.dmh-teaser .teaser-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.dmh-teaser .badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(214,69,69,0.18); border: 1px solid rgba(214,69,69,0.4); color: #ff9b9b;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
}
.dmh-teaser h3 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: white; line-height: 1.1; }
.dmh-teaser h3 .accent { color: var(--teal); }
.dmh-teaser p { color: rgba(255,255,255,.68); font-size: .95rem; line-height: 1.75; margin: 14px 0 22px; max-width: 480px; }
.dmh-teaser-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.dmh-teaser-stats .ts { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 18px; text-align: center; }
.dmh-teaser-stats .ts .num { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--teal); }
.dmh-teaser-stats .ts .label { font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.55); margin-top: 4px; }

.biz-teaser {
  background: white;
  border: 1px solid #eef4fb;
  border-radius: 28px;
  margin: 0 auto;
  max-width: 1232px;
  padding: 56px 48px;
  box-shadow: 0 4px 30px rgba(13,27,62,0.05);
}
.biz-teaser .teaser-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: center; }
.biz-teaser-list { display: grid; gap: 14px; }
.biz-teaser-list .bl-item { display: flex; align-items: flex-start; gap: 12px; }
.biz-teaser-list .bl-item i { color: var(--teal); margin-top: 3px; }
.biz-teaser-list .bl-item span { font-size: .88rem; color: var(--dark); line-height: 1.6; }

@media (max-width: 900px) {
  .dmh-teaser, .biz-teaser { padding: 36px 26px; margin-left: 16px; margin-right: 16px; }
  .dmh-teaser .teaser-inner, .biz-teaser .teaser-inner { grid-template-columns: 1fr; }
}
