    /* ============================================
       DESIGN SYSTEM
       ============================================ */
    :root {
      --primary: #E8653A;
      --primary-dark: #C24E28;
      --primary-light: #FFF0EB;
      --accent: #1B7A6E;
      --accent-light: #2BA396;
      --accent-bg: #EBF7F5;
      --bg-cream: #FDFAF7;
      --bg-light: #F8F7F5;
      --bg-white: #FFFFFF;
      --text-dark: #1A1A2E;
      --text-body: #3A3A4E;
      --text-muted: #5A5A72;
      --text-light: #8A8A9E;
      --text-on-primary: #FFFFFF;
      --border-light: #EEEAE6;
      --border-card: #E8E4E0;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
      --shadow-lg: 0 12px 32px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --font-heading: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
      --font-body: 'Inter', 'Segoe UI', sans-serif;
      --max-width: 1140px;
      --section-pad: 88px;
      --whatsapp-green: #25D366;
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-body);
      font-size: 18px;
      line-height: 1.7;
      color: var(--text-body);
      background: var(--bg-cream);
    }

    /* ============================================
       UTILITIES
       ============================================ */
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-label {
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--primary);
      margin-bottom: 14px;
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: 36px;
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 18px;
    }

    .section-subtitle {
      font-size: 19px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 640px;
    }

    /* Scroll animations */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============================================
       NAVIGATION
       ============================================ */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(253, 250, 247, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-light);
      transition: box-shadow 0.3s ease;
    }

    .navbar.scrolled {
      box-shadow: var(--shadow-sm);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-brand svg {
      flex-shrink: 0;
    }

    .nav-brand-name {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 22px;
      color: var(--text-dark);
      letter-spacing: 0.3px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--text-dark);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-heading);
      font-size: 15px;
      font-weight: 600;
      color: var(--text-on-primary) !important;
      background: var(--primary);
      padding: 11px 22px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.15s ease;
    }

    .nav-cta:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    /* Hamburger */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2.5px;
      background: var(--text-dark);
      margin: 5px 0;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ============================================
       HERO
       ============================================ */
    .hero {
      padding: 130px 0 var(--section-pad);
      background: var(--bg-cream);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 48px;
      align-items: center;
    }

    .hero-content {
      max-width: 560px;
    }

    .hero h1 {
      font-family: var(--font-heading);
      font-size: 42px;
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.15;
      margin-bottom: 22px;
      letter-spacing: -0.5px;
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero-desc {
      font-size: 19px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 36px;
    }

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

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: 700;
      color: var(--text-on-primary);
      background: var(--primary);
      padding: 15px 30px;
      border-radius: var(--radius-md);
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 14px rgba(232, 101, 58, 0.3);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(232, 101, 58, 0.35);
    }

    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 600;
      color: var(--text-dark);
      background: var(--bg-white);
      border: 1.5px solid var(--border-card);
      padding: 14px 24px;
      border-radius: var(--radius-md);
      text-decoration: none;
      transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    }

    .btn-whatsapp:hover {
      border-color: var(--whatsapp-green);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
    }

    .btn-whatsapp svg {
      flex-shrink: 0;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 600;
      color: var(--text-muted);
      text-decoration: none;
      padding: 14px 8px;
      transition: color 0.2s ease;
    }

    .btn-secondary:hover {
      color: var(--text-dark);
    }

    .hero-trust {
      font-size: 15px;
      color: var(--text-light);
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .hero-trust span {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .hero-trust span::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
    }

    .hero-trust span:first-child::before {
      display: none;
    }

    .hero-screenshot {
      position: relative;
    }

    .hero-screenshot img {
      width: 100%;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-card);
      box-shadow: var(--shadow-lg);
    }

    .hero-screenshot-badge {
      position: absolute;
      bottom: -14px;
      left: 24px;
      background: var(--accent);
      color: var(--text-on-primary);
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 700;
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow-md);
    }

    /* ============================================
       STATS BAR
       ============================================ */
    .stats-section {
      padding: 0 0 var(--section-pad);
    }

    .stats-bar {
      background: var(--accent);
      border-radius: var(--radius-lg);
      padding: 32px 48px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      box-shadow: 0 8px 24px rgba(27, 122, 110, 0.2);
    }

    .stat-item {
      text-align: center;
      color: var(--text-on-primary);
    }

    .stat-value {
      font-family: var(--font-heading);
      font-size: 30px;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 14px;
      font-weight: 500;
      opacity: 0.85;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .stat-divider {
      width: 1px;
      height: 44px;
      background: rgba(255,255,255,0.2);
    }

    /* ============================================
       PROBLEM SECTION
       ============================================ */
    .problems-section {
      padding: var(--section-pad) 0;
      background: var(--bg-light);
    }

    .problems-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      margin-top: 48px;
      align-items: start;
    }

    .problems-questions h3 {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 24px;
    }

    .problem-question {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border-light);
      font-size: 17px;
      color: var(--text-body);
      line-height: 1.6;
    }

    .problem-question:last-child {
      border-bottom: none;
    }

    .pq-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      margin-top: 2px;
      color: var(--primary);
      font-weight: 700;
    }

    .familiar-list h3 {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 24px;
    }

    .familiar-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      font-size: 17px;
      color: var(--text-body);
      line-height: 1.6;
    }

    .familiar-dot {
      flex-shrink: 0;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--primary);
      margin-top: 8px;
    }

    /* ============================================
       OUTCOMES ROW
       ============================================ */
    .outcomes-section {
      padding: var(--section-pad) 0;
    }

    .outcomes-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 44px;
    }

    .outcome-card {
      background: var(--bg-white);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-md);
      padding: 32px 24px;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .outcome-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .outcome-icon {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-md);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .outcome-icon.stock { background: #EBF7F5; }
    .outcome-icon.profit { background: #F0FBE6; }
    .outcome-icon.offline { background: #EEF0FF; }
    .outcome-icon.security { background: #FFF5E6; }

    .outcome-title {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .outcome-desc {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ============================================
       FEATURES SECTION
       ============================================ */
    .features-section {
      padding: var(--section-pad) 0;
      background: var(--bg-light);
    }

    .features-section .section-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .features-section .section-subtitle {
      margin: 0 auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .feature-block {
      background: var(--bg-white);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-lg);
      padding: 36px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .feature-block:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .feature-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }

    .feature-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .feature-icon-wrap.pos { background: #FFF0EB; }
    .feature-icon-wrap.inventory { background: #EBF7F5; }
    .feature-icon-wrap.reports { background: #F0FBE6; }
    .feature-icon-wrap.staff { background: #FFF5E6; }
    .feature-icon-wrap.checkout { background: #EEF0FF; }
    .feature-icon-wrap.email { background: #F5EEFF; }

    .feature-block h3 {
      font-family: var(--font-heading);
      font-size: 20px;
      font-weight: 700;
      color: var(--text-dark);
    }

    .feature-desc {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 18px;
      line-height: 1.6;
    }

    .feature-list {
      list-style: none;
      margin-bottom: 20px;
    }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 7px 0;
      font-size: 16px;
      color: var(--text-body);
      line-height: 1.6;
    }

    .feature-list li::before {
      content: '✓';
      flex-shrink: 0;
      color: var(--accent);
      font-weight: 700;
      font-size: 16px;
      margin-top: 2px;
    }

    .feature-screenshot-wrap {
      margin-top: 20px;
    }

    .feature-screenshot-wrap img.desktop-shot {
      width: 100%;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s ease;
    }

    .feature-screenshot-wrap img.desktop-shot:hover {
      transform: scale(1.02);
    }

    /* ============================================
       SCREENSHOT GALLERY
       ============================================ */
    .gallery-section {
      padding: var(--section-pad) 0;
    }

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

    .gallery-section .section-subtitle {
      margin: 0 auto;
    }

    .gallery-track {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      max-width: 960px;
      margin: 0 auto;
    }

    .gallery-item {
      text-align: center;
    }

    .gallery-item img {
      width: 100%;
      max-width: 240px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-card);
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .gallery-item img:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .gallery-caption {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 10px;
      font-weight: 500;
    }

    .gallery-note {
      text-align: center;
      margin-top: 32px;
      font-size: 15px;
      color: var(--text-light);
      font-style: italic;
    }

    /* ============================================
       BUSINESS TYPES
       ============================================ */
    .business-section {
      padding: var(--section-pad) 0;
    }

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

    .business-section .section-subtitle {
      margin: 0 auto;
    }

    .business-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      max-width: 820px;
      margin: 0 auto;
    }

    .business-card {
      background: var(--bg-white);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .business-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .business-icon {
      width: 60px;
      height: 60px;
      border-radius: var(--radius-md);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .business-icon.service { background: #EEF0FF; }
    .business-icon.product { background: #EBF7F5; }

    .business-card h3 {
      font-family: var(--font-heading);
      font-size: 20px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .business-card p {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .business-examples {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-top: 14px;
    }

    .business-tag {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      background: var(--bg-light);
      padding: 5px 12px;
      border-radius: 20px;
      border: 1px solid var(--border-light);
    }

    /* ============================================
       COMPARISON / BEFORE-AFTER
       ============================================ */
    .compare-section {
      padding: var(--section-pad) 0;
      background: var(--bg-light);
    }

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

    .compare-section .section-subtitle {
      margin: 0 auto;
    }

    .compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      max-width: 820px;
      margin: 0 auto;
    }

    .compare-card {
      border-radius: var(--radius-lg);
      padding: 36px;
    }

    .compare-card.before {
      background: var(--bg-white);
      border: 1px solid var(--border-card);
    }

    .compare-card.after {
      background: var(--text-dark);
      color: var(--text-on-primary);
    }

    .compare-card h3 {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .compare-card.before h3 {
      color: var(--text-muted);
    }

    .compare-card.after h3 {
      color: var(--primary);
    }

    .compare-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      font-size: 16px;
      line-height: 1.6;
    }

    .compare-x {
      flex-shrink: 0;
      color: #D44;
      font-weight: 700;
      font-size: 16px;
    }

    .compare-check {
      flex-shrink: 0;
      color: var(--accent-light);
      font-weight: 700;
      font-size: 16px;
    }

    .compare-card.after .compare-item {
      color: rgba(255,255,255,0.88);
    }

    /* ============================================
       HOW IT WORKS
       ============================================ */
    .how-section {
      padding: var(--section-pad) 0;
    }

    .how-section .section-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .how-section .section-subtitle {
      margin: 0 auto;
    }

    .how-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 36px;
      max-width: 920px;
      margin: 0 auto;
    }

    .how-step {
      text-align: center;
      position: relative;
    }

    .step-number {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--primary);
      color: var(--text-on-primary);
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
    }

    .how-step h3 {
      font-family: var(--font-heading);
      font-size: 19px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .how-step p {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .how-step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 26px;
      right: -18px;
      width: 36px;
      height: 2px;
      background: var(--border-card);
    }

    .how-cta {
      text-align: center;
      margin-top: 44px;
    }

    /* ============================================
       DEMO VIDEO
       ============================================ */
    .demo-section {
      padding: var(--section-pad) 0;
      background: var(--bg-light);
    }

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

    .demo-section .section-subtitle {
      margin: 0 auto;
    }

    .demo-wrapper {
      max-width: 820px;
      margin: 0 auto;
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      background: var(--text-dark);
      aspect-ratio: 16 / 9;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .demo-wrapper:hover {
      transform: scale(1.01);
    }

    .demo-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.5;
      position: absolute;
      top: 0;
      left: 0;
    }

    .demo-play-overlay {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .demo-play-btn {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 28px rgba(232, 101, 58, 0.4);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      margin-bottom: 16px;
    }

    .demo-wrapper:hover .demo-play-btn {
      transform: scale(1.1);
      box-shadow: 0 12px 36px rgba(232, 101, 58, 0.5);
    }

    .demo-play-text {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 700;
      color: var(--text-on-primary);
      display: block;
    }

    .demo-play-sub {
      font-size: 15px;
      color: rgba(255,255,255,0.7);
      margin-top: 4px;
      display: block;
    }

    /* ============================================
       USER STORY
       ============================================ */
    .story-section {
      padding: var(--section-pad) 0;
    }

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

    .story-section .section-subtitle {
      margin: 0 auto;
    }

    .story-card {
      background: var(--bg-white);
      border: 1px solid var(--border-card);
      border-radius: var(--radius-lg);
      max-width: 860px;
      margin: 0 auto;
      overflow: hidden;
    }

    .story-header {
      background: linear-gradient(135deg, var(--text-dark) 0%, #2A2A42 100%);
      color: var(--text-on-primary);
      padding: 32px 40px;
    }

    .story-header h3 {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .story-header p {
      font-size: 16px;
      opacity: 0.85;
      line-height: 1.6;
    }

    .story-body {
      padding: 36px 40px;
    }

    .story-moment {
      display: flex;
      align-items: flex-start;
      gap: 22px;
      padding: 22px 0;
      border-bottom: 1px solid var(--border-light);
    }

    .story-moment:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .story-time {
      flex-shrink: 0;
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 700;
      color: var(--primary);
      background: var(--primary-light);
      padding: 7px 14px;
      border-radius: var(--radius-sm);
      white-space: nowrap;
      margin-top: 2px;
    }

    .story-moment h4 {
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .story-moment p {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .story-impact {
      margin-top: 12px;
      font-size: 15px;
      color: var(--accent);
      font-weight: 600;
      font-style: italic;
    }

    /* ============================================
       PERMISSIONS TABLE
       ============================================ */
    .permissions-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 15px;
      margin-top: 14px;
      border-radius: var(--radius-sm);
      overflow: hidden;
    }

    .permissions-table th {
      background: var(--text-dark);
      color: var(--text-on-primary);
      padding: 10px 12px;
      text-align: left;
      font-weight: 600;
      font-size: 14px;
    }

    .permissions-table td {
      padding: 10px 12px;
      border-bottom: 1px solid var(--border-light);
    }

    .permissions-table tr:nth-child(even) {
      background: var(--bg-light);
    }

    /* ============================================
       PROFIT TABLE
       ============================================ */
    .profit-examples {
      background: var(--accent-bg);
      border: 1px solid rgba(27, 122, 110, 0.15);
      border-radius: var(--radius-sm);
      padding: 16px 18px;
      margin-top: 14px;
      font-size: 15px;
      line-height: 1.9;
    }

    .profit-examples strong {
      color: var(--accent);
    }

    /* ============================================
       FAQ SECTION
       ============================================ */
    .faq-section {
      padding: var(--section-pad) 0;
      background: var(--bg-light);
    }

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

    .faq-section .section-subtitle {
      margin: 0 auto;
    }

    .faq-list {
      max-width: 780px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--border-light);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 0;
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: 700;
      color: var(--text-dark);
      text-align: left;
      transition: color 0.2s ease;
    }

    .faq-question:hover {
      color: var(--primary);
    }

    .faq-chevron {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
    }

    .faq-answer-inner {
      padding: 0 0 22px;
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ============================================
       CTA SECTION
       ============================================ */
    .cta-section {
      padding: var(--section-pad) 0;
      background: var(--text-dark);
      text-align: center;
    }

    .cta-section h2 {
      font-family: var(--font-heading);
      font-size: 38px;
      font-weight: 800;
      color: var(--text-on-primary);
      margin-bottom: 14px;
    }

    .cta-section .cta-desc {
      font-size: 19px;
      color: rgba(255,255,255,0.7);
      margin-bottom: 36px;
      line-height: 1.7;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .cta-section .btn-primary {
      font-size: 18px;
      padding: 17px 36px;
    }

    .cta-section .btn-whatsapp {
      background: transparent;
      border-color: rgba(255,255,255,0.3);
      color: var(--text-on-primary);
    }

    .cta-section .btn-whatsapp:hover {
      background: rgba(255,255,255,0.08);
      border-color: var(--whatsapp-green);
    }

    .cta-contacts {
      display: flex;
      justify-content: center;
      gap: 36px;
      margin-top: 32px;
      flex-wrap: wrap;
    }

    .cta-contact-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      color: rgba(255,255,255,0.6);
    }

    .cta-contact-item a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .cta-contact-item a:hover {
      color: var(--primary);
    }

    .cta-platforms {
      font-size: 15px;
      color: rgba(255,255,255,0.4);
      margin-top: 24px;
    }

    /* ============================================
       FLOATING WHATSAPP
       ============================================ */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--whatsapp-green);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-decoration: none;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-float .tooltip {
      position: absolute;
      right: 72px;
      background: var(--text-dark);
      color: var(--text-on-primary);
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
    }

    .whatsapp-float:hover .tooltip {
      opacity: 1;
    }

    /* ============================================
       FOOTER
       ============================================ */
    .footer {
      background: #141424;
      padding: 36px 0;
      text-align: center;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-brand {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 700;
      color: rgba(255,255,255,0.7);
    }

    .footer-copy {
      font-size: 14px;
      color: rgba(255,255,255,0.35);
    }

    .footer-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .footer-links a {
      font-size: 15px;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: rgba(255,255,255,0.8);
    }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 1024px) {
      :root {
        --section-pad: 64px;
      }

      .hero h1 {
        font-size: 36px;
      }

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

      .hero-screenshot {
        max-width: 600px;
        margin: 0 auto;
      }

      .section-title {
        font-size: 30px;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .how-step:not(:last-child)::after {
        display: none;
      }
    }

    @media (max-width: 768px) {
      :root {
        --section-pad: 52px;
      }

      body {
        font-size: 17px;
      }

      .container {
        padding: 0 20px;
      }

      /* ── Utilities ── */
      .section-subtitle {
        max-width: 100%;
      }

      .section-label {
        font-size: 13px;
      }

      /* ── Nav mobile ── */
      .nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--bg-cream);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 17px;
        border-bottom: 1px solid var(--border-light);
      }

      .nav-links li:last-child a {
        border-bottom: none;
      }

      .nav-links .nav-cta {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 12px;
        padding: 14px 22px;
      }

      .nav-toggle {
        display: block;
      }

      /* ── Hero mobile ── */
      .hero {
        padding-top: 110px;
      }

      .hero h1 {
        font-size: 28px;
      }

      .hero-desc {
        font-size: 17px;
        margin-bottom: 28px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions .btn-primary,
      .hero-actions .btn-whatsapp {
        justify-content: center;
        text-align: center;
        width: 100%;
        padding: 16px 24px;
      }

      .hero-trust {
        justify-content: center;
        font-size: 14px;
        margin-top: 4px;
      }

      .hero-screenshot-badge {
        font-size: 12px;
        padding: 6px 12px;
        bottom: -10px;
        left: 16px;
      }

      /* ── Stats mobile ── */
      .stats-bar {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
      }

      .stat-divider {
        width: 60px;
        height: 1px;
      }

      /* ── Problems mobile ── */
      .problems-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 32px;
      }

      .problems-questions h3,
      .familiar-list h3 {
        font-size: 20px;
        margin-bottom: 16px;
      }

      .problem-question {
        font-size: 16px;
        gap: 12px;
        padding: 12px 0;
      }

      .familiar-item {
        font-size: 16px;
        gap: 12px;
        padding: 12px 0;
      }

      /* ── Outcomes mobile ── */
      .outcomes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-top: 32px;
      }

      .outcome-card {
        padding: 22px 14px;
      }

      .outcome-title {
        font-size: 16px;
      }

      .outcome-desc {
        font-size: 15px;
      }

      /* ── Features mobile ── */
      .features-section .section-header {
        margin-bottom: 36px;
      }

      .feature-block {
        padding: 24px 20px;
      }

      .feature-block h3 {
        font-size: 18px;
      }

      .feature-desc {
        font-size: 15px;
      }

      .feature-list li {
        font-size: 15px;
        padding: 6px 0;
      }

      /* Permissions table: horizontal scroll on small screens */
      .permissions-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 13px;
        white-space: nowrap;
      }

      .permissions-table th {
        font-size: 12px;
        padding: 8px 10px;
      }

      .permissions-table td {
        padding: 8px 10px;
      }

      /* Profit examples */
      .profit-examples {
        font-size: 14px;
        padding: 14px 14px;
        line-height: 1.8;
        word-break: break-word;
      }

      /* ── Gallery mobile ── */
      .gallery-section .section-header {
        margin-bottom: 32px;
      }

      .gallery-track {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 12px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
      }

      .gallery-item {
        flex: 0 0 160px;
        scroll-snap-align: start;
      }

      .gallery-item img {
        max-width: 100%;
      }

      .gallery-caption {
        font-size: 13px;
        margin-top: 8px;
      }

      .gallery-note {
        font-size: 14px;
        margin-top: 20px;
      }

      /* ── Business types mobile ── */
      .business-grid {
        grid-template-columns: 1fr;
      }

      .business-card {
        padding: 28px 20px;
      }

      .business-card h3 {
        font-size: 18px;
      }

      .business-tag {
        font-size: 12px;
        padding: 4px 10px;
      }

      /* ── Compare mobile ── */
      .compare-grid {
        grid-template-columns: 1fr;
      }

      .compare-card {
        padding: 28px 20px;
      }

      .compare-item {
        font-size: 15px;
        padding: 8px 0;
      }

      /* ── How it works mobile ── */
      .how-section .section-header {
        margin-bottom: 36px;
      }

      .how-steps {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .how-step h3 {
        font-size: 18px;
      }

      .how-step p {
        font-size: 15px;
      }

      /* ── Demo mobile ── */
      .demo-section .section-header {
        margin-bottom: 32px;
      }

      .demo-play-btn {
        width: 64px;
        height: 64px;
      }

      .demo-play-text {
        font-size: 16px;
      }

      .demo-play-sub {
        font-size: 13px;
      }

      /* ── Story mobile ── */
      .story-section .section-header {
        margin-bottom: 32px;
      }

      .story-header {
        padding: 24px 20px;
      }

      .story-header h3 {
        font-size: 19px;
      }

      .story-header p {
        font-size: 15px;
      }

      .story-body {
        padding: 20px 20px;
      }

      .story-moment {
        flex-direction: column;
        gap: 10px;
        padding: 18px 0;
      }

      .story-moment h4 {
        font-size: 16px;
      }

      .story-moment p {
        font-size: 15px;
      }

      .story-impact {
        font-size: 14px;
      }

      /* ── FAQ mobile ── */
      .faq-section .section-header {
        margin-bottom: 32px;
      }

      .faq-question {
        font-size: 16px;
        padding: 20px 0;
        gap: 12px;
        min-height: 56px;
      }

      .faq-answer-inner {
        font-size: 15px;
        padding-bottom: 18px;
      }

      /* ── CTA mobile ── */
      .cta-section {
        padding: var(--section-pad) 0;
      }

      .cta-section h2 {
        font-size: 26px;
        margin-bottom: 12px;
      }

      .cta-section .cta-desc {
        font-size: 16px;
        margin-bottom: 28px;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .cta-buttons .btn-primary,
      .cta-buttons .btn-whatsapp {
        justify-content: center;
        text-align: center;
        width: 100%;
        padding: 16px 24px;
      }

      .cta-section .btn-primary {
        font-size: 17px !important;
        padding: 16px 24px !important;
      }

      .cta-contacts {
        flex-direction: column;
        gap: 14px;
        align-items: center;
        margin-top: 24px;
      }

      .cta-contact-item {
        font-size: 15px;
      }

      .cta-platforms {
        font-size: 13px;
        margin-top: 18px;
      }

      /* ── Footer mobile ── */
      .footer {
        padding: 28px 0;
      }

      .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
      }

      .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
      }

      .footer-links a {
        font-size: 14px;
      }

      .footer-copy {
        font-size: 13px;
      }

      /* ── WhatsApp float mobile ── */
      .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
      }

      .whatsapp-float .tooltip {
        display: none;
      }
    }

    /* ── Extra-small: 480px and below ── */
    @media (max-width: 480px) {
      .container {
        padding: 0 16px;
      }

      .hero {
        padding-top: 100px;
      }

      .hero h1 {
        font-size: 24px;
        line-height: 1.2;
      }

      .hero-desc {
        font-size: 16px;
      }

      .section-title {
        font-size: 23px;
      }

      .section-subtitle {
        font-size: 16px;
      }

      .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .outcome-card {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 18px 16px;
      }

      .outcome-icon {
        margin-bottom: 0;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
      }

      .outcome-title {
        font-size: 15px;
        margin-bottom: 4px;
      }

      .outcome-desc {
        font-size: 14px;
      }

      .stat-value {
        font-size: 26px;
      }

      .stats-bar {
        padding: 24px 20px;
        gap: 16px;
      }

      .feature-block {
        padding: 20px 16px;
      }

      .feature-block h3 {
        font-size: 17px;
      }

      .feature-header {
        gap: 10px;
      }

      .feature-icon-wrap {
        width: 40px;
        height: 40px;
      }

      .compare-card {
        padding: 22px 16px;
      }

      .compare-card h3 {
        font-size: 16px;
        margin-bottom: 18px;
      }

      .compare-item {
        font-size: 14px;
        gap: 10px;
      }

      .how-step p {
        font-size: 14px;
      }

      .story-header h3 {
        font-size: 17px;
      }

      .story-header p {
        font-size: 14px;
      }

      .story-moment h4 {
        font-size: 15px;
      }

      .story-moment p {
        font-size: 14px;
      }

      .story-time {
        font-size: 12px;
        padding: 5px 10px;
      }

      .faq-question {
        font-size: 15px;
      }

      .faq-answer-inner {
        font-size: 14px;
      }

      .cta-section h2 {
        font-size: 23px;
      }

      .cta-section .cta-desc {
        font-size: 15px;
      }

      .demo-play-btn {
        width: 56px;
        height: 56px;
      }

      .demo-play-text {
        font-size: 15px;
      }

      .demo-play-sub {
        font-size: 12px;
      }

      .business-card {
        padding: 24px 16px;
      }

      .profit-examples {
        font-size: 13px;
        padding: 12px 12px;
      }

      .permissions-table th {
        font-size: 11px;
        padding: 6px 8px;
      }

      .permissions-table td {
        font-size: 12px;
        padding: 6px 8px;
      }
    }
