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

    :root {
      --navy:       #070E1F;
      --navy-mid:   #0F1A35;
      --blue:       #29ABE2;
      --blue-light: #5BC8F0;
      --white:      #FFFFFF;
      --off-white:  #F8FAFC;
      --gray-100:   #F1F5F9;
      --gray-200:   #E2E8F0;
      --gray-500:   #64748B;
      --gray-700:   #334155;
      --text:       #1E293B;
      --radius:     16px;
      --shadow-lg:  0 20px 60px rgba(0,0,0,0.12);
    }

    html { scroll-behavior: smooth; }

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

    h1, h2, h3, h4 {
      font-family: 'Outfit', sans-serif;
      line-height: 1.05;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 28px 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.35s ease;
    }
    nav.scrolled {
      padding: 16px 56px;
      background: rgba(7, 14, 31, 0.96);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      box-shadow: 0 4px 32px rgba(0,0,0,0.3);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .nav-logo img {
      height: 44px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
      align-items: center;
    }
    .nav-links a {
      color: rgba(255,255,255,0.70);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.2px;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      background: var(--blue) !important;
      color: var(--white) !important;
      padding: 10px 26px !important;
      border-radius: 50px !important;
      font-weight: 600 !important;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
    }
    .nav-cta:hover {
      background: var(--blue-light) !important;
      transform: translateY(-1px) !important;
      box-shadow: 0 6px 24px rgba(41,171,226,0.4) !important;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
    }
    .nav-toggle span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s;
      border-radius: 2px;
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      background: var(--navy);
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 160px 56px 100px;
    }
    .hero-bg-glow {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 75% 50%, rgba(41,171,226,0.28) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(79,142,247,0.12) 0%, transparent 55%);
      pointer-events: none;
    }
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 64px 64px;
      pointer-events: none;
    }
    .hero-content { position: relative; max-width: 860px; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(41,171,226,0.18);
      border: 1px solid rgba(41,171,226,0.35);
      color: var(--blue-light);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 9px 20px;
      border-radius: 50px;
      margin-bottom: 36px;
    }
    .hero-badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--blue-light);
      animation: blink 2s ease-in-out infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.75); }
    }

    .hero-title {
      font-size: clamp(54px, 7.5vw, 100px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.0;
      letter-spacing: -2px;
      margin-bottom: 32px;
    }
    .hero-title .accent { color: var(--blue-light); }

    .hero-sub {
      font-size: 18px;
      color: rgba(255,255,255,0.55);
      max-width: 500px;
      line-height: 1.75;
      margin-bottom: 52px;
      font-weight: 400;
    }

    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

    .btn-primary {
      background: var(--blue);
      color: var(--white);
      padding: 17px 38px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover {
      background: var(--blue-light);
      transform: translateY(-2px);
      box-shadow: 0 10px 36px rgba(41,171,226,0.45);
    }
    .btn-outline {
      color: var(--white);
      padding: 17px 38px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.25s;
      border: 1.5px solid rgba(255,255,255,0.22);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-outline:hover {
      border-color: rgba(255,255,255,0.7);
      background: rgba(255,255,255,0.06);
    }

    .hero-scroll-hint {
      position: absolute;
      bottom: 44px;
      left: 56px;
      display: flex;
      align-items: center;
      gap: 14px;
      color: rgba(255,255,255,0.35);
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
    }
    .scroll-line {
      width: 44px; height: 1px;
      background: linear-gradient(90deg, var(--blue-light), transparent);
    }

    /* ─── TICKER ─── */
    .ticker {
      background: var(--blue);
      padding: 15px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .ticker-track {
      display: inline-flex;
      animation: scroll-ticker 28s linear infinite;
    }
    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 20px;
      color: rgba(255,255,255,0.92);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 0 36px;
    }
    .ticker-item::after {
      content: '◆';
      opacity: 0.45;
      font-size: 7px;
    }
    @keyframes scroll-ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── STATS BAR ─── */
    .stats-bar {
      background: var(--off-white);
      padding: 64px 56px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stat-item {
      text-align: center;
      padding: 24px 16px;
      border-right: 1px solid var(--gray-200);
    }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(44px, 5vw, 68px);
      font-weight: 800;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 10px;
    }
    .stat-number em { color: var(--blue); font-style: normal; }
    .stat-label {
      font-size: 13px;
      color: var(--gray-500);
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    /* ─── SHARED SECTION STYLES ─── */
    section { padding: 110px 56px; }
    .label-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 18px;
    }
    .section-title {
      font-size: clamp(38px, 4.5vw, 62px);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.05;
      letter-spacing: -1.5px;
    }
    .section-sub {
      font-size: 17px;
      color: var(--gray-500);
      line-height: 1.75;
      max-width: 480px;
    }

    /* ─── SERVICES ─── */
    .services { background: var(--white); }
    .services-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
      margin-bottom: 60px;
      flex-wrap: wrap;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .service-card {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      aspect-ratio: 3/4;
      cursor: pointer;
    }
    .service-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      display: block;
    }
    .service-card:hover img { transform: scale(1.06); }

    .card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to top,
        rgba(5,10,25,0.92) 0%,
        rgba(5,10,25,0.40) 45%,
        rgba(5,10,25,0.05) 100%
      );
      transition: background 0.4s;
    }
    .service-card:hover .card-overlay {
      background: linear-gradient(
        to top,
        rgba(5,10,25,0.97) 0%,
        rgba(15,40,120,0.45) 55%,
        rgba(5,10,25,0.10) 100%
      );
    }
    .card-body {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 36px 32px;
    }
    .card-num {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--blue-light);
      margin-bottom: 10px;
    }
    .card-title {
      font-family: 'Outfit', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }
    .card-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.68);
      line-height: 1.65;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, opacity 0.3s ease;
      opacity: 0;
    }
    .service-card:hover .card-desc {
      max-height: 120px;
      opacity: 1;
    }
    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--white);
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      margin-top: 18px;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    }
    .card-link::after { content: '→'; }
    .service-card:hover .card-link { opacity: 1; transform: translateY(0); }

    /* ─── WHO WE SERVE ─── */
    .serve { background: var(--navy); }
    .serve .label-tag { color: var(--blue-light); }
    .serve .section-title { color: var(--white); }
    .serve .section-sub { color: rgba(255,255,255,0.45); }

    .serve-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
      margin-bottom: 60px;
      flex-wrap: wrap;
    }
    .serve-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: rgba(255,255,255,0.07);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .serve-item {
      padding: 52px 36px;
      background: var(--navy-mid);
      transition: background 0.3s;
    }
    .serve-item:hover { background: rgba(41,171,226,0.25); }
    .serve-icon { font-size: 38px; margin-bottom: 22px; }
    .serve-title {
      font-family: 'Outfit', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 14px;
    }
    .serve-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.48);
      line-height: 1.72;
    }

    /* ─── PROCESS ─── */
    .process { background: var(--gray-100); }
    .process-header { margin-bottom: 64px; }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .process-step {
      background: var(--white);
      padding: 48px 40px;
      border-radius: var(--radius);
      border: 1px solid var(--gray-200);
      position: relative;
      transition: box-shadow 0.3s, border-color 0.3s;
    }
    .process-step:hover {
      box-shadow: var(--shadow-lg);
      border-color: var(--blue);
    }
    .step-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(41,171,226,0.12);
      color: var(--blue);
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 28px;
    }
    .step-title {
      font-size: 21px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
      letter-spacing: -0.3px;
    }
    .step-desc {
      font-size: 15px;
      color: var(--gray-500);
      line-height: 1.75;
    }

    /* ─── TESTIMONIALS ─── */
    .testimonials { background: var(--white); }
    .testimonials-header { margin-bottom: 64px; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .t-card {
      background: var(--off-white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 44px;
      transition: all 0.35s;
    }
    .t-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(41,171,226,0.4);
    }
    .t-quote {
      font-size: 52px;
      color: var(--blue-light);
      font-family: Georgia, 'Times New Roman', serif;
      line-height: 0.8;
      margin-bottom: 24px;
      opacity: 0.7;
    }
    .t-text {
      font-size: 16px;
      color: var(--gray-700);
      line-height: 1.72;
      font-style: italic;
      margin-bottom: 32px;
    }
    .t-stars {
      color: #FBBF24;
      font-size: 14px;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }
    .t-author-name {
      font-weight: 700;
      color: var(--navy);
      font-size: 15px;
    }
    .t-author-role {
      font-size: 13px;
      color: var(--gray-500);
      margin-top: 4px;
    }

    /* ─── CTA ─── */
    .cta-section {
      background: var(--navy);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-glow {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(41,171,226,0.28) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta-inner { position: relative; z-index: 1; }
    .cta-section .label-tag {
      color: var(--blue-light);
      margin-bottom: 20px;
    }
    .cta-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(40px, 5.5vw, 76px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.02;
      letter-spacing: -2px;
      max-width: 720px;
      margin: 0 auto 24px;
    }
    .cta-sub {
      font-size: 17px;
      color: rgba(255,255,255,0.45);
      max-width: 440px;
      margin: 0 auto 52px;
      line-height: 1.72;
    }
    .cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .cta-note {
      margin-top: 36px;
      font-size: 14px;
      color: rgba(255,255,255,0.32);
    }
    .cta-note a {
      color: var(--blue-light);
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .cta-note a:hover { opacity: 0.8; }

    /* ─── HUBSPOT FORMS ─── */
    .hs-form-single {
      max-width: 560px;
      margin: 0 auto 36px;
      text-align: left;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 40px;
    }
    /* HubSpot form overrides — aggressive to beat HubSpot's own stylesheet */
    .hs-form-single .hs-form-field { margin-bottom: 14px !important; }
    .hs-form-single .hs-form-field > label {
      display: block !important;
      font-size: 12px !important;
      font-weight: 500 !important;
      color: rgba(255,255,255,0.5) !important;
      margin-bottom: 6px !important;
      letter-spacing: 0.04em !important;
      font-family: 'Inter', sans-serif !important;
    }
    .hs-form-single input.hs-input,
    .hs-form-single textarea.hs-input,
    .hs-form-single select.hs-input,
    .hs-form-single input[type="text"],
    .hs-form-single input[type="email"],
    .hs-form-single input[type="tel"],
    .hs-form-single input[type="number"],
    .hs-form-single textarea,
    .hs-form-single select {
      width: 100% !important;
      background: #0d1528 !important;
      border: 1px solid rgba(255,255,255,0.15) !important;
      border-radius: 8px !important;
      padding: 10px 14px !important;
      color: #ffffff !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 14px !important;
      outline: none !important;
      box-shadow: none !important;
      -webkit-appearance: none !important;
      appearance: none !important;
    }
    .hs-form-single input.hs-input:focus,
    .hs-form-single textarea.hs-input:focus,
    .hs-form-single select.hs-input:focus {
      border-color: #29ABE2 !important;
      background: #111e36 !important;
    }
    .hs-form-single input.hs-input::placeholder,
    .hs-form-single textarea.hs-input::placeholder { color: rgba(255,255,255,0.2) !important; }
    .hs-form-single .hs-submit { margin-top: 8px !important; }
    .hs-form-single .hs-button,
    .hs-form-single input[type="submit"] {
      width: 100% !important;
      background: #29ABE2 !important;
      color: #ffffff !important;
      border: none !important;
      border-radius: 8px !important;
      padding: 12px 24px !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 14px !important;
      font-weight: 600 !important;
      cursor: pointer !important;
      transition: background 0.2s !important;
      box-shadow: none !important;
    }
    .hs-form-single .hs-button:hover,
    .hs-form-single input[type="submit"]:hover { background: #5BC8F0 !important; }
    .hs-form-single .hs-error-msgs { list-style: none !important; margin: 4px 0 0 !important; padding: 0 !important; }
    .hs-form-single .hs-error-msgs li label { color: #f87171 !important; font-size: 12px !important; font-weight: 400 !important; letter-spacing: 0 !important; text-transform: none !important; }
    .hs-form-single fieldset { max-width: 100% !important; border: none !important; padding: 0 !important; margin: 0 !important; }
    .hs-form-single .hs-richtext { font-size: 13px !important; color: rgba(255,255,255,0.4) !important; }
    .hs-form-single .submitted-message { color: #5BC8F0 !important; font-size: 15px !important; text-align: center !important; padding: 20px 0 !important; }
    @media (max-width: 640px) {
      .hs-forms-grid { grid-template-columns: 1fr; }
    }

    /* ─── FOOTER ─── */
    footer {
      background: #040A17;
      padding: 72px 56px 40px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2.2fr 1fr 1fr 1fr;
      gap: 56px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      margin-bottom: 36px;
    }
    .footer-brand-logo {
      display: block;
      text-decoration: none;
      margin-bottom: 18px;
    }
    .footer-brand-logo img {
      height: 48px;
      width: auto;
      display: block;
    }
    .footer-tagline {
      font-size: 14px;
      color: rgba(255,255,255,0.35);
      line-height: 1.72;
      max-width: 280px;
      margin-bottom: 28px;
    }
    .footer-social {
      display: flex;
      gap: 12px;
    }
    .footer-social a {
      width: 36px; height: 36px;
      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.45);
      font-size: 12px;
      text-decoration: none;
      transition: all 0.2s;
      font-weight: 600;
    }
    .footer-social a:hover {
      border-color: var(--blue-light);
      color: var(--blue-light);
      background: rgba(41,171,226,0.1);
    }
    .footer-col-title {
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--white);
      margin-bottom: 24px;
    }
    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-col a {
      color: rgba(255,255,255,0.38);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
      display: inline-block;
    }
    .footer-col a:hover { color: rgba(255,255,255,0.85); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: rgba(255,255,255,0.25);
    }
    .footer-bottom a {
      color: rgba(255,255,255,0.25);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-bottom a:hover { color: rgba(255,255,255,0.6); }

    /* ─── SCROLL ANIMATIONS ─── */
    .fade-up {
      opacity: 0;
      transform: translateY(44px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .delay-1 { transition-delay: 0.10s; }
    .delay-2 { transition-delay: 0.20s; }
    .delay-3 { transition-delay: 0.30s; }
    .delay-4 { transition-delay: 0.40s; }

    /* ─── MOBILE NAV OVERLAY ─── */
    .mobile-nav-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(7,14,31,0.98);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .mobile-nav-overlay.open { display: flex; }
    .mobile-nav-overlay a {
      font-family: 'Outfit', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
      transition: color 0.2s;
    }
    .mobile-nav-overlay a:hover { color: var(--blue-light); }
    .mobile-close {
      position: absolute;
      top: 28px; right: 28px;
      background: none;
      border: none;
      color: var(--white);
      font-size: 32px;
      cursor: pointer;
      line-height: 1;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .serve-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-bar { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .stat-item:nth-child(3) { border-right: 1px solid var(--gray-200); border-top: 1px solid var(--gray-200); }
      .stat-item:nth-child(4) { border-top: 1px solid var(--gray-200); border-right: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      nav { padding: 20px 24px; }
      nav.scrolled { padding: 14px 24px; }
      .nav-links { display: none; }
      .nav-toggle { display: flex; }

      section { padding: 80px 24px; }
      .hero { padding: 130px 24px 100px; }
      .stats-bar { padding: 48px 24px; grid-template-columns: repeat(2, 1fr); }
      .hero-scroll-hint { left: 24px; }

      .services-grid { grid-template-columns: 1fr; }
      .service-card { aspect-ratio: 4/3; }
      .card-desc { max-height: 120px; opacity: 1; }
      .card-link { opacity: 1; transform: none; }

      .serve-grid { grid-template-columns: 1fr; }
      .serve-header { flex-direction: column; align-items: flex-start; }
      .services-top { flex-direction: column; align-items: flex-start; }

      .process-steps { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }

      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    }
  
    /* ── Global Mobile Fixes ── */
    @media (max-width: 768px) {
      /* Nav */
      .nav-logo img { height: 28px; }
      .nav-dropdown-menu { position: fixed; top: auto; left: 16px; right: 16px; transform: none; width: auto; }

      /* Hero sections */
      .lp-hero { padding: 110px 20px 56px; }
      .lp-hero h1 { font-size: clamp(30px, 8vw, 52px); letter-spacing: -1px; }
      .lp-hero p { font-size: 15px; }
      .lp-hero-ctas { flex-direction: column; }
      .lp-btn-primary, .lp-btn-secondary { text-align: center; justify-content: center; }

      /* Sections */
      .lp-section { padding: 48px 20px; }
      .lp-section-title { font-size: clamp(22px, 6vw, 36px); }

      /* Grids */
      .lp-features { grid-template-columns: 1fr; gap: 14px; }
      .lp-products { grid-template-columns: repeat(2,1fr); gap: 12px; }
      .lp-process { grid-template-columns: repeat(2,1fr); gap: 20px; }
      .how-it-works { grid-template-columns: repeat(2,1fr); }
      .how-it-works::before { display: none; }
      .store-types { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }

      /* CTA boxes */
      .lp-cta-box { padding: 28px 20px; }
      .lp-cta-box h3 { font-size: 22px; }

      /* FAQ */
      .lp-faqs { padding: 0 4px; }

      /* Footer */
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
      .footer-bottom { font-size: 11px; flex-direction: column; gap: 6px; text-align: center; }

      /* Catalog */
      .catalog-hero { padding: 110px 20px 40px; }

      /* Homepage hero */
      .hero-title { font-size: clamp(36px, 9vw, 60px) !important; }
      .serve-grid { grid-template-columns: 1fr 1fr !important; }
    }

    @media (max-width: 480px) {
      .lp-products { grid-template-columns: 1fr; }
      .lp-process { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .serve-grid { grid-template-columns: 1fr !important; }
      .lp-hero-ctas a { width: 100%; box-sizing: border-box; }
    }
