    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    
    :root {
      --navy: #0f172a;
      --blue: #4f46e5;
      --blue-light: #6366f1;
      --blue-pale: #e0e7ff;
      --teal: #0d9488;
      --teal-light: #14b8a6;
      --emerald: #10b981;
      --pink: #ec4899;
      --pink-pale: #fce7f3;
      --slate: #475569;
      --slate-light: #94a3b8;
      --border: #e2e8f0;
      --white: #ffffff;
      --bg-light: #f8fafc;
      --text: #0f172a;
      --font-sans: 'DM Sans', sans-serif;
      --radius: 32px;
      --radius-sm: 20px;
    }

    html {
      scroll-behavior: smooth;
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      overscroll-behavior-x: none;
      touch-action: pan-y pinch-zoom;
    }
    body {
      font-family: var(--font-sans);
      color: var(--text);
      background: var(--white);
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      overscroll-behavior-x: none;
    }
    body.menu-open { overflow: hidden; }
    img, svg { max-width: 100%; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

    /* ---- HEADER ---- */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 80;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    }
    body {
      padding-top: 72px;
    }
    .header-container {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      height: 72px;
      position: relative;
    }
    .header-logo {
      display: flex; align-items: center; gap: 0.6rem;
      text-decoration: none; font-weight: 800; font-size: 1.15rem; color: var(--text);
      letter-spacing: -0.02em;
    }
    .header-logo img { width: 32px; height: 32px; border-radius: 10px; }
    .church-word { color: var(--blue); }
    .header-nav {
      display: flex;
      gap: 0.5rem;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    .nav-link {
      padding: 0.5rem 1rem; border-radius: 999px;
      font-size: 0.95rem; font-weight: 600; color: var(--slate);
      text-decoration: none; transition: all 0.2s;
    }
    .nav-link:hover { background: var(--bg-light); color: var(--text); }
    .header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; margin-left: auto; }
    .header-login-link {
      font-size: 0.95rem; font-weight: 600; color: var(--slate);
      text-decoration: none; display: flex; align-items: center; gap: 0.4rem;
      transition: color 0.2s;
    }
    .header-login-link:hover { color: var(--text); }
    .btn-primary-sm {
      padding: 0.62rem 1.5rem; border-radius: 3px;
      background: #1ca592; color: white;
      font-size: 0.95rem; font-weight: 700; text-decoration: none;
      transition: all 0.2s; white-space: nowrap;
      box-shadow: none;
    }
    .btn-primary-sm:hover { background: #169480; transform: translateY(-1px); box-shadow: none; }
    .mobile-menu-btn {
      display: none; background: none; border: none; cursor: pointer; color: var(--text);
    }

    /* ---- MOBILE MENU ---- */
    .mobile-menu-overlay {
      display: none; position: fixed; inset: 0; z-index: 200;
      background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px);
      flex-direction: column; align-items: center; justify-content: center;
    }
    .mobile-menu-overlay.open { display: flex; }
    .mobile-menu-close {
      position: absolute; top: 1.5rem; right: 1.5rem;
      background: var(--bg-light); border: none; cursor: pointer; color: var(--text);
      width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    }
    .mobile-menu-nav { display: flex; flex-direction: column; gap: 1.5rem; text-align: center; }
    .mobile-nav-link { font-size: 1.8rem; font-weight: 800; color: var(--text); text-decoration: none; letter-spacing: -0.02em; }
    .mobile-nav-cta {
      margin-top: 1.5rem; padding: 1.2rem 2.5rem; border-radius: 999px;
      background: var(--blue); color: white; font-weight: 800; font-size: 1.1rem; text-decoration: none;
    }

    /* ---- HERO ---- */
    .hero-section {
      background: #fafcff;
      padding: 6rem 0 2rem;
      text-align: center;
      overflow: hidden;
      position: relative;
    }
    .hero-section::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(circle 800px at 20% -10%, rgba(99, 102, 241, 0.08) 0%, transparent 80%),
        radial-gradient(circle 600px at 80% 40%, rgba(236, 72, 153, 0.05) 0%, transparent 80%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.5rem 1.25rem; border-radius: 999px;
      background: white; border: 1px solid var(--border);
      color: var(--text); font-size: calc(0.85rem + 2px); font-weight: 700;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
      margin-bottom: 2rem;
    }
    .hero-section .hero-badge-highlight {
      color: var(--blue);
    }
    .badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }

    .hero-title {
      font-family: var(--font-sans);
      font-weight: 900;
      font-size: clamp(3.2rem, 7vw, 4.5rem);
      line-height: 1.05;
      letter-spacing: -0.04em;
      color: var(--navy);
      max-width: 1100px !important;
      margin: 0 auto 1.5rem;
    }
    .hero-title em { 
      font-style: normal; 
      color: var(--blue); 
      background: linear-gradient(135deg, var(--blue), #8b5cf6); 
      -webkit-background-clip: text; 
      -webkit-text-fill-color: transparent; 
    }

    .hero-subtitle {
      font-size: 1.25rem; color: var(--slate); line-height: 1.3;
      max-width: 740px; margin: 0 auto 2.5rem; font-weight: 400;
    }

    .hero-cta {
      display: flex; align-items: center; justify-content: center; gap: 1rem;
      flex-wrap: wrap; margin-bottom: 1.5rem;
    }
    .btn-hero-primary {
      display: inline-flex; flex-direction: column; align-items: center;
      justify-content: center;
      min-width: 248px;
      padding: 0.95rem 1.6rem 0.85rem; border-radius: 3px;
      background: #1ca592; color: white;
      font-size: 1.1rem; font-weight: 800; text-decoration: none;
      line-height: 1;
      transition: all 0.2s; box-shadow: none;
    }
    .btn-hero-primary:hover { transform: translateY(-3px); box-shadow: none; background: #169480; }
    .btn-hero-primary .btn-hero-main {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 1.32rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      white-space: nowrap;
    }
    .btn-hero-primary .btn-hero-main i {
      font-size: 1rem;
    }
    .btn-hero-primary small {
      font-size: 0.68rem;
      font-weight: 800;
      color: #ffeca1;
      margin-top: 0.45rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      line-height: 1;
      white-space: nowrap;
    }
    
    .btn-hero-secondary {
      padding: 1.1rem 2.2rem; border-radius: 3px;
      background: white; border: 2px solid var(--border); color: var(--text);
      font-size: 1.1rem; font-weight: 700; text-decoration: none;
      transition: all 0.2s; box-shadow: 0 4px 12px rgba(0,0,0,0.02);
      display: flex; align-items: center; gap: 0.5rem;
    }
    .btn-hero-secondary:hover { border-color: var(--blue); color: var(--blue); background: var(--bg-light); transform: translateY(-1px); }

    .hero-proof {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem 2rem;
      color: var(--slate); font-size: 0.95rem; font-weight: 600; margin-bottom: 3rem;
    }
    .hero-proof span { display: flex; align-items: center; gap: 0.5rem; }
    .hero-proof i { color: var(--emerald); background: #d1fae5; padding: 4px; border-radius: 50%; font-size: 0.7rem; }

    /* ---- 3 PHONES (HARDWARE SHELL STYLE) ---- */
    .hero-phones {
      display: flex;
      justify-content: center;
      align-items: flex-end; /* Keeps bottoms perfectly aligned */
      gap: 2rem; /* Even spacing */
      padding: 30px 1rem 0;
      margin-top: 70px;
      margin-bottom: -220px;
      position: relative;
    }

    .phone-mockup {
      flex: 0 0 auto;
      width: 410px;
      height: 820px;
      background: #f8fafc;
      border-radius: 50px;
      border: 12px solid #0f172a; /* Thick dark bezel */
      box-shadow: 
        0 0 0 2px #cbd5e1, /* Outer silver rim */
        0 25px 50px -12px rgba(15, 23, 42, 0.25); /* Deep drop shadow */
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .phone-purpose-badge {
      position: absolute;
      top: 20px;
      right: 18px;
      z-index: 25;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.96);
      border: 1px solid rgba(226,232,240,0.95);
      color: var(--text);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: 0 10px 24px rgba(15,23,42,0.12);
      backdrop-filter: blur(10px);
    }
    .phone-purpose-badge::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: currentColor;
      opacity: 0.75;
    }
    .phone-purpose-badge.plan { color: var(--blue); }
    .phone-purpose-badge.visitor { color: var(--emerald); }
    .phone-purpose-badge.live { color: var(--pink); }

    /* Dynamic Island / Notch */
    .phone-notch {
      position: absolute;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 30px;
      background: #0f172a;
      border-radius: 999px;
      z-index: 20;
    }

    /* Scale phones but keep the bottom flush with transform-origin */
    .phone-mockup.center { 
      transform: scale(1.05); 
      transform-origin: bottom; 
      z-index: 2; 
    }
    .phone-mockup.side-left, 
    .phone-mockup.side-right { 
      transform: scale(0.9); 
      transform-origin: bottom; 
    }
    
    .phone-screen {
      background: #f8fafc;
      padding: 50px 0 0 0; /* Clear the notch */
      display: flex; 
      flex-direction: column;
      height: 100%;
    }

    .phone-header {
      padding: 0.75rem 1rem;
      background: white;
      display: flex; align-items: center; gap: 0.75rem;
      border-bottom: 1px solid var(--border);
    }
    .phone-header-avatar {
      width: 36px; height: 36px; border-radius: 12px;
      background: linear-gradient(135deg, var(--blue), #8b5cf6);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem; font-weight: 800; color: white; flex-shrink: 0;
    }
    .phone-header-info { flex: 1; }
    .phone-header-name { font-size: 0.9rem; font-weight: 800; color: var(--text); line-height: 1.1; }
    .phone-header-status { font-size: 0.75rem; color: var(--slate); font-weight: 500; margin-top: 2px; }
    .phone-header-label {
      font-size: 0.65rem; font-weight: 800; letter-spacing: 0.05em;
      text-transform: uppercase; color: var(--blue);
      background: var(--blue-pale); padding: 0.3rem 0.6rem; border-radius: 999px;
    }

    .phone-body {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex: 1;
      overflow-y: auto;
    }
    .phone-body::-webkit-scrollbar { display: none; } /* Hide scrollbar for clean look */

    .phone-msg {
      padding: 0.8rem 1rem;
      border-radius: 20px;
      font-size: 0.85rem;
      line-height: 1.5;
      max-width: 90%;
      box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }
    .phone-msg.bot {
      background: white;
      color: var(--text);
      border-bottom-left-radius: 6px;
      border: 1px solid var(--border);
    }
    .phone-msg.user {
      align-self: flex-end;
      background: #2563eb;
      color: white;
      border-bottom-right-radius: 6px;
    }
    .phone-mockup.center .phone-msg.user {
      background: var(--blue);
    }
    .phone-chips {
      display: flex; flex-wrap: wrap; gap: 0.5rem;
      margin-top: 0.75rem;
    }
    .phone-chip {
      padding: 0.4rem 0.8rem; border-radius: 999px;
      background: var(--bg-light); border: 1px solid var(--border); color: var(--text);
      font-size: 0.75rem; font-weight: 700; cursor: pointer;
    }
    .phone-typing {
      display: inline-flex; align-items: center; gap: 4px;
      padding: 0.8rem 1rem;
      background: white; border: 1px solid var(--border); border-radius: 20px; border-bottom-left-radius: 6px;
      width: fit-content;
    }
    .phone-typing span {
      width: 6px; height: 6px; background: var(--slate-light); border-radius: 50%;
      animation: typing 1.4s ease infinite;
    }
    .phone-typing span:nth-child(2) { animation-delay: 0.2s; }
    .phone-typing span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes typing { 0%,80%,100%{transform:scale(1);opacity:0.4} 40%{transform:scale(1.3);opacity:1} }
    .phone-body-animated {
      overflow: hidden;
      position: relative;
      padding-bottom: 2rem;
    }
    .phone-body-animated .phone-msg,
    .phone-body-animated .phone-typing {
      opacity: 0;
      transform: translateY(18px);
      animation-duration: 11s;
      animation-timing-function: ease-in-out;
      animation-iteration-count: infinite;
      animation-fill-mode: both;
    }
    .phone-body-animated .phone-msg:nth-child(1) { animation-name: heroMsg1; }
    .phone-body-animated .phone-msg:nth-child(2) { animation-name: heroMsg2; }
    .phone-body-animated .phone-msg:nth-child(3) { animation-name: heroMsg3; }
    .phone-body-animated .phone-msg:nth-child(4) { animation-name: heroMsg4; }
    .phone-body-animated .phone-msg:nth-child(5) { animation-name: heroMsg5; }
    .phone-body-animated .phone-typing { animation-name: heroTyping; }
    .phone-body-animated .phone-msg:nth-child(7) { animation-name: heroMsg7; }
    .phone-body-animated .phone-msg:nth-child(8) { animation-name: heroMsg8; }
    @keyframes heroMsg1 {
      0%, 2% { opacity: 0; transform: translateY(18px); }
      6%, 94% { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(18px); }
    }
    @keyframes heroMsg2 {
      0%, 10% { opacity: 0; transform: translateY(18px); }
      14%, 94% { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(18px); }
    }
    @keyframes heroMsg3 {
      0%, 22% { opacity: 0; transform: translateY(18px); }
      26%, 94% { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(18px); }
    }
    @keyframes heroMsg4 {
      0%, 36% { opacity: 0; transform: translateY(18px); }
      40%, 94% { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(18px); }
    }
    @keyframes heroMsg5 {
      0%, 50% { opacity: 0; transform: translateY(18px); }
      54%, 94% { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(18px); }
    }
    @keyframes heroTyping {
      0%, 66% { opacity: 0; transform: translateY(18px); }
      69%, 76% { opacity: 1; transform: translateY(0); }
      82%, 100% { opacity: 0; transform: translateY(18px); }
    }
    @keyframes heroMsg7 {
      0%, 74% { opacity: 0; transform: translateY(18px); }
      78%, 94% { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(18px); }
    }
    @keyframes heroMsg8 {
      0%, 84% { opacity: 0; transform: translateY(18px); }
      88%, 94% { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(18px); }
    }

    .phone-label { display: none; }

    /* ---- LOGO BAR ---- */
    .logo-bar {
      background: white;
      padding: 3rem 0;
    }
    .logo-bar-text {
      text-align: center; font-size: 1.05rem; color: var(--slate);
      margin-bottom: 2rem; font-weight: 500;
    }
    .logo-bar-text strong { color: var(--text); font-weight: 800; }

    .testimonial-carousel { overflow: hidden; position: relative; }
    .testimonial-carousel::before, .testimonial-carousel::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
    }
    .testimonial-carousel::before { left: 0; background: linear-gradient(to right, white, transparent); }
    .testimonial-carousel::after { right: 0; background: linear-gradient(to left, white, transparent); }
    
    .testimonial-track {
      display: flex; gap: 1.5rem;
      animation: ticker 40s linear infinite;
      width: max-content;
      padding: 1rem 0;
    }
    .testimonial-track:hover { animation-play-state: paused; }
    @keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
    .testimonial-card {
      flex-shrink: 0; width: 350px;
      padding: 1.75rem;
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    }
    .testimonial-stars { color: #f59e0b; margin-bottom: 1rem; font-size: 1.1rem; letter-spacing: 2px; }
    .testimonial-card p { font-size: 1rem; color: var(--text); line-height: 1.6; font-weight: 500; }
    .testimonial-meta { margin-top: 1.25rem; display: flex; flex-direction: column; }
    .testimonial-meta strong { font-size: 0.95rem; font-weight: 800; color: var(--text); }
    .testimonial-meta a { font-size: 0.85rem; color: var(--slate); text-decoration: none; margin-top: 0.2rem; }

    /* ---- SECTIONS ---- */
    section { padding: 5rem 0; }

    .section-kicker {
      font-size: 0.85rem; font-weight: 800; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--blue);
      margin-bottom: 1rem; display: inline-block;
      background: var(--blue-pale); padding: 0.4rem 1rem; border-radius: 999px;
    }
    .section-title {
      font-family: var(--font-sans);
      font-weight: 800;
      font-size: clamp(2.2rem, 4.5vw, 3.5rem);
      line-height: 1.1; letter-spacing: -0.03em; color: var(--navy);
    }
    .section-lead {
      margin-top: 1.25rem; font-size: 1.15rem; color: var(--slate); line-height: 1.6;
      max-width: 600px; font-weight: 500;
    }

    /* ---- HOW IT WORKS ---- */
    .how-section { background: white; }
    .how-header { text-align: center; margin-bottom: 5rem; }
    .how-header .section-lead { margin: 1.25rem auto 0; }
    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .how-card {
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 1.5rem;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s, border-color 0.3s;
      box-shadow: 0 16px 34px rgba(15,23,42,0.05);
      position: relative;
      overflow: hidden;
    }
    .how-card:hover,
    .how-card.is-active {
      transform: translateY(-8px);
      box-shadow: 0 28px 60px rgba(15,23,42,0.1);
      border-color: #bfd4ff;
      background: white;
    }
    .how-step-num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 56px; height: 56px; border-radius: 16px;
      background: var(--blue-pale);
      color: var(--blue); font-weight: 900; font-size: 1.4rem;
      flex-shrink: 0;
    }
    .how-card-top {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.35rem;
    }
    .how-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.3rem; color: var(--text); }
    .how-step-kicker {
      font-size: 0.8rem;
      color: var(--slate);
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .how-card p { font-size: 1rem; color: var(--slate); line-height: 1.6; }
    .how-visual {
      position: relative;
      height: 410px;
      min-height: 410px;
      border-radius: 24px;
      padding: 1.1rem;
      margin-bottom: 1.25rem;
      overflow: hidden;
      border: 1px solid rgba(191,212,255,0.75);
      background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
    }
    .how-card.is-active .how-visual {
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.85), 0 18px 40px rgba(79,70,229,0.08);
    }
    .how-visual::after {
      content: '';
      position: absolute;
      inset: auto -15% -38% auto;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(99,102,241,0.14) 0%, rgba(99,102,241,0) 72%);
      pointer-events: none;
    }
    .how-visual-window {
      position: relative;
      height: 100%;
      border-radius: 18px;
      overflow: hidden;
      background: white;
      border: 1px solid rgba(226,232,240,0.95);
      box-shadow: 0 14px 30px rgba(15,23,42,0.08);
    }
    .how-visual-bar {
      height: 36px;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0 0.85rem;
      border-bottom: 1px solid rgba(226,232,240,0.95);
      background: #f8fafc;
    }
    .how-visual-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #cbd5e1;
    }
    .how-visual-body {
      padding: 1rem;
      height: calc(100% - 36px);
    }
    .how-source-list,
    .how-answer-list,
    .how-route-list {
      list-style: none;
      display: grid;
      gap: 0.75rem;
    }
    .how-source-item,
    .how-answer-item,
    .how-route-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.85rem 0.9rem;
      border-radius: 16px;
      border: 1px solid rgba(226,232,240,0.95);
      background: #fff;
      position: relative;
    }
    .how-source-icon,
    .how-route-icon,
    .how-answer-badge {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.9rem;
      font-weight: 900;
    }
    .how-source-icon {
      background: #dbeafe;
      color: #2563eb;
    }
    .how-answer-badge {
      background: #dcfce7;
      color: #059669;
    }
    .how-route-icon {
      background: #fce7f3;
      color: #db2777;
    }
    .how-source-item strong,
    .how-answer-item strong,
    .how-route-item strong {
      display: block;
      color: var(--text);
      font-size: 0.95rem;
      margin-bottom: 0.15rem;
    }
    .how-source-item span,
    .how-answer-item span,
    .how-route-item span {
      color: var(--slate);
      font-size: 0.85rem;
      line-height: 1.4;
    }
    .how-scan-line {
      position: absolute;
      left: 12px;
      right: 12px;
      height: 54px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(16,185,129,0) 0%, rgba(16,185,129,0.2) 48%, rgba(16,185,129,0) 100%);
      box-shadow: 0 0 18px rgba(16,185,129,0.24);
      opacity: 0;
    }
    .how-card.is-active .how-visual-scan .how-scan-line {
      animation: howScan 1.35s ease-out 1 0.25s both;
    }
    .how-step-site-screen {
      height: 100%;
      min-height: 100%;
      border-radius: 16px;
      overflow: hidden;
      background: #ffffff;
      position: relative;
    }
    .how-step-site-body {
      height: 100%;
      padding: 1rem 1rem 1.05rem;
      background: linear-gradient(180deg, #f8fbff 0%, #ffffff 62%);
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .how-step-site-image {
      flex: 1 1 auto;
      min-height: 250px;
      border-radius: 14px;
      background: linear-gradient(135deg, #dbeafe, #eff6ff);
      margin-bottom: 0.8rem;
      position: relative;
      overflow: hidden;
    }
    .how-step-site-image::before {
      content: '';
      position: absolute;
      inset: 14px 16px auto 16px;
      height: 20px;
      border-radius: 12px;
      background: rgba(255,255,255,0.38);
    }
    .how-step-site-image::after,
    .how-step-site-image::before {
      z-index: 1;
    }
    .how-step-site-image:before {
      box-shadow:
        0 42px 0 0 rgba(255,255,255,0.18),
        0 78px 0 0 rgba(255,255,255,0.14),
        0 114px 0 0 rgba(255,255,255,0.12);
    }
    .how-step-site-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 50%, rgba(255,255,255,0) 100%);
      transform: translateX(-100%);
    }
    .how-card.is-active .how-step-site-image::after {
      animation: howHeroSweep 2.6s ease-in-out infinite;
    }
    .how-step-site-title,
    .how-step-site-line {
      background: #dbe4f0;
      border-radius: 999px;
    }
    .how-step-site-title {
      width: 68%;
      height: 10px;
      margin-bottom: 0.45rem;
    }
    .how-step-site-line {
      height: 8px;
      margin-bottom: 0.35rem;
    }
    .how-step-site-line.short { width: 54%; }
    .how-step-site-copy {
      margin-top: auto;
      padding-right: 56px;
    }
    .how-step-chat-trigger {
      position: absolute;
      right: 16px;
      bottom: 16px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(135deg, #dc2626, #ef4444);
      color: white;
      box-shadow: 0 14px 24px rgba(220,38,38,0.28);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.82rem;
      transform: scale(1);
    }
    .how-card.is-active .how-step-chat-trigger {
      animation: howChatTrigger 0.65s ease-out 1 0.35s both;
    }
    .how-step-widget {
      position: absolute;
      inset: 12px 12px 12px 12px;
      padding: 0.85rem;
      border-radius: 18px;
      background: white;
      border: 1px solid rgba(191,212,255,0.95);
      box-shadow: 0 18px 34px rgba(15,23,42,0.16);
      transform-origin: bottom right;
      transform: translateY(18px) scale(0.9);
      opacity: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .how-card.is-active .how-step-widget {
      animation: howWidgetPop 0.7s ease-out 1 0.95s both;
    }
    .how-step-widget-head {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.75rem;
    }
    .how-step-widget-avatar {
      width: 26px;
      height: 26px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--blue), #8b5cf6);
      color: white;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: 800;
      flex-shrink: 0;
    }
    .how-step-widget-head strong {
      display: block;
      font-size: 0.72rem;
      color: var(--text);
      margin-bottom: 0.05rem;
    }
    .how-step-widget-head span {
      display: block;
      font-size: 0.62rem;
      color: var(--slate);
    }
    .how-step-widget-bubble {
      padding: 0.65rem 0.75rem;
      border-radius: 14px;
      background: #eff6ff;
      color: #1e3a8a;
      font-size: 0.72rem;
      line-height: 1.45;
      border: 1px solid rgba(191,219,254,0.95);
      margin-bottom: 0.6rem;
    }
    .how-step-widget-bubble.is-user {
      align-self: flex-end;
      background: #fff5f5;
      color: #7f1d1d;
      border-color: rgba(252,165,165,0.95);
      max-width: 82%;
    }
    .how-step-widget-bubble.is-user-typed {
      position: relative;
      min-height: 47px;
    }
    .how-step-typed-text {
      display: inline-block;
      color: #7f1d1d;
      white-space: nowrap;
      overflow: hidden;
      width: 0;
      border-right: 2px solid rgba(127,29,29,0.55);
      vertical-align: top;
    }
    .how-card.is-active .how-step-typed-text {
      animation: howTypeQuestion 1.15s steps(28, end) 1 1.55s forwards;
    }
    .how-step-widget-bubble.is-answer {
      opacity: 0;
      transform: translateY(10px);
    }
    .how-card.is-active .how-step-widget-bubble.is-answer {
      animation: howAnswerReveal 0.45s ease-out 1 2.9s forwards;
    }
    .how-route-flow {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }
    .how-route-node {
      flex: 1;
      text-align: center;
      padding: 0.85rem 0.7rem;
      border-radius: 18px;
      border: 1px solid rgba(226,232,240,0.95);
      background: #fff;
      position: relative;
    }
    .how-route-node strong {
      display: block;
      color: var(--text);
      font-size: 0.92rem;
      margin-bottom: 0.2rem;
    }
    .how-route-node span {
      display: block;
      font-size: 0.8rem;
      color: var(--slate);
      line-height: 1.35;
    }
    .how-route-arrow {
      width: 34px;
      height: 2px;
      background: linear-gradient(90deg, #cbd5e1 0%, #60a5fa 100%);
      position: relative;
      flex-shrink: 0;
    }
    .how-route-arrow::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -2px;
      width: 8px;
      height: 8px;
      border-top: 2px solid #60a5fa;
      border-right: 2px solid #60a5fa;
      transform: translateY(-50%) rotate(45deg);
    }
    .how-route-pulse {
      position: absolute;
      top: 50%;
      left: 0;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #2563eb;
      transform: translate(-50%, -50%);
      opacity: 0;
    }
    .how-card.is-active .how-route-pulse {
      animation: howRoutePulse 2.9s ease-in-out infinite;
    }
    .how-route-list .how-route-item {
      opacity: 0.55;
      transform: translateY(10px);
    }
    .how-card.is-active .how-route-list .how-route-item {
      animation: howRouteItem 2.9s ease-in-out infinite;
    }
    .how-card.is-active .how-route-list .how-route-item:nth-child(2) { animation-delay: 0.4s; }
    .how-card.is-active .how-route-list .how-route-item:nth-child(3) { animation-delay: 0.8s; }

    @keyframes howScan {
      0%, 12% { top: 14px; opacity: 0; }
      20%, 72% { opacity: 1; }
      100% { top: calc(100% - 68px); opacity: 0; }
    }
    @keyframes howHeroSweep {
      0%, 18% { transform: translateX(-100%); }
      42%, 70% { transform: translateX(100%); }
      100% { transform: translateX(100%); }
    }
    @keyframes howTypeQuestion {
      0% { width: 0; border-right-color: rgba(127,29,29,0.55); }
      90% { width: calc(100% - 1.5rem); border-right-color: rgba(127,29,29,0.55); }
      100% { width: calc(100% - 1.5rem); border-right-color: transparent; }
    }
    @keyframes howAnswerReveal {
      0% { opacity: 0; transform: translateY(10px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes howChatTrigger {
      0% { transform: scale(1); box-shadow: 0 14px 24px rgba(220,38,38,0.22); }
      55% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(220,38,38,0.14), 0 14px 24px rgba(220,38,38,0.24); }
      100% { transform: scale(1); box-shadow: 0 14px 24px rgba(220,38,38,0.28); }
    }
    @keyframes howWidgetPop {
      0% { opacity: 0; transform: translateY(18px) scale(0.9); }
      100% { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes howRoutePulse {
      0% { left: 0; opacity: 0; }
      12% { opacity: 1; }
      75% { opacity: 1; }
      100% { left: 100%; opacity: 0; }
    }
    @keyframes howRouteItem {
      0%, 18% { opacity: 0.45; transform: translateY(10px); }
      28%, 72% { opacity: 1; transform: translateY(0); }
      100% { opacity: 0.58; transform: translateY(0); }
    }

    /* ---- FEATURES ---- */
    .features-section { background: #fafcff; }
    .feature-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
      margin-bottom: 8rem;
    }
    .feature-block:last-child { margin-bottom: 0; }
    .feature-block.reverse .feature-visual { order: -1; }
    
    .feature-title {
      font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 1.25rem;
    }
    .feature-desc { font-size: 1.1rem; color: var(--slate); line-height: 1.7; margin-bottom: 2rem; font-weight: 500; }
    .feature-list { list-style: none; display: grid; gap: 1rem; }
    .feature-list li {
      display: flex; gap: 1rem; align-items: flex-start;
      font-size: 1.05rem; color: var(--slate); line-height: 1.5; font-weight: 500;
    }
    .feature-list li i { color: white; background: var(--blue); padding: 6px; border-radius: 50%; font-size: 0.75rem; margin-top: 3px; flex-shrink: 0; }
    .feature-list li strong { color: var(--text); font-weight: 800; }

    .feature-visual { position: relative; }
    .feature-visual::before {
      content: ''; position: absolute; inset: -10%; background: radial-gradient(circle, var(--blue-pale) 0%, transparent 70%); z-index: 0; pointer-events: none;
    }
    .feature-visual > div { position: relative; z-index: 1; }

    /* Analytics mock */
    .analytics-card {
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius); padding: 2.5rem;
      box-shadow: 0 20px 50px rgba(15,23,42,0.06);
    }
    .analytics-title { font-size: 0.85rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); margin-bottom: 1.5rem; }
    .analytics-stat-row { display: flex; gap: 1rem; margin-bottom: 2rem; }
    .analytics-stat {
      flex: 1; padding: 1.25rem; border-radius: var(--radius-sm);
      background: var(--bg-light); text-align: center; border: 1px solid var(--border);
    }
    .analytics-stat .num { font-size: 2rem; font-weight: 900; color: var(--text); }
    .analytics-stat .lbl { font-size: 0.85rem; color: var(--slate); margin-top: 0.25rem; font-weight: 600; }
    .top-questions { list-style: none; display: grid; gap: 0.75rem; }
    .top-questions li {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.8rem 1rem; border-radius: 12px;
      background: white; border: 1px solid var(--border); font-size: 0.95rem; font-weight: 600; color: var(--text);
    }
    .top-questions .count { font-weight: 800; color: var(--slate); background: var(--bg-light); padding: 2px 10px; border-radius: 999px; }
    .tq-bar { height: 6px; border-radius: 999px; background: var(--border); margin-top: 0.5rem; overflow: hidden; }
    .tq-bar-fill { height: 100%; border-radius: 999px; background: var(--blue); }

    /* Staff panel mock */
    .staff-panel {
      background: white;
      border-radius: var(--radius);
      padding: 2.5rem;
      border: 1px solid var(--border);
      box-shadow: 0 20px 50px rgba(15,23,42,0.06);
    }
    .staff-panel-title {
      font-size: 0.85rem; font-weight: 800; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--pink);
      margin-bottom: 1.5rem;
    }
    .staff-row {
      padding: 1.25rem; border-radius: var(--radius-sm);
      background: var(--bg-light); border: 1px solid var(--border);
      margin-bottom: 1rem;
    }
    .staff-row:last-child { margin-bottom: 0; }
    .staff-row-name { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 0.4rem; }
    .staff-row-detail { font-size: 0.9rem; color: var(--slate); font-weight: 500; }

    /* Actions Panel mock */
    .actions-panel {
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius); padding: 2.5rem;
      box-shadow: 0 20px 50px rgba(15,23,42,0.06);
    }
    .actions-item {
      display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem;
      border-radius: var(--radius-sm); background: white; border: 1px solid var(--border);
      margin-bottom: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    }
    .actions-item:last-child { margin-bottom: 0; }
    .actions-icon {
      width: 48px; height: 48px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }
    .actions-text strong { font-size: 1.05rem; font-weight: 800; color: var(--text); display: block; margin-bottom: 0.2rem; }
    .actions-text span { font-size: 0.9rem; color: var(--slate); font-weight: 500; }

    /* ---- PRICING ---- */
    .pricing-section { background: white; }
    .pricing-header { text-align: center; margin-bottom: 2rem; }
    .pricing-header .section-lead { margin: 1.25rem auto 0; }

    .billing-toggle {
      display: flex; align-items: center; justify-content: center; gap: 0;
      background: var(--bg-light); border: 1px solid var(--border);
      border-radius: 999px; padding: 6px;
      width: fit-content; margin: 2rem auto 4rem;
    }
    .toggle-btn {
      padding: 0.7rem 2rem; border-radius: 999px;
      font-size: 1rem; font-weight: 700; color: var(--slate);
      background: none; border: none; cursor: pointer; transition: all 0.2s;
    }
    .toggle-btn.active { background: white; color: var(--text); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
    .save-badge { font-size: 0.8rem; font-weight: 800; color: var(--emerald); background: #d1fae5; padding: 2px 8px; border-radius: 999px; margin-left: 0.5rem; }

    .pricing-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start;
    }
    .pricing-card {
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius); padding: 3rem 2.5rem;
      position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    }
    .pricing-card.featured {
      border-color: var(--blue); border-width: 2px;
      box-shadow: 0 20px 50px rgba(79, 70, 229, 0.1);
      transform: scale(1.02);
    }
    .featured-badge {
      position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
      background: var(--blue); color: white;
      font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
      padding: 0.4rem 1.2rem; border-radius: 999px;
    }
    .plan-icon {
      width: 56px; height: 56px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      background: var(--bg-light); color: var(--slate);
      font-size: 1.4rem; margin-bottom: 1.5rem;
    }
    .pricing-card.featured .plan-icon { background: var(--blue-pale); color: var(--blue); }
    .plan-name { font-size: 1.8rem; font-weight: 900; color: var(--text); }
    .plan-tagline { font-size: 1rem; color: var(--slate); font-weight: 700; margin-top: 0.2rem; }
    .plan-desc { font-size: 1rem; color: var(--slate); line-height: 1.6; margin: 1rem 0 1.5rem; font-weight: 500; }
    .plan-price { font-size: 3.5rem; font-weight: 900; color: var(--text); letter-spacing: -0.02em; }
    .plan-period { font-size: 1.1rem; font-weight: 600; color: var(--slate-light); }
    .plan-billnote { min-height: 1.5rem; font-size: 0.9rem; font-weight: 500; color: var(--slate-light); margin: 0.25rem 0 2rem; }
    .btn-plan {
      display: block; text-align: center; width: 100%;
      padding: 1.1rem; border-radius: 999px;
      font-weight: 800; font-size: 1.05rem; text-decoration: none;
      transition: all 0.2s; margin-bottom: 2rem;
    }
    .btn-plan-primary { background: var(--blue); color: white; box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25); }
    .btn-plan-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 12px 25px rgba(79, 70, 229, 0.35); }
    .btn-plan-outline { background: var(--bg-light); color: var(--text); }
    .btn-plan-outline:hover { background: #e2e8f0; }
    .plan-features { list-style: none; display: grid; gap: 1rem; }
    .plan-features li {
      display: flex; gap: 0.8rem;
      font-size: 1rem; color: var(--slate); align-items: flex-start; line-height: 1.5; font-weight: 500;
    }
    .plan-features li i { color: var(--emerald); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
    .plan-features li.highlight i { color: var(--pink); }
    .plan-features li strong { color: var(--text); font-weight: 800; }
    .pricing-addon-callout {
      margin: 70px 0 0;
      width: 100%;
      display: flex; align-items: center; gap: 1rem;
      padding: 1.2rem 1.4rem;
      border-radius: 22px;
      background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
      border: 1px solid #93c5fd;
      color: var(--slate);
      box-shadow: 0 16px 32px rgba(37, 99, 235, 0.08);
    }
    .pricing-addon-callout i {
      color: #dc2626;
      font-size: 2rem;
      margin-top: 0;
      flex-shrink: 0;
    }
    .pricing-addon-copy {
      flex: 1;
      min-width: 0;
    }
    .pricing-addon-callout strong {
      display: block;
      color: var(--text);
      font-weight: 800;
      margin-bottom: 0.2rem;
    }
    .pricing-addon-callout span {
      display: block;
      line-height: 1.6;
    }
    .pricing-addon-price {
      flex-shrink: 0;
      padding: 0.7rem 1rem;
      border-radius: 999px;
      background: white;
      border: 1px solid #93c5fd;
      color: var(--blue);
      font-size: 0.98rem;
      font-weight: 900;
      white-space: nowrap;
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
    }

    /* ---- FAQ ---- */
    .faq-section { background: #fafcff; }
    .faq-header { text-align: center; margin-bottom: 4rem; }
    .faq-grid { max-width: 800px; margin: 0 auto; display: grid; gap: 1rem; }
    .faq-item {
      background: white;
      border: 1px solid var(--border); border-radius: var(--radius-sm);
      overflow: hidden; transition: box-shadow 0.2s;
    }
    .faq-item:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.03); }
    .faq-question {
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.5rem; cursor: pointer;
      font-weight: 800; font-size: 1.1rem; color: var(--text);
    }
    .faq-icon { transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); flex-shrink: 0; color: var(--blue); }
    .faq-item.active .faq-icon { transform: rotate(180deg); }
    .faq-answer {
      display: none; padding: 0 1.5rem 1.5rem;
      font-size: 1.05rem; color: var(--slate); line-height: 1.7; font-weight: 500;
    }
    .faq-item.active .faq-answer { display: block; }
    .faq-answer p + p { margin-top: 0.75rem; }
    .faq-lead { font-weight: 800; color: var(--text); margin-bottom: 0.5rem; }

    /* ---- CTA BOTTOM (BRIGHT SAAS STYLE) ---- */
    .cta-section {
      background: linear-gradient(135deg, #e0e7ff 0%, #fce7f3 100%);
      text-align: center; padding: 8rem 0;
      position: relative; overflow: hidden;
    }
    .cta-section .hero-badge { margin: 0 auto 2rem; background: rgba(255,255,255,0.6); backdrop-filter: blur(10px); border-color: white; }
    .cta-heading {
      font-family: var(--font-sans);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.1; letter-spacing: -0.03em; color: var(--navy);
      max-width: 900px; margin: 0 auto 1.5rem;
    }
    .cta-heading-grad {
      color: var(--blue);
    }
    .cta-desc { font-size: 1.2rem; color: var(--slate); line-height: 1.6; font-weight: 500; max-width: 646px; margin: 0 auto 3rem; }
    .cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
    .cta-btn-primary {
      padding: 1.2rem 2.5rem; border-radius: 999px;
      background: var(--blue); color: white;
      font-size: 1.1rem; font-weight: 800; text-decoration: none;
      transition: all 0.2s; box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
    }
    .cta-btn-primary:hover { background: var(--blue-light); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3); }
    .cta-btn-secondary {
      padding: 1.2rem 2.5rem; border-radius: 999px;
      background: white; color: var(--text); border: 2px solid transparent;
      font-size: 1.1rem; font-weight: 800; text-decoration: none; transition: all 0.2s;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    .cta-btn-secondary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }

    /* ---- FOOTER ---- */
    .site-footer {
      background: white; border-top: 1px solid var(--border);
      padding: 5rem 0 2rem; color: var(--slate);
    }
    .footer-grid {
      display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem;
      padding-bottom: 4rem; margin-bottom: 2rem;
      border-bottom: 1px solid var(--border);
    }
    .footer-logo {
      display: flex; align-items: center; gap: 0.6rem;
      text-decoration: none; font-weight: 800; font-size: 1.2rem; color: var(--text);
      margin-bottom: 1.5rem; letter-spacing: -0.02em;
    }
    .footer-logo img { width: 36px; height: 36px; border-radius: 10px; }
    .footer-desc { font-size: 1rem; line-height: 1.7; font-weight: 500; margin-bottom: 1.5rem; max-width: 400px; }
    .footer-contact-note { font-size: 0.95rem; line-height: 1.7; font-weight: 600; color: var(--text); }

    .footer-form h4 { color: var(--text); font-size: 1.2rem; font-weight: 800; margin-bottom: 1.5rem; }
    .contact-form { display: grid; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .contact-form label { display: block; }
    .contact-form label span { display: block; font-size: 0.9rem; font-weight: 700; color: var(--slate); margin-bottom: 0.5rem; }
    .contact-form input, .contact-form textarea {
      width: 100%; padding: 1rem 1.25rem;
      border: 1px solid var(--border); border-radius: 16px;
      background: var(--bg-light); color: var(--text);
      font: inherit; font-size: 1rem; font-weight: 500;
      transition: all 0.2s;
    }
    .contact-form input:focus, .contact-form textarea:focus {
      outline: none; border-color: var(--blue); background: white; box-shadow: 0 0 0 4px var(--blue-pale);
    }
    .contact-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
    .contact-form-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
    .contact-form-status { min-height: 1.4rem; font-size: 0.95rem; font-weight: 600; color: var(--slate); }
    .contact-form-status.is-success { color: #059669; }
    .contact-form-status.is-error { color: #dc2626; }
    .btn-submit {
      padding: 1rem 2rem; border-radius: 999px;
      background: var(--text); color: white;
      font-weight: 800; border: none; cursor: pointer;
      font-size: 1.05rem; width: fit-content; transition: all 0.2s;
      margin-top: 0.5rem;
    }
    .btn-submit:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25); }
    .btn-submit:disabled { opacity: 0.7; cursor: wait; transform: none; box-shadow: none; }

    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem; font-size: 0.95rem; font-weight: 500;
    }
    .footer-bottom a { color: var(--blue); text-decoration: none; font-weight: 700; }
    .footer-bottom a:hover { text-decoration: underline; }
    .footer-bottom-links { display: flex; gap: 2rem; }
    .footer-bottom-links a { color: var(--slate); font-weight: 600; }
    .footer-bottom-links a:hover { color: var(--text); text-decoration: none; }

    /* ---- RESPONSIVE ---- */
    @media (max-width: 1024px) {
      .how-grid { grid-template-columns: 1fr 1fr; }
      .feature-block { grid-template-columns: 1fr; gap: 3rem; }
      .feature-block.reverse .feature-visual { order: 0; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
      .pricing-card.featured { transform: none; }
      .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 1rem; }
      .header-nav { display: none; }
      .header-login-link { display: none; }
      .mobile-menu-btn { display: flex; }
      .how-grid { grid-template-columns: 1fr; }
      .how-card { overflow: visible; }
      .hero-phones { gap: 1rem; padding: 30px 1rem 2rem; margin-bottom: 0; }
      .phone-mockup { width: 240px; height: 520px; border-width: 8px; border-radius: 36px; }
      .phone-screen { padding: 40px 0 0 0; }
      .phone-notch { width: 80px; height: 24px; top: 8px; }
      .phone-purpose-badge { top: 14px; right: 12px; font-size: 0.64rem; padding: 0.35rem 0.65rem; }
      .phone-header-name { font-size: 0.8rem; }
      .phone-header-avatar { width: 32px; height: 32px; }
      .phone-msg { font-size: 0.8rem; padding: 0.6rem 0.8rem; }
      .phone-chip { font-size: 0.7rem; }
      .phone-mockup.side-left { transform: scale(0.9); }
      .phone-mockup.side-right { transform: scale(0.9); }
      .phone-mockup.center { transform: scale(1); }
      .how-visual { height: 230px; min-height: 230px; }
      .how-answer-list { grid-template-columns: 1fr; }
      .how-route-flow { flex-direction: column; }
      .how-route-arrow { width: 2px; height: 26px; background: linear-gradient(180deg, #cbd5e1 0%, #60a5fa 100%); }
      .how-route-arrow::after {
        top: auto;
        bottom: -1px;
        left: 50%;
        right: auto;
        transform: translateX(-50%) rotate(135deg);
      }
      .how-card.is-active .how-route-pulse { animation-name: howRoutePulseVertical; }
      .how-visual,
      .how-visual-body,
      .how-visual-window,
      .how-step-site-screen,
      .how-step-site-body { height: auto; min-height: 0; }
      .how-step-site-image { min-height: 180px; }
      .analytics-card,
      .staff-panel,
      .actions-panel { padding: 1.5rem; }
      .analytics-stat-row { flex-direction: column; }
      .analytics-stat { width: 100%; }
      .top-questions li { align-items: flex-start; }
      .pricing-addon-callout {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1rem 1.1rem;
        gap: 0.85rem;
      }
      .pricing-addon-callout i {
        font-size: 1.75rem;
      }
      .pricing-addon-price {
        width: 100%;
        text-align: center;
      }
      .form-row { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
      .testimonial-card { width: min(82vw, 320px); }
    }
    @media (max-width: 500px) {
      .phone-mockup.side-left, .phone-mockup.side-right { display: none; }
      .hero-phones { justify-content: center; }
      .phone-mockup.center { width: min(92vw, 320px); height: min(190vw, 620px); }
      .hero-title { font-size: clamp(2.2rem, 9vw, 3.1rem); }
      .hero-subtitle { font-size: 1rem; line-height: 1.5; }
      .hero-proof { gap: 0.75rem 1rem; margin-bottom: 3rem; }
      .section-title { font-size: clamp(1.9rem, 8vw, 2.5rem); }
      .section-lead { font-size: 1rem; }
      .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; justify-content: center; }
      .testimonial-card { width: min(86vw, 300px); padding: 1.25rem; }
      .pricing-card { padding: 2rem 1.25rem; }
      .pricing-addon-callout {
        margin-top: 40px;
        border-radius: 18px;
      }
      .pricing-addon-callout strong {
        font-size: 1rem;
      }
      .pricing-addon-callout span {
        font-size: 0.95rem;
      }
      .pricing-addon-price {
        font-size: 0.92rem;
        padding: 0.75rem 0.9rem;
      }
      .how-visual { padding: 0.8rem; border-radius: 20px; }
      .how-visual-window { border-radius: 16px; }
      .analytics-card,
      .staff-panel,
      .actions-panel { padding: 1.2rem; }
      .analytics-stat .num { font-size: 1.6rem; }
      .top-questions li { padding: 0.75rem 0.85rem; font-size: 0.9rem; }
    }
    @keyframes howRoutePulseVertical {
      0% { top: 0; left: 50%; opacity: 0; transform: translate(-50%, -50%); }
      12% { opacity: 1; }
      75% { opacity: 1; }
      100% { top: 100%; left: 50%; opacity: 0; transform: translate(-50%, -50%); }
    }
