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

    :root {
      --dark: #0D2B3E;
      --main: #13B6EC;
      --light: #F7F6F6;
      --white: #FFFFFF;
      --black: #000000;
      --main-hover: #0FA8DA;
      --dark-alpha: rgba(13, 43, 62, 0.07);
      --main-alpha: rgba(19, 182, 236, 0.10);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 24px;
      --radius-pill: 999px;
      --shadow: 0 4px 24px rgba(13,43,62,0.10);
      --shadow-card: 0 8px 40px rgba(13,43,62,0.13);
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      font-family: 'Albert Sans', sans-serif;
      font-size: 16px;
      font-weight: 400;
      color: var(--dark);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ─── UTILITIES ─── */
    .container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 96px 0; }
    .section-sm { padding: 64px 0; }
    .text-center { text-align: center; }

    .tag {
      display: inline-block;
      background: var(--main-alpha);
      color: var(--main);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: var(--radius-pill);
      margin-bottom: 16px;
    }

    h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--dark); }
    h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; color: var(--dark); }
    h3 { font-size: 22px; font-weight: 600; line-height: 1.3; color: var(--dark); }
    h4 { font-size: 18px; font-weight: 600; color: var(--dark); }
    h5 { font-size: 16px; font-weight: 600; color: var(--dark); }
    h6 { font-size: 14px; font-weight: 600; color: var(--dark); }

    p { font-size: 16px; font-weight: 400; color: #3a4a55; line-height: 1.8; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius-pill);
      font-family: 'Albert Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.22s ease;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--main);
      color: var(--white);
    }
    .btn-primary:hover { background: var(--main-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(19,182,236,0.30); }
    .btn-outline {
      background: transparent;
      color: var(--main);
      border: 2px solid var(--main);
    }
    .btn-outline:hover { background: var(--main); color: var(--white); transform: translateY(-2px); }
    .btn-white {
      background: var(--white);
      color: var(--dark);
    }
    .btn-white:hover { background: var(--light); transform: translateY(-2px); }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(13,43,62,0.06);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 2px 20px rgba(13,43,62,0.08); }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }
    .nav-logo {
      font-size: 26px;
      font-weight: 800;
      color: var(--dark);
      letter-spacing: -0.03em;
      display: inline-flex;
      align-items: center;
    }
    .nav-logo span { color: var(--main); }
    .nav-logo img { height: 28px; width: auto; display: block; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 15px;
      font-weight: 500;
      color: var(--dark);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--main); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* Mobile nav */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px; left: 0; right: 0;
      background: var(--white);
      border-bottom: 1px solid var(--dark-alpha);
      padding: 24px;
      flex-direction: column;
      gap: 20px;
      z-index: 999;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-size: 16px; font-weight: 500; color: var(--dark); }

    /* ─── PRELOADER ─── */
    #preloader {
      position: fixed;
      inset: 0;
      background: #0D2B3E;
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }
    #preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
    .preloader-ring {
      width: 54px; height: 54px;
      border: 3px solid rgba(19,182,236,0.18);
      border-top-color: #13B6EC;
      border-radius: 50%;
      animation: preloader-spin 0.75s linear infinite;
    }
    @keyframes preloader-spin { to { transform: rotate(360deg); } }
    .preloader-wordmark {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      letter-spacing: 0.1em;
      opacity: 0.9;
    }

    /* ─── HERO ENTRANCE ANIMATIONS ─── */
    .hero-anim {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.75s ease var(--anim-delay, 0ms),
                  transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--anim-delay, 0ms);
    }
    .hero-anim-right { transform: translateX(60px); }
    .hero-anim.anim-in { opacity: 1; transform: none; }

    /* ─── FLOAT ANIMATION ─── */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-14px); }
    }

    /* ─── HERO ─── */
    #hero {
      padding-top: 140px;
      padding-bottom: 0;
      background: linear-gradient(160deg, #f0f9ff 0%, var(--white) 60%);
      overflow: visible;
      position: relative;
    }
    .hero-blob {
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(19,182,236,0.08) 0%, transparent 70%);
      top: -100px; right: -100px;
      pointer-events: none;
    }
    /* Decorative orbs */
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(55px);
    }
    .hero-orb-1 {
      width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(19,182,236,0.22) 0%, transparent 70%);
      top: 5%; right: 8%;
      animation: orb-pulse 7s ease-in-out infinite;
    }
    .hero-orb-2 {
      width: 260px; height: 260px;
      background: radial-gradient(circle, rgba(13,43,62,0.22) 0%, transparent 70%);
      bottom: 5%; right: 20%;
      animation: orb-pulse 9s ease-in-out infinite 2.5s;
    }
    @keyframes orb-pulse {
      0%, 100% { opacity: 0.7; transform: scale(1); }
      50%       { opacity: 1;   transform: scale(1.12); }
    }
    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 60px;
      align-items: center;
    }
    .hero-text { position: relative; z-index: 2; }
    .hero-text h1 { margin-bottom: 24px; }
    .hero-text h1 em { font-style: normal; color: var(--main); }
    .hero-text p { font-size: 18px; margin-bottom: 36px; max-width: 480px; }
    .hero-stores { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
    .store-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--dark);
      color: var(--white);
      padding: 12px 22px;
      border-radius: var(--radius-md);
      font-size: 14px;
      font-weight: 600;
      transition: background 0.2s, transform 0.2s;
    }
    .store-badge:hover { background: var(--main); transform: translateY(-2px); }
    .store-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
    .store-badge .store-sub { font-size: 11px; font-weight: 400; opacity: 0.8; display: block; }
    .store-badge .store-name { font-size: 16px; font-weight: 700; display: block; line-height: 1; }
    .hero-stats { display: flex; gap: 32px; }
    .hero-stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--dark); line-height: 1; }
    .hero-stat span { font-size: 13px; color: #6b7280; }
    /* Hero phones wrap: handles entrance animation only */
    .hero-phones-wrap { position: relative; }
    /* Hero phones: handles parallax only */
    .hero-phones {
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      transition: transform 0.1s ease-out;
    }
    /* Phone group — both phones treated as one unit */
    .phone-group {
      position: relative;
      width: 779px;
      flex-shrink: 0;
    }
    /* Float animation */
    .phone-float {
      animation: float 4.5s ease-in-out infinite;
      will-change: transform;
    }
    /* Primary phone — front */
    .phone-float-primary { animation-delay: 0s; position: relative; z-index: 3; left: -50px; }
    .phone-float-primary img { width: 100%; height: auto; display: block; }
    /* Secondary phone — behind, overlapping lower-right of primary */
    .phone-float-secondary {
      position: absolute;
      right: -120px;
      bottom: 60px;
      z-index: 1;
      animation-delay: 1.2s;
    }
    .phone-float-secondary img { width: 515px; height: auto; display: block; }

    /* ─── MARQUEE / PARTNERS ─── */
    .marquee-section {
      background: var(--light);
      padding: 28px 0;
      overflow: hidden;
    }
    .marquee-track {
      display: flex;
      gap: 48px;
      animation: marquee 22s linear infinite;
      white-space: nowrap;
    }
    .marquee-item {
      flex-shrink: 0;
      font-size: 14px;
      font-weight: 700;
      color: #9ca3af;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ─── FEATURES ─── */
    #features { background: var(--white); }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }
    .feature-card {
      background: var(--light);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      transition: transform 0.22s, box-shadow 0.22s;
    }
    .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
    .feature-icon {
      width: 52px; height: 52px;
      border-radius: var(--radius-md);
      background: var(--main-alpha);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .feature-icon svg { width: 26px; height: 26px; color: var(--main); }
    .feature-card h3 { margin-bottom: 10px; }
    .feature-card p { font-size: 15px; }

    /* ─── HOW IT WORKS ─── */
    #how-it-works { background: var(--light); }
    .tabs-wrapper { margin-top: 40px; }
    .tab-btns {
      display: flex;
      gap: 12px;
      justify-content: center;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }
    .tab-btn {
      padding: 10px 24px;
      border-radius: var(--radius-pill);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border: 2px solid transparent;
      background: var(--white);
      color: #6b7280;
      transition: all 0.2s;
    }
    .tab-btn.active { background: var(--main); color: var(--white); }
    .tab-btn:hover:not(.active) { border-color: var(--main); color: var(--main); }
    .tab-content { display: none; }
    .tab-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .steps-list { display: flex; flex-direction: column; gap: 24px; }
    .step-item { display: flex; gap: 18px; align-items: flex-start; }
    .step-num {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--main);
      color: white;
      font-size: 14px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .step-text h4 { margin-bottom: 4px; }
    .step-text p { font-size: 14px; }
    .how-phone {
      display: flex;
      justify-content: center;
    }
    .how-phone-inner {
      width: 560px;
    }
    .how-phone-inner img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ─── APP SCREENSHOT COVERFLOW ─── */
    #screenshots { background: #f0f9ff; padding: 96px 0; overflow: hidden; }
    .fan-stage {
      position: relative;
      height: 580px;
      margin-top: 56px;
      overflow: hidden;
      perspective: 1000px;
    }
    .fan-phone {
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 560px;
      margin-left: -280px;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
      cursor: pointer;
      transform-style: preserve-3d;
      will-change: transform;
      backface-visibility: hidden;
    }
    .fan-phone img { width: 100%; height: auto; display: block; }
    /* Shadow overlay — inner edge of each side phone */
    .fan-phone::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      opacity: 0;
    }
    .fan-phone[data-pos="-1"]::after { opacity: 0; }
    .fan-phone[data-pos="1"]::after  { opacity: 0; }
    .fan-phone[data-pos="-2"]::after { opacity: 0; }
    .fan-phone[data-pos="2"]::after  { opacity: 0; }
    /* Coverflow depth positions */
    .fan-phone[data-pos="0"]  { transform: translateZ(0);                         z-index: 5; opacity: 1; cursor: default; }
    .fan-phone[data-pos="-1"] { transform: translateX(-185px) translateZ(-200px);  z-index: 4; opacity: 1; }
    .fan-phone[data-pos="1"]  { transform: translateX(185px)  translateZ(-200px);  z-index: 4; opacity: 1; }
    .fan-phone[data-pos="-2"] { transform: translateX(-330px) translateZ(-380px);  z-index: 3; opacity: 1; }
    .fan-phone[data-pos="2"]  { transform: translateX(330px)  translateZ(-380px);  z-index: 3; opacity: 1; }
    .fan-phone[data-pos="-3"],.fan-phone[data-pos="-4"] { transform: translateX(-460px) translateZ(-500px); z-index: 1; opacity: 0; pointer-events: none; }
    .fan-phone[data-pos="3"], .fan-phone[data-pos="4"]  { transform: translateX(460px)  translateZ(-500px); z-index: 1; opacity: 0; pointer-events: none; }
    .fan-nav-wrap { position: relative; }
    .fan-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 2px solid var(--main);
      background: #fff;
      color: var(--main);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s;
      box-shadow: 0 2px 12px rgba(19,182,236,0.15);
    }
    .fan-nav:hover { background: var(--main); color: #fff; box-shadow: 0 4px 20px rgba(19,182,236,0.35); }
    .fan-nav svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .fan-nav-prev { left: 8px; }
    .fan-nav-next { right: 8px; }
    .fan-footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      margin-top: 28px;
    }
    .fan-label {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--main);
      letter-spacing: 0.03em;
      min-height: 1.2em;
      transition: opacity 0.25s;
    }
    .fan-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
    }
    .fan-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: rgba(13,43,62,0.18);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.2s, transform 0.2s;
    }
    .fan-dot.active { background: var(--main); transform: scale(1.35); }

    /* ─── BUSINESS SECTION ─── */
    #for-businesses {
      background: var(--white);
    }
    .biz-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .biz-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
    .biz-feature {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .biz-feature-icon {
      width: 42px; height: 42px;
      border-radius: var(--radius-sm);
      background: var(--main-alpha);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .biz-feature-icon svg { width: 20px; height: 20px; color: var(--main); }
    .biz-feature h4 { margin-bottom: 2px; font-size: 16px; }
    .biz-feature p { font-size: 14px; }
    .biz-visual {
      background: linear-gradient(145deg, var(--dark) 0%, #082030 100%);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      color: white;
    }
    .plan-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-md);
      padding: 20px;
      margin-bottom: 16px;
    }
    .plan-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }
    .plan-name { font-size: 16px; font-weight: 700; color: white; }
    .plan-badge {
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: var(--radius-pill);
    }
    .badge-free { background: rgba(19,182,236,0.25); color: #7AD5F5; }
    .badge-premium { background: rgba(245,158,11,0.25); color: #fbbf24; }
    .plan-items { display: flex; flex-direction: column; gap: 8px; }
    .plan-item { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.75); }
    .plan-item svg { width: 15px; height: 15px; color: #7AD5F5; flex-shrink: 0; }
    .plan-cta {
      display: block;
      text-align: center;
      background: var(--main);
      color: white;
      font-size: 14px;
      font-weight: 700;
      border-radius: var(--radius-pill);
      padding: 12px;
      margin-top: 12px;
      transition: background 0.2s;
    }
    .plan-cta:hover { background: var(--main-hover); }

    /* ─── TESTIMONIALS ─── */
    #testimonials { background: var(--light); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }
    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow);
      transition: transform 0.22s;
    }
    .testimonial-card:hover { transform: translateY(-4px); }
    .stars { display: flex; gap: 3px; margin-bottom: 14px; }
    .stars svg { width: 16px; height: 16px; color: #f59e0b; fill: #f59e0b; }
    .testimonial-text { font-size: 15px; line-height: 1.7; color: #374151; margin-bottom: 20px; }
    .testimonial-author { display: flex; gap: 12px; align-items: center; }
    .author-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--main-alpha);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 700; color: var(--main);
      flex-shrink: 0;
    }
    .author-name { font-size: 14px; font-weight: 700; color: var(--dark); }
    .author-role { font-size: 13px; color: #6b7280; }

    /* ─── PRICING ─── */
    #pricing { background: var(--white); }
    .pricing-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin: 32px 0 48px;
    }
    .toggle-label { font-size: 15px; font-weight: 500; color: #6b7280; }
    .toggle-switch {
      position: relative;
      width: 48px; height: 26px;
      cursor: pointer;
    }
    .toggle-switch input { opacity: 0; width: 0; height: 0; }
    .toggle-track {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: #e5e7eb;
      border-radius: var(--radius-pill);
      transition: background 0.3s;
    }
    .toggle-switch input:checked ~ .toggle-track { background: var(--main); }
    .toggle-thumb {
      position: absolute;
      width: 20px; height: 20px;
      border-radius: 50%;
      background: white;
      top: 3px; left: 3px;
      transition: transform 0.3s;
      box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    }
    .toggle-switch input:checked ~ .toggle-track .toggle-thumb { transform: translateX(22px); }
    .save-badge {
      background: #d1fae5;
      color: #065f46;
      font-size: 12px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: start;
    }
    .pricing-card {
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      border: 2px solid var(--dark-alpha);
      transition: transform 0.22s, box-shadow 0.22s;
      position: relative;
    }
    .pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
    .pricing-card.featured {
      border-color: var(--main);
      box-shadow: 0 0 0 1px var(--main), var(--shadow-card);
    }
    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--main);
      color: white;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 16px;
      border-radius: var(--radius-pill);
      white-space: nowrap;
    }
    .pricing-card h3 { margin-bottom: 8px; }
    .pricing-card .price {
      font-size: 48px;
      font-weight: 800;
      color: var(--dark);
      line-height: 1;
      margin: 16px 0 4px;
    }
    .pricing-card .price sup { font-size: 24px; vertical-align: super; }
    .pricing-card .price-period { font-size: 14px; color: #6b7280; margin-bottom: 24px; }
    .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0 28px; }
    .pricing-features li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: #374151; }
    .pricing-features li svg { width: 18px; height: 18px; color: var(--main); flex-shrink: 0; }
    .pricing-features li.disabled { color: #9ca3af; }
    .pricing-features li.disabled svg { color: #d1d5db; }

    /* ─── FAQ ─── */
    #faq { background: var(--light); }
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-top: 56px;
      align-items: start;
    }
    .faq-list { display: flex; flex-direction: column; gap: 16px; }
    .faq-item {
      background: var(--white);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--dark-alpha);
    }
    .faq-q {
      width: 100%;
      text-align: left;
      padding: 18px 20px;
      background: none;
      border: none;
      font-family: 'Albert Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      transition: color 0.2s;
    }
    .faq-q:hover { color: var(--main); }
    .faq-q svg { width: 18px; height: 18px; transition: transform 0.3s; flex-shrink: 0; }
    .faq-q.open svg { transform: rotate(45deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s;
      font-size: 14px;
      line-height: 1.7;
      color: #4b5563;
    }
    .faq-a.open { max-height: 200px; padding: 0 20px 18px; }
    .faq-visual {
      background: var(--dark);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      color: white;
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
      text-align: center;
    }
    .faq-visual h3 { color: white; }
    .faq-visual p { color: rgba(255,255,255,0.65); font-size: 15px; }

    /* ─── CTA BANNER ─── */
    #cta-banner {
      background: linear-gradient(135deg, var(--dark) 0%, #0a5070 50%, var(--main) 100%);
      padding: 96px 0;
      position: relative;
      overflow: hidden;
    }
    #cta-banner::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.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-inner { position: relative; z-index: 2; text-align: center; }
    .cta-inner h2 { color: white; font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
    .cta-inner p { color: rgba(255,255,255,0.75); font-size: 18px; margin-bottom: 40px; }
    .cta-stores { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ─── CONTACT ─── */
    .contact-form { max-width: 600px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 16px; }
    .contact-form-row { display: flex; gap: 16px; }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      font-family: 'Albert Sans', sans-serif;
      font-size: 15px;
      color: var(--dark);
      background: var(--light);
      border: 1px solid var(--dark-alpha);
      border-radius: var(--radius-sm);
      padding: 14px 18px;
      resize: vertical;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--main);
      background: var(--white);
    }
    .contact-form button { align-self: center; padding: 14px 40px; }
    @media (max-width: 600px) {
      .contact-form-row { flex-direction: column; }
    }

    /* ─── FOOTER ─── */
    footer {
      background: #051520;
      color: rgba(255,255,255,0.7);
      padding: 72px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }
    .footer-logo {
      font-size: 28px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.03em;
      margin-bottom: 14px;
      display: inline-flex;
      align-items: center;
    }
    .footer-logo span { color: var(--main); }
    .footer-logo img { height: 30px; width: auto; display: block; }
    .footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; }
    .footer-stores { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
    .footer-store {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.10);
      color: white;
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      font-size: 13px;
      font-weight: 600;
      transition: background 0.2s;
    }
    .footer-store:hover { background: var(--main); }
    .footer-store svg { width: 16px; height: 16px; }
    .footer-col h5 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .footer-links a:hover { color: white; }
    .footer-social { display: flex; gap: 10px; margin-top: 4px; }
    .social-icon {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.10);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, border-color 0.2s;
    }
    .social-icon:hover { background: var(--main); border-color: var(--main); }
    .social-icon svg { width: 17px; height: 17px; color: white; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
    .footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
    .footer-bottom a:hover { color: white; }

    /* ─── ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .features-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .biz-grid { gap: 48px; }
    }

    @media (max-width: 768px) {
      .section { padding: 64px 0; }

      /* Hero */
      #hero { padding-top: 80px; padding-bottom: 40px; }
      .hero-inner { display: block !important; }
      .hero-text { text-align: center; }
      .hero-text p { max-width: 100%; }
      .hero-stores { justify-content: center; }
      .hero-stats { justify-content: center; gap: 24px; }
      .hero-phones-wrap { width: 100%; overflow: visible; }
      .hero-phones { display: block; margin-top: 32px; overflow: visible; }
      .phone-float-primary { left: 0; }
      .phone-group { width: 570px; position: relative; left: calc(50% - 50px); transform: translateX(-65%); }
      .phone-float-secondary { right: -127px; bottom: 44px; }
      .phone-float-secondary img { width: 375px; }

      /* How It Works */
      .how-phone-inner { width: 100%; max-width: 616px; }
      .tab-content.active { grid-template-columns: 1fr; }


      /* Layout */
      .biz-grid { grid-template-columns: 1fr; }
      .features-grid, .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .faq-visual { display: none; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }

      /* Coverflow — hide nav arrows on mobile */
      .fan-nav { display: none; }

      /* Coverflow — faster transition on mobile to reduce visible gaps during shuffle */
      .fan-phone { transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.25s ease; }

      /* Coverflow — secondary phones smaller on mobile */
      .fan-phone[data-pos="-1"] { transform: translateX(-185px) translateZ(-200px) scale(0.875); }
      .fan-phone[data-pos="1"]  { transform: translateX(185px)  translateZ(-200px) scale(0.875); }
      .fan-phone[data-pos="-2"] { transform: translateX(-330px) translateZ(-380px) scale(0.825); }
      .fan-phone[data-pos="2"]  { transform: translateX(330px)  translateZ(-380px) scale(0.825); }

      /* Pricing — premium price + period on same line */
      #price-biz-premium { display: inline-block; }
      #premium-period { display: inline-block; vertical-align: middle; margin-left: 6px; margin-bottom: 24px; }

      /* Pricing cards — center header content only */
      .pricing-card { text-align: center; }
      .pricing-features { text-align: left; }
      .pricing-card .price { color: var(--main); }

      /* Nav */
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }

      /* Typography */
      h1 { font-size: 32px; }
      h2 { font-size: 26px; }
      .hero-stat strong { font-size: 22px; }
    }
