* { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --navy: #0F172A;
      --blue: #3B82F6;
      --cyan: #06B6D4;
      --slate: #475569;
      --light-slate: #94A3B8;
      --surface: #F8FAFC;
      --white: #FFFFFF;
      --radius: 12px;
    }

    html {
      scroll-padding-top: 80px; /* Offset for sticky nav */
      scroll-padding-bottom: 80px; /* Offset for sticky CTA bar */
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
      color: var(--navy);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      padding-bottom: 70px;
    }
    @media (min-width: 768px) {
      body { padding-bottom: 0; }
    }

    /* ===== NAV ===== */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      padding: 0 16px;
      height: 64px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo { height: 48px; }
    .nav-desktop-only { display: none; }
    .nav-links { display: flex; gap: 6px; }
    .nav-links a {
      text-decoration: none; font-size: 0.8rem; font-weight: 600;
      padding: 16px 12px; border-radius: 8px; transition: all 0.2s;
    }
    .nav-link-ghost { color: var(--navy); }
    .nav-link-ghost:hover { background: var(--surface); }
    .nav-link-primary {
      background: var(--blue); color: var(--white);
    }
    .nav-link-primary:hover { background: #2563EB; }

    /* ===== HERO ===== */
    .hero {
      padding: 76px 20px 32px;
      text-align: center;
      background: var(--white);
    }
    .hero h1 {
      font-size: 2rem; line-height: 1.15; font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 10px;
    }
    .hero h1 span { color: var(--blue); }
    .hero p {
      font-size: 0.95rem; line-height: 1.5; color: var(--slate);
      max-width: 500px; margin: 0 auto 16px;
    }
    .hero-ctas {
      display: flex; flex-direction: column; gap: 10px;
      max-width: 320px; margin: 0 auto 24px;
    }

    /* ===== APP STORE BADGES ===== */
    .app-store-badges {
      display: flex; align-items: center; justify-content: center;
      gap: 12px; margin-top: 8px; flex-wrap: wrap;
    }
    .store-badge img { height: 40px; transition: opacity 0.2s; }
    .store-badge:hover img { opacity: 0.85; }
    .store-badge-coming-soon {
      font-size: 0.8rem; color: var(--text-secondary, #64748b);
      padding: 8px 14px; border: 1px dashed #cbd5e1; border-radius: 8px;
      line-height: 1.3;
    }
    .final-cta .store-badge-coming-soon {
      color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.25);
    }

    /* ===== STICKY MOBILE CTA ===== */
    .sticky-cta {
      display: flex;
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-top: 1px solid rgba(0,0,0,0.08);
      padding: 10px 16px;
      gap: 10px;
      box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
    }
    .sticky-cta .btn {
      flex: 1; padding: 12px 8px; font-size: 0.85rem;
    }
    @media (min-width: 768px) {
      .sticky-cta { display: none; }
    }
    .btn {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px 24px; border-radius: 10px;
      font-size: 1rem; font-weight: 700; text-decoration: none;
      border: none; cursor: pointer; transition: all 0.2s;
    }
    .btn-primary {
      background: var(--blue); color: var(--white);
      box-shadow: 0 4px 14px rgba(59,130,246,0.35);
    }
    .btn-primary:hover { background: #2563EB; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59,130,246,0.4); }
    .btn-outline {
      background: var(--white); color: var(--navy);
      border: 2px solid #E2E8F0;
    }
    .btn-outline:hover { border-color: var(--blue); color: var(--blue); }
    .hero-screenshot {
      max-width: 100%; border-radius: var(--radius);
      box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
      margin: 0 auto;
    }

    /* ===== PRODUCT TOUR PHONE MOCKUP ===== */
    .tour-phone {
      width: 260px; height: 520px;
      background: #0F172A;
      border-radius: 36px;
      padding: 8px;
      margin: 0 auto;
      box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
      position: relative;
      overflow: hidden;
    }
    .tour-screen {
      width: 100%; height: 100%;
      background: #fff;
      border-radius: 28px;
      overflow: hidden;
      position: relative;
    }
    .tour-statusbar {
      height: 28px;
      background: #F8FAFC;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 600; color: #0F172A;
    }
    .tour-slide {
      position: absolute;
      top: 28px; left: 0; right: 0; bottom: 0;
      opacity: 0;
      animation: tourFade 20s infinite;
      padding: 0;
    }
    .tour-slide:nth-child(2) { animation-delay: 0s; }
    .tour-slide:nth-child(3) { animation-delay: 4s; }
    .tour-slide:nth-child(4) { animation-delay: 8s; }
    .tour-slide:nth-child(5) { animation-delay: 12s; }
    .tour-slide:nth-child(6) { animation-delay: 16s; }

    @keyframes tourFade {
      0%   { opacity: 0; }
      2%   { opacity: 1; }
      18%  { opacity: 1; }
      22%  { opacity: 0; }
      100% { opacity: 0; }
    }

    /* Slide header bar */
    .tour-bar {
      background: linear-gradient(135deg, #3B82F6, #06B6D4);
      color: #fff;
      padding: 10px 14px;
      font-size: 13px; font-weight: 700;
      display: flex; align-items: center; gap: 6px;
    }
    .tour-bar .material-icons { font-size: 18px; }

    /* Slide label */
    .tour-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(15,23,42,0.85), transparent);
      color: #fff;
      padding: 28px 14px 14px;
      font-size: 12px; font-weight: 600;
      text-align: center;
      letter-spacing: 0.02em;
    }

    /* Calendar slide */
    .tour-cal-header {
      display: grid; grid-template-columns: repeat(5, 1fr);
      background: #F1F5F9;
      font-size: 9px; font-weight: 700; color: #64748B;
      text-align: center; padding: 6px 6px 4px;
    }
    .tour-cal-grid {
      padding: 4px 6px;
      display: grid; grid-template-columns: repeat(5, 1fr);
      gap: 3px;
    }
    .tour-job {
      border-radius: 4px;
      padding: 4px 5px;
      font-size: 8px; font-weight: 600;
      line-height: 1.3;
      color: #fff;
    }
    .tj-blue { background: #3B82F6; }
    .tj-green { background: #10B981; }
    .tj-amber { background: #F59E0B; color: #0F172A; }
    .tj-purple { background: #8B5CF6; }
    .tj-red { background: #EF4444; }
    .tj-cyan { background: #06B6D4; }
    .tj-empty { background: transparent; }

    /* Mass text slide */
    .tour-msg-list {
      padding: 8px 10px;
      display: flex; flex-direction: column; gap: 6px;
    }
    .tour-msg-item {
      display: flex; align-items: center; gap: 8px;
      padding: 8px 10px;
      background: #F8FAFC;
      border-radius: 8px;
      border: 1px solid #E2E8F0;
    }
    .tour-msg-avatar {
      width: 28px; height: 28px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0;
    }
    .tour-msg-text {
      font-size: 9px; color: #475569; line-height: 1.4;
    }
    .tour-msg-text strong { color: #0F172A; display: block; font-size: 10px; }
    .tour-msg-sent {
      animation: tourCheckPop 0.3s ease forwards;
      animation-delay: 1.5s;
      opacity: 0;
      text-align: center; padding: 12px;
      color: #10B981; font-weight: 700; font-size: 13px;
    }
    @keyframes tourCheckPop {
      0% { opacity: 0; transform: scale(0.5); }
      100% { opacity: 1; transform: scale(1); }
    }

    /* Driver schedule slide */
    .tour-driver-card {
      margin: 8px 10px;
      padding: 10px 12px;
      background: #F0F7FF;
      border: 1px solid #BFDBFE;
      border-left: 3px solid #3B82F6;
      border-radius: 8px;
    }
    .tour-driver-card h4 {
      font-size: 11px; color: #1E40AF; margin-bottom: 3px;
    }
    .tour-driver-card p {
      font-size: 9px; color: #475569; line-height: 1.5;
    }
    .tour-driver-pin {
      text-align: center; padding: 8px;
      font-size: 9px; color: #64748B;
    }
    .tour-driver-pin span {
      font-weight: 700; color: #0F172A;
      background: #F1F5F9; padding: 2px 8px; border-radius: 4px;
      font-family: monospace; font-size: 11px;
    }

    /* DVIR slide */
    .tour-dvir-list {
      padding: 6px 10px;
    }
    .tour-dvir-item {
      display: flex; align-items: center; gap: 8px;
      padding: 7px 0;
      border-bottom: 1px solid #F1F5F9;
      font-size: 10px; color: #0F172A;
    }
    .tour-dvir-check {
      width: 20px; height: 20px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .dvir-pass { background: #D1FAE5; color: #059669; }
    .dvir-fail { background: #FEE2E2; color: #DC2626; }
    .tour-dvir-item .material-icons { font-size: 14px; }
    .tour-dvir-photo {
      text-align: center; padding: 6px;
      font-size: 9px; color: #3B82F6; font-weight: 600;
    }

    /* Billing slide */
    .tour-invoice {
      margin: 10px;
      padding: 12px;
      background: #F8FAFC;
      border: 1px solid #E2E8F0;
      border-radius: 8px;
    }
    .tour-invoice-header {
      display: flex; justify-content: space-between;
      margin-bottom: 8px;
    }
    .tour-invoice-header h4 { font-size: 11px; color: #0F172A; }
    .tour-invoice-header span { font-size: 10px; color: #10B981; font-weight: 600; }
    .tour-invoice-row {
      display: flex; justify-content: space-between;
      font-size: 9px; padding: 4px 0;
      border-bottom: 1px solid #F1F5F9;
      color: #475569;
    }
    .tour-invoice-total {
      display: flex; justify-content: space-between;
      font-size: 12px; font-weight: 700;
      padding: 8px 0 0; color: #0F172A;
    }
    .tour-invoice-stamp {
      text-align: center;
      margin-top: 10px;
      color: #10B981; font-size: 11px; font-weight: 700;
      border: 2px solid #10B981;
      border-radius: 6px;
      padding: 4px 12px;
      display: inline-block;
      transform: rotate(-3deg);
    }

    @media (min-width: 768px) {
      .tour-phone {
        width: 320px; height: 640px;
      }
      .tour-bar { padding: 12px 16px; font-size: 14px; }
      .tour-job { font-size: 9px; padding: 5px 6px; }
      .tour-cal-header { font-size: 10px; }
    }

    /* ===== SOCIAL PROOF ===== */
    .proof {
      padding: 32px 20px;
      text-align: center;
      background: var(--surface);
      border-top: 1px solid #E2E8F0;
      border-bottom: 1px solid #E2E8F0;
    }
    .proof p {
      font-size: 0.9rem; color: var(--slate); line-height: 1.5;
    }
    .proof strong { color: var(--navy); }

    /* ===== TESTIMONIALS ===== */
    .testimonials {
      padding: 48px 20px;
      background: #fff;
    }
    .testimonials h2 {
      text-align: center; font-size: 1.4rem; font-weight: 800;
      letter-spacing: -0.02em; margin-bottom: 28px;
    }
    .testimonial-grid {
      display: flex; flex-direction: column; gap: 20px;
      max-width: 600px; margin: 0 auto;
    }
    .testimonial-card {
      background: var(--surface);
      border: 1px solid #E2E8F0;
      border-radius: var(--radius);
      padding: 24px;
    }
    .testimonial-stars {
      color: #F59E0B; font-size: 1.1rem; margin-bottom: 8px; letter-spacing: 2px;
    }
    .testimonial-text {
      font-size: 1rem; color: var(--navy); font-weight: 500;
      line-height: 1.5; margin-bottom: 12px;
    }
    .testimonial-author {
      font-size: 0.85rem; color: var(--slate);
    }
    .testimonial-author strong {
      color: var(--navy);
    }

    /* ===== FEATURES ===== */
    .features {
      padding: 56px 20px;
      background: linear-gradient(135deg, #3B82F6, #06B6D4, #3B82F6);
    }
    .features-header {
      text-align: center; margin-bottom: 40px;
    }
    .features-header h2 {
      font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em;
      margin-bottom: 8px; color: #fff;
    }
    .features-header p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

    .feature-grid {
      display: flex; flex-direction: column; gap: 24px;
      max-width: 600px; margin: 0 auto;
    }
    .feature-card {
      background: rgba(255,255,255,0.15);
      border-radius: var(--radius); padding: 24px;
      border: 1px solid rgba(255,255,255,0.25);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 4px 16px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.2);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .feature-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.25);
      cursor: pointer;
    }
    .feature-icon {
      width: 44px; height: 44px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }
    .feature-icon .material-icons { font-size: 24px; color: var(--white); }
    .feature-icon-blue { background: var(--blue); }
    .feature-icon-cyan { background: var(--cyan); }
    .feature-icon-amber { background: #F59E0B; }
    .feature-icon-green { background: #10B981; }
    .feature-icon-red { background: #EF4444; }
    .feature-icon-purple { background: #8B5CF6; }
    .feature-card h3 {
      font-size: 1.05rem; font-weight: 700; margin-bottom: 6px;
      color: #fff;
    }
    .feature-card p {
      font-size: 0.9rem; line-height: 1.55; color: rgba(255,255,255,0.85);
    }

    /* ===== SCREENSHOT GALLERY ===== */
    .screenshots {
      padding: 48px 20px;
      background: var(--surface);
    }
    .screenshots h2 {
      text-align: center; font-size: 1.4rem; font-weight: 800;
      letter-spacing: -0.02em; margin-bottom: 8px;
    }
    .screenshots > p {
      text-align: center; color: var(--slate); font-size: 0.9rem;
      margin-bottom: 24px;
    }
    .screenshot-scroll {
      display: flex; gap: 16px;
      overflow-x: auto; scroll-snap-type: x mandatory;
      padding-bottom: 12px;
      -webkit-overflow-scrolling: touch;
      max-width: 900px; margin: 0 auto;
    }
    .screenshot-scroll::-webkit-scrollbar { height: 4px; }
    .screenshot-scroll::-webkit-scrollbar-track { background: #E2E8F0; border-radius: 4px; }
    .screenshot-scroll::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
    .screenshot-item {
      flex: 0 0 280px; scroll-snap-align: start;
    }
    .screenshot-item img {
      width: 100%; border-radius: 10px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.10);
      border: 1px solid #E2E8F0;
    }
    .screenshot-item p {
      text-align: center; font-size: 0.8rem; font-weight: 600;
      color: var(--slate); margin-top: 8px;
    }
    .screenshot-cta {
      text-align: center; margin-top: 24px;
    }

    /* ===== HOW IT WORKS ===== */
    .how {
      padding: 56px 20px;
      background: var(--navy);
      color: var(--white);
    }
    .how h2 {
      text-align: center; font-size: 1.6rem; font-weight: 800;
      margin-bottom: 36px; letter-spacing: -0.02em;
    }
    .how-steps {
      display: flex; flex-direction: column; gap: 28px;
      max-width: 500px; margin: 0 auto;
    }
    .how-step {
      display: flex; gap: 16px; align-items: flex-start;
    }
    .how-num {
      flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
      background: var(--blue); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 0.95rem;
    }
    .how-step h3 {
      font-size: 1rem; font-weight: 700; margin-bottom: 4px;
    }
    .how-step p {
      font-size: 0.88rem; color: var(--light-slate); line-height: 1.5;
    }

    /* ===== PRICING ===== */
    .pricing {
      padding: 56px 20px;
      text-align: center;
    }
    .pricing h2 {
      font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em;
      margin-bottom: 8px;
    }
    .pricing > p {
      color: var(--slate); font-size: 0.95rem; margin-bottom: 32px;
    }

    .price-card {
      background: var(--white);
      border: 2px solid var(--blue);
      border-radius: 16px; padding: 32px 24px;
      max-width: 380px; margin: 0 auto 24px;
      box-shadow: 0 4px 20px rgba(59,130,246,0.12);
    }
    .price-amount {
      font-size: 3rem; font-weight: 800; color: var(--navy);
      line-height: 1;
    }
    .price-amount span {
      font-size: 1rem; font-weight: 500; color: var(--slate);
    }
    .price-desc {
      color: var(--slate); font-size: 0.9rem; margin: 8px 0 20px;
    }
    .price-features {
      list-style: none; text-align: left;
      margin-bottom: 24px;
    }
    .price-features li {
      padding: 8px 0; font-size: 0.9rem; color: var(--navy);
      display: flex; align-items: center; gap: 10px;
      border-bottom: 1px solid #F1F5F9;
    }
    .price-features li:last-child { border-bottom: none; }
    .price-features .material-icons {
      font-size: 18px; color: #10B981;
    }

    .addons {
      max-width: 380px; margin: 0 auto;
    }
    .addon-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 12px 0; border-bottom: 1px solid #E2E8F0;
      font-size: 0.88rem;
    }
    .addon-row:last-child { border-bottom: none; }
    .addon-name { color: var(--navy); font-weight: 500; }
    .addon-price { color: var(--slate); }

    /* ===== BUILT BY ===== */
    /* ===== CONTACT / LEAD CAPTURE ===== */
    .contact-section {
      padding: 64px 20px;
      background: var(--surface);
      text-align: center;
      scroll-margin-top: 80px;
    }
    .contact-section h2 {
      font-size: 1.5rem; font-weight: 800; margin-bottom: 8px;
      letter-spacing: -0.02em; color: var(--navy);
    }
    .contact-section > p {
      color: var(--slate); margin-bottom: 32px; font-size: 1rem;
    }
    .lead-form {
      max-width: 520px; margin: 0 auto; text-align: left;
    }
    .lead-row {
      display: flex; gap: 16px; margin-bottom: 16px;
    }
    .lead-field {
      flex: 1; display: flex; flex-direction: column;
    }
    .lead-field label {
      font-size: 0.85rem; font-weight: 600; color: var(--navy);
      margin-bottom: 6px;
    }
    .lead-field input,
    .lead-field select {
      padding: 12px 14px; border: 1.5px solid #CBD5E1; border-radius: 8px;
      font-size: 1rem; font-family: inherit; background: #fff;
      color: var(--navy); transition: border-color 0.15s;
    }
    .lead-field input:focus,
    .lead-field select:focus {
      outline: none; border-color: #3B82F6;
      box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
    }
    .lead-field input::placeholder { color: #94A3B8; }
    .lead-submit {
      width: 100%; padding: 14px; font-size: 1.05rem; font-weight: 700;
      margin-top: 8px; border-radius: 10px;
    }
    .lead-reassurance {
      text-align: center; font-size: 0.85rem; color: var(--slate);
      margin-top: 10px;
    }
    .lead-success {
      max-width: 420px; margin: 0 auto; text-align: center;
      padding: 24px;
    }
    .lead-success h3 {
      font-size: 1.3rem; font-weight: 700; color: var(--navy); margin: 12px 0 8px;
    }
    .lead-success p {
      color: var(--slate); font-size: 0.95rem; line-height: 1.6;
    }
    @media (max-width: 540px) {
      .lead-row { flex-direction: column; gap: 12px; }
    }

    /* ===== BUILT BY ===== */
    .built-by {
      padding: 48px 20px;
      background: #fff;
      border-top: 1px solid #E2E8F0;
    }
    .built-by-inner {
      max-width: 500px; margin: 0 auto; text-align: center;
    }
    .built-by h2 {
      font-size: 1.3rem; font-weight: 800; margin-bottom: 12px;
      letter-spacing: -0.02em;
    }
    .built-by p {
      font-size: 0.95rem; line-height: 1.7; color: var(--slate);
    }
    .built-by strong { color: var(--navy); }

    /* ===== FINAL CTA ===== */
    .final-cta {
      padding: 56px 20px;
      text-align: center;
      background: var(--navy);
      color: var(--white);
    }
    .final-cta h2 {
      font-size: 1.6rem; font-weight: 800; margin-bottom: 12px;
      letter-spacing: -0.02em;
    }
    .final-cta p {
      color: var(--light-slate); font-size: 0.95rem;
      margin-bottom: 28px; max-width: 400px; margin-left: auto; margin-right: auto;
    }
    .final-cta .hero-ctas {
      margin-bottom: 0;
    }
    .final-cta .btn-outline {
      background: transparent; color: var(--white);
      border-color: rgba(255,255,255,0.25);
    }
    .final-cta .btn-outline:hover {
      border-color: var(--white); color: var(--white);
    }

    /* ===== FOOTER ===== */
    .footer {
      padding: 24px 20px;
      text-align: center;
      font-size: 0.8rem; color: var(--light-slate);
      background: var(--navy);
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer a { color: var(--cyan); text-decoration: none; }

    /* ===== FAQ ===== */
    .faq {
      padding: 56px 20px;
      background: var(--surface);
    }
    .faq h2 {
      text-align: center; font-size: 1.6rem; font-weight: 800;
      letter-spacing: -0.02em; margin-bottom: 8px;
    }
    .faq > p {
      text-align: center; color: var(--slate); font-size: 0.95rem;
      margin-bottom: 32px;
    }
    .faq-list {
      max-width: 600px; margin: 0 auto;
      display: flex; flex-direction: column; gap: 8px;
    }
    .faq-list details {
      background: var(--white);
      border: 1px solid #E2E8F0;
      border-radius: var(--radius);
      overflow: hidden;
    }
    .faq-list summary {
      padding: 16px 20px;
      font-size: 0.95rem; font-weight: 600;
      color: var(--navy);
      cursor: pointer;
      list-style: none;
      display: flex; align-items: center; justify-content: space-between;
    }
    .faq-list summary::-webkit-details-marker { display: none; }
    .faq-list summary::after {
      content: '+'; font-size: 1.3rem; font-weight: 400;
      color: var(--slate); transition: transform 0.2s;
    }
    .faq-list details[open] summary::after {
      content: '−';
    }
    .faq-list details[open] summary {
      border-bottom: 1px solid #E2E8F0;
    }
    .faq-list .faq-answer {
      padding: 16px 20px;
      font-size: 0.9rem; line-height: 1.6;
      color: var(--slate);
    }

    /* ===== PRICING BADGE ===== */
    .price-badge {
      display: inline-block;
      background: #ECFDF5; color: #059669;
      font-size: 0.75rem; font-weight: 700;
      padding: 4px 12px; border-radius: 20px;
      margin-bottom: 8px;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }
    .price-reassurance {
      font-size: 0.82rem; color: var(--slate);
      margin-top: 12px;
    }

    /* ===== FOUNDER ATTRIBUTION ===== */
    .built-by-attribution {
      margin-top: 16px;
      font-size: 0.88rem; font-weight: 600;
      color: var(--navy); font-style: italic;
    }
    .built-by-credibility {
      margin-top: 8px;
      font-size: 0.82rem; color: var(--slate);
    }

    /* ===== ACADEMY LINK ===== */
    .how-academy {
      text-align: center; margin-top: 32px;
    }
    .how .btn-outline {
      background: transparent; color: var(--white);
      border-color: rgba(255,255,255,0.3);
      display: inline-flex;
    }
    .how .btn-outline:hover {
      border-color: var(--white); color: var(--white);
    }

    /* ===== HERO ACADEMY BUTTON ===== */
    .btn-academy {
      background: transparent; color: var(--navy);
      border: 2px solid var(--blue);
      display: inline-flex; align-items: center; gap: 8px;
      padding: 12px 24px; border-radius: 10px;
      font-size: 0.95rem; font-weight: 700; text-decoration: none;
      cursor: pointer; transition: all 0.2s;
      animation: academyPulse 3s ease-in-out infinite;
    }
    .btn-academy:hover {
      background: var(--blue); color: var(--white);
      transform: translateY(-1px);
      animation: none;
    }
    .btn-academy .material-icons { font-size: 20px; }
    @keyframes academyPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.4); }
      50% { box-shadow: 0 0 0 8px rgba(59,130,246,0); }
    }

    /* ===== TRUST BAR ===== */
    .trust-bar {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
      padding: 16px 20px;
      background: transparent;
      border-bottom: none;
      font-size: 0.82rem; color: var(--slate); font-weight: 500;
    }
    .trust-item {
      display: flex; align-items: center; gap: 6px;
    }
    .trust-item .material-icons {
      font-size: 16px; color: var(--blue);
    }

    /* ===== SMS ADDON NOTE ===== */
    .addon-note {
      width: 100%;
      font-size: 0.78rem; color: var(--slate);
      margin-top: 2px; line-height: 1.4;
    }

    /* ===== DESKTOP ===== */
    @media (min-width: 768px) {
      .nav { height: 90px; padding: 0 40px; }
      .nav-logo { height: 100px; }
      .nav-desktop-only { display: inline-block; }
      .nav-links { gap: 8px; }
      .nav-links a { font-size: 0.85rem; padding: 8px 16px; }
      .hero {
        padding: 100px 60px 60px;
        display: flex; align-items: center; justify-content: center; gap: 60px;
        text-align: left;
        max-width: 1100px; margin: 0 auto;
      }
      .hero-text { max-width: 500px; flex-shrink: 0; }
      .hero h1 { font-size: 3rem; }
      .hero p { font-size: 1.1rem; margin-left: 0; }
      .hero-ctas {
        flex-direction: row;
        max-width: none; margin-left: 0;
      }
      .tour-phone { width: 260px; height: 520px; }
      .btn { padding: 14px 32px; }
      .hero-screenshot { max-width: 700px; }

      .features { padding: 80px 40px; }
      .feature-grid {
        display: grid; grid-template-columns: 1fr 1fr;
        gap: 20px; max-width: 800px;
      }
      .screenshots { padding: 64px 40px; }
      .screenshot-item { flex: 0 0 320px; }
      .testimonial-grid {
        flex-direction: row; max-width: 960px;
      }
      .testimonial-card { flex: 1; }
      .how { padding: 80px 40px; }
      .faq { padding: 80px 40px; }
      .pricing { padding: 80px 40px; }
      .final-cta { padding: 80px 40px; }
      .final-cta .hero-ctas {
        flex-direction: row; justify-content: center;
        max-width: none;
      }
    }

    @media (min-width: 1024px) {
      .feature-grid {
        grid-template-columns: 1fr 1fr 1fr; max-width: 960px;
      }
    }