    /* ===== CSS CUSTOM PROPERTIES ===== */
    :root {
      --color-bg: #FAFAF8;
      --color-bg-2: #F2F0EB;
      --color-accent: #4CAF82;
      --color-accent-2: #FF8C61;
      --color-accent-soft: #E8F5EE;
      --color-text: #1A1A1A;
      --color-text-muted: #7A7A7A;
      --color-muted: #7A7A7A;
      --color-border: #E5E2DC;
      --max-width: 1160px;
      --radius-card: 20px;
      --radius-btn: 100px;
      --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--color-bg);
      color: var(--color-text);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    ul { list-style: none; }
    body { overflow-x: hidden; }

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

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius-btn);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--color-text);
      color: #fff;
      border-color: var(--color-text);
    }
    .btn-primary:hover {
      background: #333;
      border-color: #333;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .btn-accent {
      background: var(--color-accent-2);
      color: #fff;
      border-color: var(--color-accent-2);
    }
    .btn-accent:hover {
      background: #ff7a4a;
      border-color: #ff7a4a;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(255,140,97,0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--color-text);
      border-color: var(--color-border);
    }
    .btn-outline:hover {
      border-color: var(--color-text);
      transform: translateY(-1px);
    }

    .btn-outline-accent {
      background: transparent;
      color: var(--color-accent);
      border-color: var(--color-accent);
    }
    .btn-outline-accent:hover {
      background: var(--color-accent-soft);
      transform: translateY(-1px);
    }

    .section-tag {
      display: inline-block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: 16px;
    }

    /* ===== REVEAL ANIMATION ===== */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }
    .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; }

    /* ===== KEYFRAMES ===== */
    @keyframes float {
      0%, 100% { transform: perspective(800px) rotateY(-5deg) translateY(0); }
      50% { transform: perspective(800px) rotateY(-5deg) translateY(-10px); }
    }

    @keyframes scan {
      0%, 100% { top: 10%; }
      50% { top: 80%; }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    /* ===== HEADER ===== */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--color-bg);
      height: 64px;
      border-bottom: 1px solid transparent;
      transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }
    header.scrolled {
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      border-bottom-color: var(--color-border);
    }

    .header-inner {
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--color-text);
      flex-shrink: 0;
    }
    .logo-icon {
      width: 28px;
      height: 28px;
      background: var(--color-accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .logo-icon svg { width: 16px; height: 16px; }

    nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    nav a {
      font-size: 15px;
      font-weight: 500;
      color: var(--color-text);
      opacity: 0.75;
      transition: opacity 0.2s;
    }
    nav a:hover { opacity: 1; }

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

    .nav-mobile {
      display: none;
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--color-bg);
      border-bottom: 1px solid var(--color-border);
      padding: 16px 24px 24px;
      flex-direction: column;
      gap: 0;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      font-size: 16px;
      font-weight: 500;
      color: var(--color-text);
      padding: 14px 0;
      border-bottom: 1px solid var(--color-border);
      opacity: 0.85;
    }
    .nav-mobile a:last-child { border-bottom: none; }
    .nav-mobile .btn { margin-top: 16px; justify-content: center; }

    /* ===== HERO ===== */
    .hero {
      background: var(--color-bg);
      padding: 80px 0 100px;
      position: relative;
      overflow: hidden;
    }

    .hero-blob {
      position: absolute;
      border-radius: 50%;
      background: var(--color-accent-soft);
      filter: blur(80px);
      z-index: 0;
    }
    .hero-blob-1 {
      width: 500px;
      height: 500px;
      top: -100px;
      right: -100px;
      opacity: 0.7;
    }
    .hero-blob-2 {
      width: 350px;
      height: 350px;
      bottom: -80px;
      left: -80px;
      opacity: 0.5;
    }
    .hero-blob-3 {
      width: 280px;
      height: 280px;
      top: 40%;
      left: 35%;
      opacity: 0.4;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 55% 45%;
      align-items: center;
      gap: 48px;
    }

    .hero-eyebrow {
      font-size: 13px;
      font-weight: 600;
      color: var(--color-accent);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 58px;
      font-weight: 600;
      line-height: 1.08;
      color: var(--color-text);
      margin-bottom: 24px;
    }

    .hero-sub {
      font-size: 18px;
      color: var(--color-text-muted);
      max-width: 420px;
      line-height: 1.65;
      margin-bottom: 36px;
    }

    .hero-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .store-btn {
      display: inline-block;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .store-btn:hover { transform: translateY(-2px); opacity: 0.9; }
    .store-btn img { height: 52px; width: auto; display: block; }

    .hero-proof {
      font-size: 14px;
      color: var(--color-text-muted);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .proof-avatars {
      height: 36px;
      width: auto;
    }
    .proof-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .proof-stars {
      display: flex;
      gap: 2px;
    }
    .proof-stars img {
      width: 16px;
      height: 16px;
    }

    .hero-image-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-image-wrap img {
      max-height: 600px;
      width: 100%;
      object-fit: contain;
      animation: float 4s ease-in-out infinite;
    }

    /* ===== SOCIAL PROOF BAR ===== */
    .proof-bar {
      background: var(--color-bg-2);
      padding: 48px 0;
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
    }

    .proof-bar-inner {
      display: flex;
      justify-content: space-around;
      align-items: center;
    }

    .proof-stat {
      text-align: center;
      flex: 1;
      padding: 0 24px;
      position: relative;
    }
    .proof-stat + .proof-stat::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10%;
      height: 80%;
      width: 1px;
      background: var(--color-border);
    }

    .proof-stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 600;
      color: var(--color-text);
      line-height: 1;
      margin-bottom: 8px;
    }
    .proof-stat-label {
      font-size: 12px;
      color: var(--color-text-muted);
      letter-spacing: 0.5px;
    }

    /* ===== CAMERA FEATURE ===== */
    .camera-section {
      background: var(--color-bg-2);
      padding: 100px 0;
    }

    .camera-inner {
      display: grid;
      grid-template-columns: 45% 55%;
      gap: 64px;
      align-items: center;
    }

    .camera-image-wrap {
      display: flex;
      justify-content: center;
    }

    .camera-phone-frame {
      position: relative;
      display: inline-block;
      border-radius: 36px;
      overflow: hidden;
      max-width: 300px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.18);
    }
    .camera-phone-frame img {
      width: 100%;
      display: block;
    }

    .scan-line {
      position: absolute;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--color-accent);
      box-shadow: 0 0 8px var(--color-accent), 0 0 16px rgba(76,175,130,0.4);
      animation: scan 3s ease-in-out infinite;
      z-index: 2;
    }

    /* Corner brackets */
    .scan-corners {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
    }
    .scan-corners::before,
    .scan-corners::after {
      content: '';
      position: absolute;
      width: 24px;
      height: 24px;
      border-color: var(--color-accent);
      border-style: solid;
    }
    .scan-corners::before {
      top: 16px;
      left: 16px;
      border-width: 2px 0 0 2px;
      border-radius: 4px 0 0 0;
    }
    .scan-corners::after {
      top: 16px;
      right: 16px;
      border-width: 2px 2px 0 0;
      border-radius: 0 4px 0 0;
    }
    .scan-corners-b::before,
    .scan-corners-b::after {
      content: '';
      position: absolute;
      width: 24px;
      height: 24px;
      border-color: var(--color-accent);
      border-style: solid;
    }
    .scan-corners-b {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
    }
    .scan-corners-b::before {
      bottom: 16px;
      left: 16px;
      border-width: 0 0 2px 2px;
      border-radius: 0 0 0 4px;
    }
    .scan-corners-b::after {
      bottom: 16px;
      right: 16px;
      border-width: 0 2px 2px 0;
      border-radius: 0 0 4px 0;
    }

    .camera-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      font-weight: 600;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .camera-text p {
      font-size: 17px;
      color: var(--color-text-muted);
      max-width: 400px;
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .checklist {
      margin-bottom: 32px;
    }
    .checklist li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      font-weight: 500;
      padding: 8px 0;
      color: var(--color-text);
    }
    .check-icon {
      width: 22px;
      height: 22px;
      background: var(--color-accent-soft);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--color-accent);
      font-size: 12px;
      font-weight: 700;
    }

    /* ===== AI ANALYSIS ===== */
    .ai-section {
      background: var(--color-bg);
      padding: 100px 0;
    }

    .ai-inner {
      display: grid;
      grid-template-columns: 55% 45%;
      gap: 64px;
      align-items: center;
    }

    .ai-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 44px;
      font-weight: 600;
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .ai-text p {
      font-size: 17px;
      color: var(--color-text-muted);
      max-width: 420px;
      line-height: 1.7;
      margin-bottom: 28px;
    }

    /* Phone mockup CSS */
    .phone-mockup-css {
      display: flex;
      justify-content: center;
    }

    .phone-frame-css {
      width: min(280px, 90vw);
      background: #1A1A1A;
      border-radius: 36px;
      padding: 12px;
      box-shadow: 0 32px 80px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
      position: relative;
    }
    .phone-frame-css::before {
      content: '';
      display: block;
      width: 80px;
      height: 6px;
      background: #333;
      border-radius: 3px;
      margin: 0 auto 10px;
    }

    .phone-screen {
      background: #fff;
      border-radius: 26px;
      overflow: hidden;
      min-height: 440px;
      display: flex;
      flex-direction: column;
    }

    .phone-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px 12px;
      border-bottom: 1px solid #F0F0F0;
    }
    .phone-header-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--color-text);
    }
    .online-dot {
      width: 8px;
      height: 8px;
      background: var(--color-accent);
      border-radius: 50%;
      animation: pulse-dot 2s ease-in-out infinite;
    }

    .chat-body {
      flex: 1;
      padding: 16px 12px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      overflow: hidden;
    }

    .chat-bubble {
      max-width: 88%;
      padding: 10px 14px;
      border-radius: 14px;
      font-size: 12px;
      line-height: 1.55;
      color: var(--color-text);
    }
    .chat-bubble.ai {
      background: var(--color-accent-soft);
      align-self: flex-start;
      border-bottom-left-radius: 4px;
    }
    .chat-bubble .ai-label {
      font-size: 10px;
      font-weight: 600;
      color: var(--color-accent);
      margin-bottom: 4px;
      letter-spacing: 0.5px;
    }
    .chat-bubble .suggestion-list {
      margin-top: 6px;
    }
    .chat-bubble .suggestion-list p {
      font-size: 12px;
      color: var(--color-text);
      margin: 2px 0;
    }

    .phone-input-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      border-top: 1px solid #F0F0F0;
    }
    .phone-input-field {
      flex: 1;
      background: #F5F5F5;
      border-radius: 20px;
      height: 34px;
      font-size: 12px;
      color: #aaa;
      padding: 0 14px;
      display: flex;
      align-items: center;
    }
    .phone-send-btn {
      width: 34px;
      height: 34px;
      background: var(--color-accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .phone-send-btn svg { width: 14px; height: 14px; }

    /* ===== FEATURE GRID ===== */
    .features-section {
      background: var(--color-bg);
      padding: 100px 0;
    }

    .features-title {
      text-align: center;
      margin-bottom: 56px;
    }
    .features-title h2 {
      font-family: 'Playfair Display', serif;
      font-size: 40px;
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 0;
      white-space: pre-line;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .feature-card {
      background: #fff;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-card);
      padding: 32px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      cursor: default;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(76,175,130,0.12);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      background: var(--color-accent-soft);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .feature-icon svg {
      width: 24px;
      height: 24px;
      color: var(--color-accent);
    }

    .feature-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .feature-card p {
      font-size: 15px;
      color: var(--color-text-muted);
      line-height: 1.65;
    }

    /* ===== PROGRESS SECTION ===== */
    .progress-section {
      background: #1A2E1F;
      padding: 100px 0;
    }

    .progress-inner {
      display: grid;
      grid-template-columns: 50% 50%;
      gap: 64px;
      align-items: center;
    }

    .progress-text .section-tag {
      color: #6FCF9A;
      background: rgba(76,175,130,0.12);
      padding: 4px 12px;
      border-radius: 20px;
    }

    .progress-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 44px;
      font-weight: 600;
      line-height: 1.15;
      color: #fff;
      margin-bottom: 20px;
    }
    .progress-text p {
      font-size: 17px;
      color: #A8C4AE;
      line-height: 1.7;
      max-width: 420px;
      margin-bottom: 40px;
    }

    .progress-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .progress-stat-item {
      padding: 20px;
      background: rgba(255,255,255,0.04);
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.07);
    }
    .progress-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 600;
      color: var(--color-accent);
      margin-bottom: 6px;
    }
    .progress-stat-label {
      font-size: 13px;
      color: #A8C4AE;
      line-height: 1.5;
    }

    /* Phone fan */
    .phone-fan {
      position: relative;
      height: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .phone-frame {
      position: absolute;
      width: 200px;
      border: 2px solid rgba(255,255,255,0.12);
      border-radius: 36px;
      overflow: hidden;
      background: #111;
    }
    .phone-frame img {
      width: 100%;
      height: auto;
      display: block;
    }
    .phone-frame-1 {
      transform: rotate(-8deg) translateX(-60px);
      opacity: 0.5;
      z-index: 1;
    }
    .phone-frame-2 {
      transform: rotate(-3deg) translateX(-20px);
      opacity: 0.75;
      z-index: 2;
    }
    .phone-frame-3 {
      transform: rotate(3deg) translateX(20px);
      opacity: 1;
      z-index: 3;
    }

    /* ===== HOW IT WORKS ===== */
    .hiw-section {
      background: var(--color-bg);
      padding: 100px 0;
    }

    .hiw-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .hiw-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 40px;
      font-weight: 600;
      margin-bottom: 12px;
    }
    .hiw-header p {
      font-size: 17px;
      color: var(--color-text-muted);
    }

    .hiw-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      position: relative;
    }

    .hiw-connector {
      position: absolute;
      top: 28px;
      left: calc(16.66% + 28px);
      right: calc(16.66% + 28px);
      height: 0;
      border-top: 2px dashed var(--color-accent);
      z-index: 0;
      opacity: 0.4;
    }

    .hiw-step {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .step-circle {
      width: 56px;
      height: 56px;
      background: var(--color-accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 600;
      color: #fff;
      margin: 0 auto 20px;
    }

    .step-icon-wrap {
      width: 56px;
      height: 56px;
      background: var(--color-accent-soft);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }
    .step-icon-wrap svg {
      width: 24px;
      height: 24px;
      color: var(--color-accent);
    }

    .hiw-step h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .hiw-step p {
      font-size: 15px;
      color: var(--color-text-muted);
      line-height: 1.65;
    }

    /* ===== INTEGRATIONS ===== */
    .integrations-section {
      background: var(--color-bg-2);
      padding: 80px 0;
    }

    .integrations-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .integrations-header h3 {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 600;
      line-height: 1.25;
      white-space: pre-line;
    }

    .integrations-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .integration-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: transform 0.2s;
    }
    .integration-item:hover { transform: translateY(-2px); }

    .integration-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 20px;
      background: #fff;
      border: 1px solid var(--color-border);
      border-radius: 14px;
      filter: grayscale(1) opacity(0.5);
      transition: filter 0.25s ease;
    }
    .integration-item:hover .integration-logo {
      filter: none;
    }
    .integration-logo svg { width: 20px; height: 20px; }
    .integration-logo span {
      font-size: 13px;
      font-weight: 600;
      color: var(--color-text);
      white-space: nowrap;
    }

    .integrations-caption {
      text-align: center;
      font-size: 14px;
      color: var(--color-text-muted);
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section {
      background: var(--color-bg);
      padding: 100px 0;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .testimonials-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 40px;
      font-weight: 600;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testimonial-card {
      background: #fff;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-card);
      padding: 32px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card);
    }

    .testimonial-stars {
      font-size: 16px;
      color: #F5A623;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }

    .testimonial-quote {
      font-size: 15px;
      line-height: 1.7;
      color: var(--color-text);
      margin-bottom: 24px;
      font-style: italic;
    }
    .testimonial-quote::before { content: '"'; }
    .testimonial-quote::after { content: '"'; }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }
    .avatar-pink { background: #F48FB1; }
    .avatar-blue { background: #64B5F6; }
    .avatar-purple { background: #CE93D8; }

    .author-info { flex: 1; }
    .author-name {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 2px;
    }
    .author-badge {
      font-size: 11px;
      color: var(--color-text-muted);
    }

    /* ===== FINAL CTA ===== */
    .final-cta {
      background: linear-gradient(180deg, var(--color-accent-soft) 0%, #fff 100%);
      padding: 120px 24px;
      text-align: center;
    }

    .cta-leaf {
      width: 56px;
      height: 56px;
      background: var(--color-accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 28px;
      font-size: 24px;
    }

    .final-cta h2 {
      font-family: 'Playfair Display', serif;
      font-size: 52px;
      font-weight: 600;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .final-cta .sub {
      font-size: 20px;
      color: var(--color-text-muted);
      max-width: 500px;
      margin: 0 auto 40px;
      line-height: 1.55;
    }

    .final-buttons {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .final-micro {
      font-size: 13px;
      color: var(--color-text-muted);
      margin-bottom: 16px;
    }

    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--color-text-muted);
      background: rgba(0,0,0,0.04);
      padding: 8px 16px;
      border-radius: 20px;
    }

    /* ===== FOOTER ===== */
    footer {
      background: #1A1A1A;
      color: rgba(255,255,255,0.8);
      padding: 80px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 56px;
      border-bottom: 1px solid #333;
    }

    .footer-brand .logo {
      color: #fff;
      margin-bottom: 16px;
    }
    .footer-brand .logo-icon { background: var(--color-accent); }
    .footer-tagline {
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      margin-bottom: 24px;
      line-height: 1.6;
    }

    .social-links {
      display: flex;
      gap: 12px;
    }
    .social-link {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.06);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      color: #666;
    }
    .social-link:hover { background: rgba(255,255,255,0.12); color: #fff; }
    .social-link svg { width: 16px; height: 16px; }

    .footer-col h4 {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: 20px;
    }
    .footer-col ul li + li { margin-top: 12px; }
    .footer-col ul li a {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: rgba(255,255,255,0.9); }

    .footer-bottom {
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-copy {
      font-size: 13px;
      color: rgba(255,255,255,0.35);
    }
    .footer-badges {
      display: flex;
      gap: 12px;
    }
    .footer-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      font-size: 12px;
      font-weight: 500;
      color: rgba(255,255,255,0.7);
      transition: background 0.2s;
    }
    .footer-badge:hover { background: rgba(255,255,255,0.1); }
    .footer-badge svg { width: 14px; height: 14px; }

    /* ===== MOBILE STICKY BAR ===== */
    .mobile-cta-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 99;
      background: #fff;
      padding: 12px 20px;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    .mobile-cta-bar.show { transform: translateY(0); }
    .mobile-cta-bar span {
      font-size: 14px;
      font-weight: 500;
      color: var(--color-text);
    }
    .mobile-cta-bar .btn {
      font-size: 13px;
      padding: 10px 20px;
      background: var(--color-accent);
      color: #fff;
      border-color: var(--color-accent);
    }

    @media (min-width: 769px) {
      .mobile-cta-bar { display: none !important; }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      /* Header */
      nav { display: none; }
      .nav-toggle { display: flex; }
      .header-download { display: none; }

      /* Hero */
      .hero { padding: 48px 0 64px; }
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .hero-inner > *:last-child { order: -1; }
      .hero h1 { font-size: 38px; }
      .hero-image-wrap img { max-height: none; }

      /* Proof bar */
      .proof-bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 8px;
      }
      .proof-stat + .proof-stat::before { display: none; }
      .proof-stat { border: none; padding: 0 8px; }
      .proof-stat:nth-child(odd) { border-right: 1px solid var(--color-border); }
      .proof-stat-number { font-size: 24px; word-break: break-word; }

      /* Camera */
      .camera-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .camera-phone-frame {
        max-width: 220px;
        margin: 0 auto;
      }

      /* AI */
      .ai-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .phone-mockup-css { overflow: hidden; }

      /* Features */
      .features-grid { grid-template-columns: 1fr; }
      .features-title h2 { font-size: 32px; }

      /* Progress */
      .progress-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .progress-text h2 { font-size: 34px; }
      .phone-fan { height: 300px; }
      .phone-frame { width: 130px; }
      .phone-frame-1 { transform: rotate(-8deg) translateX(-40px); }
      .phone-frame-3 { transform: rotate(3deg) translateX(14px); }

      /* HIW */
      .hiw-steps {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .hiw-connector { display: none; }

      /* Integrations */
      .integrations-logos { gap: 16px; }
      .integrations-header h3 { font-size: 26px; }

      /* Testimonials */
      .testimonials-section { overflow: hidden; }
      .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
      }
      .testimonial-card {
        scroll-snap-align: start;
        min-width: 85%;
        flex-shrink: 0;
      }

      /* CTA */
      .final-cta h2 { font-size: 34px; }
      .final-buttons { flex-direction: column; align-items: center; }
      .store-btn img { height: 56px; }
      .hero-buttons { justify-content: center; }
      .hero-proof { justify-content: center; }

      /* Footer */
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; text-align: center; }

      /* Camera section text */
      .camera-text h2 { font-size: 36px; }
      .ai-text h2 { font-size: 34px; }
    }

    @media (max-width: 480px) {
      .proof-bar-inner { grid-template-columns: 1fr 1fr; }
      .store-btn img { height: 44px; }
      .footer-grid { grid-template-columns: 1fr; }
    }
