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

    :root {
      --dark: #0D1F0D;
      --dark-mid: #1B3A1B;
      --green: #2A7A4A;
      --lime: #DBFF4F;
      --lime-dark: #b8d900;
      --light: #F4FAF4;
      --white: #FFFFFF;
      --text: #0D1F0D;
      --text-secondary: #5A7A5A;
      --border: #D8EAD8;
      --radius: 16px;
      --radius-sm: 10px;
      --shadow: 0 4px 24px rgba(13,31,13,0.08);
      --shadow-lg: 0 8px 48px rgba(13,31,13,0.14);
      --nav-h: 72px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ===== NAV ===== */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    nav.scrolled {
      border-bottom-color: var(--border);
      box-shadow: 0 2px 16px rgba(13,31,13,0.06);
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
      display: flex;
      align-items: center;
      gap: 40px;
    }
    .nav-logo { display: flex; align-items: center; flex-shrink: 0; }
    .nav-logo img { height: 28px; width: auto; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      flex: 1;
      list-style: none;
    }
    .nav-links li { position: relative; }
    .nav-links a {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 8px 14px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      border-radius: 8px;
      transition: background 0.15s, color 0.15s;
      white-space: nowrap;
    }
    .nav-links a:hover { background: var(--light); color: var(--green); }
    .nav-links a .chevron { font-size: 10px; transition: transform 0.2s; }
    .nav-links li:hover .chevron { transform: rotate(180deg); }

    .dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow-lg);
      min-width: 200px;
      padding: 8px;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity 0.2s, transform 0.2s;
    }
    .nav-links li:hover .dropdown {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    .dropdown a {
      display: block;
      padding: 10px 16px;
      font-size: 14px;
      border-radius: 6px;
      color: var(--text);
    }
    .dropdown a:hover { background: var(--light); }

    .nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .btn-ghost {
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      background: none;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.15s;
    }
    .btn-ghost:hover { background: var(--light); }
    .btn-primary {
      padding: 9px 20px;
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
      background: var(--lime);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.15s, transform 0.15s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .btn-primary:hover { background: var(--lime-dark); transform: translateY(-1px); }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      margin-left: auto;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      background: var(--white);
      border-top: 1px solid var(--border);
      padding: 16px 24px 24px;
      box-shadow: var(--shadow-lg);
      z-index: 99;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu a {
      display: block;
      padding: 12px 4px;
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu .mobile-cta {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .mobile-menu .btn-primary, .mobile-menu .btn-outline {
      text-align: center;
      padding: 14px;
      font-size: 15px;
      border-radius: 10px;
    }
    .btn-outline {
      padding: 9px 20px;
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
      background: none;
      border: 2px solid var(--dark);
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.15s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .btn-outline:hover { background: var(--light); }

    /* ===== SECTIONS ===== */
    section { padding: 96px 24px; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green);
      background: rgba(42,122,74,0.1);
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 16px;
    }
    h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
    h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
    h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 600; line-height: 1.3; }
    .text-center { text-align: center; }
    .subtitle {
      font-size: clamp(16px, 2vw, 20px);
      color: var(--text-secondary);
      line-height: 1.65;
      max-width: 560px;
    }

    /* ===== HERO ===== */
    #home {
      min-height: 100vh;
      padding-top: calc(var(--nav-h) + 60px);
      padding-bottom: 80px;
      background: linear-gradient(160deg, #F4FAF4 0%, #FFFFFF 55%, #F0F8F2 100%);
      display: flex;
      align-items: center;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .hero-text {}
    .hero-text h1 { margin-bottom: 24px; }
    .hero-text .subtitle { margin-bottom: 40px; }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
    .hero-actions .btn-primary { padding: 14px 28px; font-size: 16px; border-radius: 12px; }
    .hero-actions .btn-outline { padding: 14px 28px; font-size: 16px; border-radius: 12px; }

    .store-badges {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 28px;
    }
    .store-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      background: var(--white);
      transition: border-color 0.15s, box-shadow 0.15s;
    }
    .store-badge:hover { border-color: var(--green); box-shadow: 0 2px 8px rgba(42,122,74,0.12); }
    .store-badge svg { width: 18px; height: 18px; flex-shrink: 0; }

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }
    .phone-frame {
      position: relative;
      width: 280px;
      background: #0D1F0D;
      border-radius: 44px;
      padding: 14px;
      box-shadow: 0 32px 80px rgba(13,31,13,0.28), 0 0 0 1px rgba(255,255,255,0.08) inset;
    }
    .phone-notch {
      width: 80px;
      height: 28px;
      background: #0D1F0D;
      border-radius: 0 0 18px 18px;
      margin: 0 auto 6px;
      position: absolute;
      top: 14px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
    }
    .phone-screen {
      border-radius: 34px;
      overflow: hidden;
      aspect-ratio: 9/19.5;
      background: #000;
    }
    .phone-screen img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero-bg-blob {
      position: absolute;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(219,255,79,0.18) 0%, transparent 70%);
      border-radius: 50%;
      top: -60px;
      right: -60px;
      pointer-events: none;
    }
    .hero-bg-blob2 {
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(42,122,74,0.12) 0%, transparent 70%);
      border-radius: 50%;
      bottom: -80px;
      left: -40px;
      pointer-events: none;
    }
    .floating-card {
      position: absolute;
      background: var(--white);
      border-radius: 14px;
      box-shadow: var(--shadow-lg);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      white-space: nowrap;
      animation: float 3s ease-in-out infinite;
    }
    .floating-card.left { left: -40px; top: 120px; animation-delay: 0.5s; }
    .floating-card.right { right: -40px; bottom: 120px; }
    .floating-card .dot {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    /* ===== STATS BAR ===== */
    .stats-bar {
      background: var(--dark);
      padding: 40px 24px;
    }
    .stats-inner {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      text-align: center;
    }
    .stat-number {
      font-size: 42px;
      font-weight: 800;
      color: var(--lime);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
    }

    /* ===== FEATURES ===== */
    #features { background: var(--white); }
    .features-header { text-align: center; margin-bottom: 64px; }
    .features-header .subtitle { margin: 16px auto 0; }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .feature-card {
      background: var(--light);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(42,122,74,0.2);
    }
    .feature-icon {
      width: 52px;
      height: 52px;
      background: var(--dark);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .feature-icon svg { width: 26px; height: 26px; color: var(--lime); }
    .feature-card h3 { margin-bottom: 10px; }
    .feature-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

    /* ===== HOW IT WORKS ===== */
    #how-it-works { background: var(--light); }
    .how-header { text-align: center; margin-bottom: 64px; }
    .how-header .subtitle { margin: 16px auto 0; }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(16.66% + 20px);
      right: calc(16.66% + 20px);
      height: 2px;
      background: linear-gradient(90deg, var(--lime) 0%, rgba(219,255,79,0.3) 100%);
    }
    .step { text-align: center; }
    .step-num {
      width: 56px;
      height: 56px;
      background: var(--dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 800;
      color: var(--lime);
      margin: 0 auto 24px;
      position: relative;
      z-index: 1;
    }
    .step h3 { margin-bottom: 12px; }
    .step p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

    /* ===== SCREENSHOTS ===== */
    #integrations {
      background: var(--dark);
      overflow: hidden;
    }
    .screenshots-header { text-align: center; margin-bottom: 56px; }
    .screenshots-header .section-label { background: rgba(219,255,79,0.15); color: var(--lime); }
    .screenshots-header h2 { color: var(--white); }
    .screenshots-header p { color: rgba(255,255,255,0.6); margin: 16px auto 0; max-width: 500px; }
    .screenshots-track {
      display: flex;
      gap: 24px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .screenshot-item {
      flex-shrink: 0;
      width: 200px;
    }
    .screenshot-phone {
      background: #111;
      border-radius: 32px;
      padding: 10px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    .screenshot-phone img {
      width: 100%;
      border-radius: 24px;
      display: block;
      aspect-ratio: 9/19.5;
      object-fit: cover;
    }
    .screenshot-label {
      text-align: center;
      margin-top: 16px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
    }

    /* ===== PRICING ===== */
    #pricing { background: var(--white); }
    .pricing-header { text-align: center; margin-bottom: 48px; }
    .pricing-header .subtitle { margin: 16px auto 0; }
    .pricing-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 48px;
    }
    .toggle-label { font-size: 15px; font-weight: 500; color: var(--text-secondary); }
    .toggle-label.active { color: var(--text); font-weight: 600; }
    .toggle-switch {
      width: 52px;
      height: 28px;
      background: var(--dark);
      border-radius: 14px;
      cursor: pointer;
      position: relative;
      transition: background 0.2s;
      border: none;
    }
    .toggle-switch::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background: var(--lime);
      border-radius: 50%;
      top: 4px;
      left: 4px;
      transition: transform 0.2s;
    }
    .toggle-switch.yearly::after { transform: translateX(24px); }
    .save-badge {
      background: var(--lime);
      color: var(--dark);
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 20px;
    }
    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 760px;
      margin: 0 auto;
    }
    .pricing-card {
      border: 2px solid var(--border);
      border-radius: var(--radius);
      padding: 40px 36px;
      position: relative;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .pricing-card:hover { border-color: var(--green); box-shadow: var(--shadow-lg); }
    .pricing-card.featured {
      border-color: var(--dark);
      background: var(--dark);
      color: var(--white);
    }
    .pricing-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--lime);
      color: var(--dark);
      font-size: 12px;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 20px;
      white-space: nowrap;
    }
    .plan-name { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
    .pricing-card.featured .plan-name { color: var(--lime); }
    .plan-price { font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
    .plan-period { font-size: 15px; font-weight: 400; }
    .plan-yearly-price { font-size: 14px; color: var(--text-secondary); margin-top: 4px; margin-bottom: 28px; }
    .pricing-card.featured .plan-yearly-price { color: rgba(255,255,255,0.5); }
    .plan-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
    .pricing-card.featured .plan-divider { border-top-color: rgba(255,255,255,0.12); }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
    .plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
    .plan-features .check { color: var(--lime); font-size: 14px; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
    .pricing-card:not(.featured) .plan-features .check { color: var(--green); }
    .plan-cta {
      display: block;
      width: 100%;
      padding: 14px;
      font-size: 15px;
      font-weight: 700;
      text-align: center;
      border-radius: 10px;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
    }
    .plan-cta.light { background: var(--lime); color: var(--dark); }
    .plan-cta.light:hover { background: var(--lime-dark); }
    .plan-cta.dark { background: var(--white); color: var(--dark); }
    .plan-cta.dark:hover { background: var(--light); }

    .pricing-note {
      text-align: center;
      font-size: 14px;
      color: var(--text-secondary);
      margin-top: 32px;
    }

    /* ===== FAQS ===== */
    #faqs { background: var(--light); }
    .faqs-header { text-align: center; margin-bottom: 56px; }
    .faqs-header .subtitle { margin: 16px auto 0; }
    .faqs-list {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 24px;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      text-align: left;
      gap: 16px;
    }
    .faq-question:hover { background: var(--light); }
    .faq-chevron {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      transition: transform 0.25s;
      color: var(--text-secondary);
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s;
    }
    .faq-item.open .faq-answer { max-height: 600px; }
    .faq-answer-inner {
      padding: 0 24px 20px;
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.7;
    }
    .faqs-loading {
      text-align: center;
      color: var(--text-secondary);
      padding: 32px;
    }

    /* ===== TESTIMONIALS ===== */
    #testimonials { background: var(--white); }
    .testimonials-header { text-align: center; margin-bottom: 56px; }
    .testimonials-header .subtitle { margin: 16px auto 0; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: var(--light);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
    }
    .stars { color: #F5A623; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
    .testimonial-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--lime);
      font-weight: 700;
      font-size: 16px;
      flex-shrink: 0;
    }
    .author-name { font-size: 14px; font-weight: 600; }
    .author-title { font-size: 13px; color: var(--text-secondary); }

    /* ===== CONTACT ===== */
    #contact { background: var(--light); }
    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
    }
    .contact-info h2 { margin-bottom: 16px; }
    .contact-info p { color: var(--text-secondary); margin-bottom: 32px; font-size: 16px; }
    .contact-details { display: flex; flex-direction: column; gap: 16px; }
    .contact-detail {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      font-weight: 500;
    }
    .contact-detail-icon {
      width: 40px;
      height: 40px;
      background: var(--dark);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-detail-icon svg { width: 18px; height: 18px; color: var(--lime); }

    .contact-form {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 40px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .form-group:last-child { margin-bottom: 0; }
    .form-label { font-size: 14px; font-weight: 600; color: var(--text); }
    .form-input, .form-select, .form-textarea {
      padding: 12px 16px;
      font-size: 15px;
      font-family: inherit;
      color: var(--text);
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      width: 100%;
    }
    .form-input:focus, .form-textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(42,122,74,0.1);
    }
    .form-textarea { resize: vertical; min-height: 120px; }
    .form-submit {
      width: 100%;
      padding: 14px;
      font-size: 15px;
      font-weight: 700;
      font-family: inherit;
      color: var(--dark);
      background: var(--lime);
      border: none;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: background 0.15s, transform 0.15s;
    }
    .form-submit:hover { background: var(--lime-dark); transform: translateY(-1px); }
    .form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
    .form-success {
      display: none;
      text-align: center;
      padding: 24px;
      background: rgba(42,122,74,0.08);
      border: 1px solid rgba(42,122,74,0.2);
      border-radius: var(--radius-sm);
      color: var(--green);
      font-weight: 600;
    }
    .form-error {
      display: none;
      color: #c0392b;
      font-size: 13px;
      margin-top: 8px;
    }

    /* ===== OUR STORY ===== */
    #our-story { background: var(--white); }
    .story-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .story-content .subtitle { margin-top: 16px; margin-bottom: 24px; }
    .story-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
    .story-visual {
      background: var(--dark);
      border-radius: var(--radius);
      padding: 48px 40px;
      color: white;
    }
    .story-visual h3 { color: var(--lime); font-size: 20px; margin-bottom: 24px; }
    .story-values { display: flex; flex-direction: column; gap: 20px; }
    .story-value { display: flex; align-items: flex-start; gap: 14px; }
    .story-value-icon {
      width: 36px;
      height: 36px;
      background: rgba(219,255,79,0.15);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .story-value-icon svg { width: 18px; height: 18px; color: var(--lime); }
    .story-value-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
    .story-value-text p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }

    /* ===== CTA DOWNLOAD ===== */
    .cta-section {
      background: var(--dark);
      padding: 96px 24px;
      text-align: center;
    }
    .cta-section h2 { color: var(--white); margin-bottom: 16px; }
    .cta-section p { color: rgba(255,255,255,0.6); font-size: 18px; margin-bottom: 40px; }
    .cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
    .cta-actions .btn-primary { padding: 16px 32px; font-size: 17px; border-radius: 12px; }
    .cta-store-links { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
    .cta-store-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border: 1.5px solid rgba(255,255,255,0.2);
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      transition: border-color 0.15s, color 0.15s;
    }
    .cta-store-link:hover { border-color: rgba(255,255,255,0.5); color: white; }
    .cta-store-link svg { width: 18px; height: 18px; flex-shrink: 0; }

    /* ===== FOOTER ===== */
    footer {
      background: #060F06;
      padding: 60px 24px 32px;
      color: rgba(255,255,255,0.55);
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand .footer-logo { height: 24px; width: auto; margin-bottom: 16px; }
    .footer-brand p { font-size: 14px; line-height: 1.65; max-width: 260px; }
    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.8);
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col a {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.15s;
    }
    .footer-col a:hover { color: var(--lime); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 960px) {
      .hero-inner { grid-template-columns: 1fr; gap: 56px; }
      .hero-visual { display: none; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: 1fr; gap: 32px; }
      .steps-grid::before { display: none; }
      .contact-inner { grid-template-columns: 1fr; gap: 40px; }
      .story-inner { grid-template-columns: 1fr; gap: 40px; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
      .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }
      .stats-inner { grid-template-columns: 1fr; gap: 28px; }
    }
    @media (max-width: 640px) {
      section { padding: 72px 20px; }
      .nav-links, .nav-actions { display: none; }
      .hamburger { display: flex; }
      .features-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .screenshots-track { gap: 16px; }
      .screenshot-item { width: 160px; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
    }

    /* ===== Multi-page additions ===== */
    .subpage > section:first-child,
    .subpage > .stats-bar:first-child { padding-top: calc(var(--nav-h) + 48px); }
    .nav-links a.active, .mobile-menu a.active { color: var(--green); }
