  :root {
    --bg: #08090C;
    --bg-raised: #0D0F14;
    --bg-card: #12151B;
    --bg-card-hover: #171B22;
    --bg-input: #10131A;

    --gold: #D4B45A;
    --gold-soft: #E2C87E;
    --gold-pale: #EEDBA8;
    --gold-dim: rgba(201,168,76,0.07);
    --gold-border: rgba(201,168,76,0.16);
    --gold-glow: rgba(201,168,76,0.04);

    --slate: #8FA2C0;
    --slate-soft: #A8B8D0;
    --slate-dim: rgba(123,142,175,0.07);
    --slate-border: rgba(123,142,175,0.12);

    --emerald: #6DB88C;
    --emerald-dim: rgba(92,160,122,0.07);
    --emerald-border: rgba(92,160,122,0.14);

    --coral: #D48E70;
    --coral-dim: rgba(196,122,92,0.07);

    --text: #EDEAE4;
    --text-sub: #B5B0A6;
    --text-dim: #7A756B;
    --text-ghost: #4E4A42;

    --line: rgba(224,221,214,0.07);
    --line-hover: rgba(224,221,214,0.12);
    --line-active: rgba(201,168,76,0.2);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
  }

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

  body {
    font-family: 'Noto Sans JP', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  body::after {
    content: '';
    position: fixed; inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.015'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 0;
  }

  /* ===== NAV ===== */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: 56px;
    background: rgba(8,9,12,0.88);
    backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
  }

  .nav-left { display: flex; align-items: center; gap: 12px; }

  .logo-mark {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.04));
    border: 1px solid var(--gold-border);
    display: flex; align-items: center; justify-content: center;
  }
  .logo-mark svg { width: 16px; height: 16px; color: var(--gold); }

  .logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px; font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
  }

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

  .nav-link {
    font-size: 12px; font-weight: 500;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  .nav-link:hover { color: var(--text-sub); }

  .nav-cta {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold), #A88A3C);
    border: none; border-radius: var(--radius-sm);
    color: #0A0B0E;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer; transition: all 0.25s;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(201,168,76,0.2);
  }
  .nav-cta:hover {
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
    transform: translateY(-1px);
  }

  /* ===== HERO ===== */
  .hero {
    padding: 160px 48px 100px;
    text-align: center;
    position: relative; z-index: 1;
  }

  .hero-glow {
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 600px;
    background:
      radial-gradient(ellipse at 50% 40%, var(--gold-glow) 0%, transparent 50%),
      radial-gradient(ellipse at 40% 50%, rgba(123,142,175,0.015) 0%, transparent 45%);
    pointer-events: none; z-index: 0;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 20px;
    margin-bottom: 32px;
  }

  .hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: badgePulse 2s ease-in-out infinite;
  }
  @keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .hero-badge-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px; font-weight: 600;
    color: var(--gold-soft);
    letter-spacing: 0.3px;
  }

  .hero h1 {
    font-family: 'Noto Sans JP', system-ui, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto; margin-right: auto;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--gold);
    font-weight: 700;
  }

  .hero-sub {
    font-size: 15px;
    color: var(--text-sub);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.9;
    letter-spacing: 0.3px;
  }

  .hero-actions {
    display: flex; justify-content: center; gap: 12px;
    margin-bottom: 16px;
  }

  .btn-gold {
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--gold), #A88A3C);
    border: none; border-radius: var(--radius-sm);
    color: #0A0B0E;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer; transition: all 0.25s;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(201,168,76,0.25);
  }
  .btn-gold:hover {
    box-shadow: 0 6px 28px rgba(201,168,76,0.4);
    transform: translateY(-2px);
  }

  .btn-ghost {
    padding: 14px 28px;
    background: transparent;
    border: 1px solid var(--line-hover);
    border-radius: var(--radius-sm);
    color: var(--text-sub);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px; font-weight: 500;
    cursor: pointer; transition: all 0.2s;
    text-decoration: none;
    letter-spacing: 0.3px;
  }
  .btn-ghost:hover { border-color: var(--gold-border); color: var(--gold-soft); }

  .hero-note {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.5px;
  }

  /* ===== SECTION SHARED ===== */
  .section {
    padding: 80px 48px;
    position: relative; z-index: 1;
  }

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

  .sec-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px; font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .sec-label::before, .sec-label::after {
    content: ''; width: 20px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-border));
  }
  .sec-label::after {
    background: linear-gradient(90deg, var(--gold-border), transparent);
  }

  .sec-title {
    font-family: 'Noto Sans JP', system-ui, sans-serif;
    font-size: 26px; font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
    line-height: 1.6;
  }

  .sec-title em {
    font-style: normal;
    color: var(--gold);
    font-weight: 700;
  }

  /* ===== 4-STEP FLOW ===== */
  .steps {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .step-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px 20px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
  }
  .step-card:hover {
    border-color: var(--line-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  }

  .step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 12px; right: 16px;
    line-height: 1;
  }

  .step-icon {
    width: 44px; height: 44px;
    border-radius: 11px;
    margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
  }
  .step-icon svg { width: 20px; height: 20px; }
  .si-gold { background: var(--gold-dim); color: var(--gold); }
  .si-slate { background: var(--slate-dim); color: var(--slate); }
  .si-emerald { background: var(--emerald-dim); color: var(--emerald); }

  .step-title {
    font-size: 14px; font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
  }

  .step-desc {
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.7;
  }

  /* ===== PERSONA / TARGET ===== */
  .personas {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .persona-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .persona-card:hover {
    border-color: var(--line-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(0,0,0,0.22);
  }
  .persona-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px; opacity: 0.3;
  }
  .persona-card:nth-child(1)::before { background: var(--gold); }
  .persona-card:nth-child(2)::before { background: var(--slate); }
  .persona-card:nth-child(3)::before { background: var(--emerald); }

  .persona-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
  }
  .persona-icon svg { width: 17px; height: 17px; }

  .persona-role {
    font-size: 14px; font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
  }

  .persona-type {
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 14px;
    letter-spacing: 0.3px;
  }

  .persona-quote {
    font-family: 'Noto Serif JP', serif;
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.9;
    font-style: italic;
    padding: 12px;
    background: var(--bg-raised);
    border-left: 2px solid var(--line-hover);
    border-radius: 0 6px 6px 0;
    margin-bottom: 14px;
  }

  .persona-benefit {
    font-size: 11px;
    color: var(--gold-soft);
    font-weight: 600;
    letter-spacing: 0.3px;
  }

  /* ===== FEATURES ===== */
  .features {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .feat-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: all 0.25s;
  }
  .feat-card:hover {
    border-color: var(--line-hover);
    background: var(--bg-card-hover);
  }

  .feat-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
  }
  .feat-icon svg { width: 15px; height: 15px; }

  .feat-name {
    font-size: 13px; font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: 0.2px;
  }

  .feat-desc {
    font-size: 11px;
    color: var(--text-sub);
    line-height: 1.6;
  }

  /* ===== COMPARISON ===== */
  .compare-wrap {
    max-width: 680px;
    margin: 0 auto;
  }

  .compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
  }

  .compare-table th, .compare-table td {
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }

  .compare-table th {
    font-family: 'Inter', sans-serif;
    font-size: 10px; font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--bg-raised);
  }

  .compare-table th.th-meishia {
    color: var(--gold);
  }

  .compare-table td:first-child {
    text-align: left;
    color: var(--text-sub);
    font-weight: 500;
  }

  .compare-table td.meishia-col {
    background: rgba(201,168,76,0.02);
  }

  .check { color: var(--gold); font-size: 15px; }
  .check-dim { color: var(--emerald); font-size: 15px; }
  .cross { color: var(--text-ghost); font-size: 13px; }

  .compare-table tr:last-child td { border-bottom: none; }

  .price-row td {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
  }
  .price-row .meishia-col { color: var(--gold); }

  /* ===== PRICING ===== */
  .pricing {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: start;
  }

  .plan-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all 0.3s;
    position: relative;
  }
  .plan-card:hover {
    border-color: var(--line-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(0,0,0,0.22);
  }

  .plan-card.featured {
    border-color: var(--gold-border);
    background: linear-gradient(180deg, rgba(201,168,76,0.04), var(--bg-card));
  }

  .plan-badge {
    position: absolute;
    top: -10px; left: 50%; transform: translateX(-50%);
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--gold), #A88A3C);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 9px; font-weight: 700;
    color: #0A0B0E;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .plan-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
    margin-bottom: 6px;
  }

  .plan-price {
    display: flex; align-items: baseline; gap: 4px;
    margin-bottom: 4px;
  }

  .plan-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
  }

  .plan-unit {
    font-size: 12px;
    color: var(--text-dim);
  }

  .plan-annual {
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 18px;
    letter-spacing: 0.3px;
  }

  .plan-features {
    list-style: none;
    margin-bottom: 24px;
  }

  .plan-features li {
    font-size: 12px;
    color: var(--text-sub);
    padding: 6px 0;
    display: flex; align-items: center; gap: 8px;
    letter-spacing: 0.2px;
  }

  .plan-features li::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.4;
    flex-shrink: 0;
  }

  .plan-btn {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: block;
    letter-spacing: 0.3px;
  }

  .plan-btn-gold {
    background: linear-gradient(135deg, var(--gold), #A88A3C);
    border: none; color: #0A0B0E;
    box-shadow: 0 2px 12px rgba(201,168,76,0.2);
  }
  .plan-btn-gold:hover { box-shadow: 0 4px 20px rgba(201,168,76,0.35); transform: translateY(-1px); }

  .plan-btn-ghost {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text-sub);
  }
  .plan-btn-ghost:hover { border-color: var(--gold-border); color: var(--gold-soft); }

  /* ===== FAQ ===== */
  .faq-list {
    max-width: 640px;
    margin: 0 auto;
    display: flex; flex-direction: column;
    gap: 4px;
  }

  .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s;
  }
  .faq-item:hover { border-color: var(--line-hover); }

  .faq-q {
    width: 100%;
    padding: 16px 20px;
    background: transparent; border: none;
    color: var(--text);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px; font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    letter-spacing: 0.2px;
  }

  .faq-arrow {
    width: 20px; height: 20px;
    border-radius: 5px;
    background: var(--gold-dim);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  .faq-arrow svg { width: 10px; height: 10px; color: var(--gold); }

  .faq-a {
    padding: 0 20px 16px;
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.8;
    display: none;
  }

  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-arrow { transform: rotate(180deg); }

  /* ===== COMPANY ===== */
  .company-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px;
  }

  .company-table {
    width: 100%;
  }

  .company-table tr td {
    padding: 8px 0;
    font-size: 12px;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
  }
  .company-table tr:last-child td { border-bottom: none; }

  .company-table td:first-child {
    color: var(--text-dim);
    font-weight: 500;
    width: 120px;
    letter-spacing: 0.3px;
  }

  .company-table td:last-child {
    color: var(--text-sub);
  }

  .company-table a {
    color: var(--gold-soft);
    text-decoration: none;
  }
  .company-table a:hover { color: var(--gold); }

  .company-mission {
    margin-top: 16px;
    padding: 14px 16px;
    background: var(--bg-raised);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.8;
    font-style: italic;
  }

  /* ===== CTA SECTION ===== */
  .cta-section {
    padding: 80px 48px;
    text-align: center;
    position: relative; z-index: 1;
  }

  .cta-glow {
    position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse at 50% 60%, var(--gold-glow) 0%, transparent 50%);
    pointer-events: none;
  }

  .cta-ornament {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    margin-bottom: 28px;
  }

  .cta-line {
    width: 32px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  }

  .cta-dot {
    width: 4px; height: 4px;
    background: var(--gold);
    opacity: 0.3;
    transform: rotate(45deg);
  }

  .cta-title {
    font-family: 'Noto Sans JP', system-ui, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.3px;
    margin-bottom: 12px;
  }
  .cta-title em { font-style: normal; color: var(--gold); font-weight: 700; }

  .cta-sub {
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 28px;
    letter-spacing: 0.3px;
  }

  /* ===== FOOTER ===== */
  .footer {
    padding: 32px 48px;
    border-top: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
    position: relative; z-index: 1;
  }

  .footer-left {
    display: flex; align-items: center; gap: 24px;
  }

  .footer-links {
    display: flex; gap: 20px;
  }

  .footer-link {
    font-size: 11px;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s;
  }
  .footer-link:hover { color: var(--text-sub); }

  .footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--text-ghost);
    letter-spacing: 0.5px;
  }

  /* ===== DIVIDER ===== */
  .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
    margin: 0 48px;
  }

  /* ===== SOCIAL PROOF BAR ===== */
  .proof-bar {
    display: flex; align-items: center; justify-content: center; gap: 40px;
    padding: 20px 48px;
    position: relative; z-index: 1;
    border-bottom: 1px solid var(--line);
    background: var(--bg-raised);
  }

  .proof-item {
    display: flex; align-items: center; gap: 10px;
  }

  .proof-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.5px;
  }

  .proof-label {
    font-size: 11px;
    color: var(--text-sub);
    line-height: 1.4;
    letter-spacing: 0.2px;
  }

  .proof-sep {
    width: 1px; height: 28px;
    background: var(--line);
  }

  /* ===== ROI CALLOUT ===== */
  .roi-callout {
    max-width: 520px;
    margin: 0 auto 24px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(201,168,76,0.02));
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    display: flex; align-items: center; gap: 14px;
  }

  .roi-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--gold-dim);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .roi-icon svg { width: 18px; height: 18px; color: var(--gold); }

  .roi-text {
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.7;
  }

  .roi-highlight {
    color: var(--gold);
    font-weight: 600;
  }

  /* ===== GUARANTEE BADGES ===== */
  .guarantee-row {
    display: flex; align-items: center; justify-content: center; gap: 24px;
    margin-top: 16px;
  }

  .guarantee-badge {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.3px;
  }

  .guarantee-badge svg {
    width: 14px; height: 14px;
    color: var(--emerald);
  }

  .guarantee-badge strong {
    color: var(--text-sub);
    font-weight: 600;
  }

  /* ===== BRIDGE CTA ===== */
  .bridge-cta {
    text-align: center;
    margin-top: 32px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    max-width: 500px;
    margin-left: auto; margin-right: auto;
  }

  .bridge-cta-text {
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 12px;
    letter-spacing: 0.2px;
  }

  .bridge-cta-text strong {
    color: var(--gold);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
  }

  /* ===== FREE LIMIT NOTE ===== */
  .free-limit {
    font-size: 10px;
    color: var(--text-dim);
    margin-top: 6px;
    letter-spacing: 0.2px;
  }

  .free-limit-warn {
    color: var(--coral);
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero { animation: fadeUp 0.8s ease-out; }
  .hero-badge { animation: fadeUp 0.6s ease-out 0.1s both; }
  .hero h1 { animation: fadeUp 0.7s ease-out 0.15s both; }
  .hero-sub { animation: fadeUp 0.7s ease-out 0.25s both; }
  .hero-actions { animation: fadeUp 0.7s ease-out 0.35s both; }
  .proof-bar { animation: fadeUp 0.6s ease-out 0.45s both; }

  /* ===== FLOATING CTA BAR ===== */
  .float-cta {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 99;
    padding: 12px 24px;
    background: rgba(8,9,12,0.92);
    backdrop-filter: blur(20px) saturate(1.2);
    border-top: 1px solid var(--gold-border);
    display: flex; align-items: center; justify-content: center; gap: 16px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  .float-cta.visible { transform: translateY(0); }

  .float-cta-text {
    font-size: 13px;
    color: var(--text-sub);
    letter-spacing: 0.2px;
  }
  .float-cta-text strong {
    color: var(--gold);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
  }

  .float-cta .btn-gold {
    padding: 10px 28px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* ===== DEMO MOCK ===== */
  .hero-demo {
    max-width: 540px;
    margin: 32px auto 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--bg-card);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }

  .demo-bar {
    padding: 8px 14px;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; gap: 6px;
  }

  .demo-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--text-ghost);
  }

  .demo-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    padding: 24px 20px;
  }

  .demo-step {
    text-align: center;
    padding: 12px 8px;
  }

  .demo-step-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    margin: 0 auto 8px;
    display: flex; align-items: center; justify-content: center;
  }
  .demo-step-icon svg { width: 16px; height: 16px; }

  .demo-step-label {
    font-size: 10px;
    color: var(--text-sub);
    font-weight: 500;
    letter-spacing: 0.2px;
  }

  .demo-arrow {
    color: var(--gold);
    opacity: 0.3;
    display: flex; align-items: center; justify-content: center;
  }
  .demo-arrow svg { width: 16px; height: 16px; }

  /* ===== TESTIMONIAL STYLE ===== */
  .persona-quote {
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.8;
    margin-bottom: 10px;
    font-style: italic;
    position: relative;
    padding-left: 14px;
  }
  .persona-quote::before {
    content: '\201C';
    position: absolute;
    left: 0; top: -2px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
  }

  .persona-author {
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.3px;
  }

  .persona-stat {
    display: flex; align-items: baseline; gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .persona-stat-before {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dim);
    text-decoration: line-through;
  }

  .persona-stat-arrow {
    font-size: 11px;
    color: var(--gold);
    opacity: 0.5;
  }

  .persona-stat-after {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
  }

  .persona-stat-unit {
    font-size: 10px;
    color: var(--text-dim);
    margin-left: 2px;
  }

  /* ===== RESPONSIVE: TABLET ===== */
  @media (max-width: 768px) {
    .nav { padding: 0 20px; }
    .nav-links .nav-link { display: none; }
    .section { padding: 48px 20px; }
    .section-divider { margin: 0 20px; }
    .hero { padding: 120px 20px 60px; }
    .hero h1 { font-size: 28px; }
    .hero-sub { font-size: 14px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .features { grid-template-columns: repeat(2, 1fr); }
    .personas { grid-template-columns: 1fr; }
    .pricing { grid-template-columns: 1fr; max-width: 360px; }
    .compare-table { font-size: 11px; }
    .compare-table th, .compare-table td { padding: 10px 12px; }
    .proof-bar { flex-wrap: wrap; gap: 20px; padding: 16px 20px; }
    .proof-sep { display: none; }
    .footer { flex-direction: column; gap: 16px; padding: 24px 20px; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .cta-section { padding: 48px 20px; }
    .guarantee-row { flex-wrap: wrap; gap: 16px; }
    .float-cta { padding: 10px 16px; gap: 12px; }
    .float-cta-text { font-size: 12px; }
    .float-cta .btn-gold { padding: 8px 20px; font-size: 11px; }
    .hero-demo { max-width: 100%; }
    .roi-callout { max-width: 100%; }
    .bridge-cta { max-width: 100%; }
  }

  /* ===== RESPONSIVE: MOBILE ===== */
  @media (max-width: 480px) {
    .hero { padding: 100px 16px 48px; }
    .hero h1 { font-size: 24px; }
    .hero-sub { font-size: 13px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-gold { width: 100%; text-align: center; }
    .btn-ghost { width: 100%; text-align: center; }
    .steps { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
    .section { padding: 40px 16px; }
    .section-divider { margin: 0 16px; }
    .nav { padding: 0 16px; }
    .nav-links { gap: 16px; }
    .compare-table th, .compare-table td { padding: 8px 8px; font-size: 10px; }
    .company-card { padding: 20px; }
    .faq-q { font-size: 12px; padding: 14px 16px; }
    .faq-a { padding: 0 16px 14px; font-size: 11px; }
    .footer { padding: 20px 16px; }
    .cta-title { font-size: 20px; }
    .demo-flow { padding: 16px 12px; }
    .demo-step-label { font-size: 9px; }
  }
