/* ================= VARIABLES ================= */
:root {
    --primary: #064e3b; /* Deep green */
    --primary-hover: #04382a;
    --primary-light: #ecfdf5;
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --text-main: #111827;
    --text-muted: #4b5563;
    --border: #e5e7eb;
    --radius: 8px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.bg-gray {
    background-color: var(--bg-gray);
}

.problem {
    background-color: #f8fafc;
}

.bg-green {
    background-color: var(--primary);
    color: var(--bg-white);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 32px; }

section {
    padding: 96px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.modules .section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.problem .section-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 56px;
}

/* ================= BUTTONS ================= */
.btn-primary, .btn-secondary, .btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 10px 18px;
    font-size: 0.95rem;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.22);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.25);
    transform: translateY(-1px);
}

.btn-primary.inverted {
    background-color: var(--bg-white);
    color: var(--primary);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 10px 18px;
}

.btn-secondary:hover {
    background-color: var(--bg-gray);
}

.large {
    padding: 14px 24px;
    font-size: 1.05rem;
}

.full-width {
    width: 100%;
}

/* ================= 1. NAVBAR ================= */
.navbar {
    border-bottom: 1px solid var(--border);
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

/* ================= 2. HERO ================= */
.hero {
    padding: 100px 0;
}

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

.hero-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.hero-text h1 {
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-text {
    max-width: 620px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin-top: 22px;
    margin-bottom: 28px;
}

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

.hero-trust {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    margin-top: 18px;
}

.hero-trust span {
    font-size: 14px;
    color: #667085;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-product {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-top: -32px;
}

.hero-product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.25);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.18), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-product-frame {
    position: relative;
    z-index: 1;
    background: var(--bg-white);
    border: 1px solid #dfe3e8;
    border-radius: 16px;
    box-shadow: 0 55px 130px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    max-width: 560px;
    width: 100%;
    transform: scale(1.25);
    transform-origin: center top;
    cursor: pointer;
    transition: box-shadow 0.35s ease;
}

.hero-product-frame:hover {
    box-shadow: 0 55px 130px rgba(0, 0, 0, 0.18), 0 0 0 2px rgba(22, 163, 74, 0.25);
}

.hero-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.12);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
    pointer-events: none;
}

.hero-product-frame:hover .hero-product-overlay {
    opacity: 1;
}

.hero-product-magnifier {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-product-magnifier svg {
    width: 16px;
    height: 16px;
    color: #1f2937;
}

.hero-product-frame:hover .hero-product-magnifier {
    opacity: 1;
    transform: scale(1);
}

.hero-product-frame-header {
    height: 36px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.hero-product-frame-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.frame-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.frame-dot-red {
    background: #ef4444;
}

.frame-dot-yellow {
    background: #f59e0b;
}

.frame-dot-green {
    background: #10b981;
}

.hero-product-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: var(--bg-white);
    filter: contrast(1.04) saturate(1.03);
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease;
    transform-origin: center center;
}

.hero-product-frame:hover img {
    transform: scale(1.06);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    min-width: 120px;
}

.hero-stat strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    color: #064e3b;
    margin-bottom: 8px;
}

.hero-stat span {
    font-size: 14px;
    color: #6b7280;
}

.preview {
    padding: 100px 0;
}

.preview-description {
    max-width: 700px;
    margin: 0 auto 48px auto;
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
}

.preview-screenshot-container {
    display: flex;
    justify-content: center;
    margin: 40px auto 56px auto;
}

.preview-product-frame {
    position: relative;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-product-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.preview-product-frame-header {
    height: 36px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.preview-product-frame-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.preview-product-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: var(--bg-white);
}

.preview-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.preview-highlight {
    padding: 24px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.preview-highlight h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.preview-highlight p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.preview-secondary-grid {
    margin-bottom: 64px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.preview-secondary-card {
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    background: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    min-height: 180px;
    max-width: 260px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-secondary-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.preview-secondary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

/* ================= GRIDS & CARDS ================= */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }

.card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.module-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.module-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e6f4ea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--primary);
}

.module-card-icon svg {
    width: 20px;
    height: 20px;
}

.problem-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.problem-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #dc2626;
    background: #fee2e2;
    border-radius: 10px;
}

.problem-card:nth-child(2) .problem-card-icon {
    color: #4f46e5;
    background: #e0e7ff;
}

.problem-card:nth-child(3) .problem-card-icon {
    color: #d97706;
    background: #fef3c7;
}

.problem-card:nth-child(4) .problem-card-icon {
    color: #7c3aed;
    background: #ede9fe;
}

.problem-card-icon svg {
    width: 20px;
    height: 20px;
}

.card h3, .card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.module-card h4 {
    font-size: 18px;
    font-weight: 600;
}

.problem-card h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================= 5. AUTHORITY SECTION ================= */
.authority {
    padding: 96px 0;
    background: var(--bg-white);
}

.authority-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.authority-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.authority-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.authority-indicator {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    background: white;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.authority-indicator-main {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
    line-height: 1.2;
}

.authority-indicator-support {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}


/* ================= 6. FOR WHO SECTION ================= */
.for-who {
    padding: 80px 0;
    background: var(--bg-gray);
}

.for-who .section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.for-who-description {
    max-width: 760px;
    margin: 0 auto 36px auto;
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.for-who-list {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
}

.for-who-list li {
    padding: 18px 0;
    padding-left: 34px;
    position: relative;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border);
}

.for-who-list li:last-child {
    border-bottom: none;
}

.for-who-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 600;
    font-size: 1.2rem;
}

/* ================= 6.5. PRODUCT FLOW SECTION ================= */
.product-flow {
    padding: 96px 0;
    background: var(--bg-white);
}

.product-flow-subtitle {
    max-width: 700px;
    margin: 0 auto 48px auto;
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.product-step {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.product-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-step-icon svg {
    width: 20px;
    height: 20px;
}

.product-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.product-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================= 7. FAQ SECTION ================= */
.faq {
    padding: 96px 0;
    background: var(--bg-gray);
}

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

.faq-item {
    background: var(--bg-white);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 30px 32px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: #d1d5db;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.38;
    letter-spacing: -0.012em;
}

.faq-answer {
    font-size: 0.96875rem;
    color: #374151;
    line-height: 1.78;
    font-weight: 400;
    letter-spacing: -0.002em;
}

/* ================= 7. BENEFITS ================= */
.benefit-item strong {
    display: block;
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--text-muted);
}

/* ================= 8. HOW IT WORKS ================= */
.how-it-works .container {
    max-width: 900px;
}

.steps-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
}

.step {
    text-align: center;
    flex: 0 0 auto;
    min-width: 160px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(6, 78, 59, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0;
}

.step:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(6, 78, 59, 0.25);
}

.step h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.48;
    margin: 0;
    letter-spacing: -0.008em;
}

.step-line {
    height: 2.5px;
    background: linear-gradient(to right, #cbd5e1 0%, #e2e8f0 50%, #cbd5e1 100%);
    flex: 1;
    min-width: 60px;
    max-width: 120px;
    margin: 0 14px;
    position: relative;
    top: -26.25px;
    border-radius: 1.5px;
    opacity: 0.82;
}

/* ================= 9. PRICING ================= */
.pricing {
    padding: 96px 0;
    background: var(--bg-white);
}

.pricing-intro {
    max-width: 680px;
    margin: 0 auto 52px auto;
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.72;
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1260px;
    margin: 0 auto;
}

.pricing-grid.is-hidden {
    display: none;
}

.pricing-waitlist {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-waitlist-card {
    padding: 40px 38px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    background: var(--bg-white);
    text-align: center;
}

.pricing-waitlist-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1e7031;
    background: rgba(30, 112, 49, 0.1);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.pricing-waitlist-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.pricing-waitlist-lead {
    font-size: 1.02rem;
    color: #4b5563;
    line-height: 1.68;
    margin: 0 auto 24px;
    max-width: 600px;
}

.pricing-waitlist-form {
    margin: 0;
}

.pricing-waitlist-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
    text-align: left;
}

.pricing-waitlist-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

.pricing-waitlist-field input {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 0 14px;
    font-size: 0.95rem;
    color: #111827;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-waitlist-field input::placeholder {
    color: #9aa3af;
}

.pricing-waitlist-field input:focus-visible {
    outline: none;
    border-color: #1e7031;
    box-shadow: 0 0 0 4px rgba(30, 112, 49, 0.12);
}

.pricing-waitlist-cta {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 12px;
    font-weight: 600;
}

.pricing-waitlist-note {
    display: block;
    margin-top: 10px;
    font-size: 0.82rem;
    color: #6b7280;
}

.pricing-card {
    padding: 42px 36px 38px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    background: var(--bg-white);
    text-align: center;
    position: relative;
}

.pricing-card-free {
    border-color: #e5e7eb;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    padding: 42px 36px 40px;
}

.pricing-card-essential {
    border-color: #dfe5e2;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
    padding: 42px 36px 40px;
    transform: translateY(-4px);
}

.pricing-card-paid {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.12);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-white);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 12px rgba(6, 78, 59, 0.25);
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.pricing-price {
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.pricing-features {
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 11px 0;
    color: #374151;
    font-size: 0.9375rem;
    line-height: 1.65;
    position: relative;
    padding-left: 24px;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.pricing-cta {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 10px;
    transition: all 0.2s ease;
    min-height: 56px;
    line-height: 1.2;
}

.pricing-cta-free {
    background-color: var(--bg-white);
    color: var(--text-main);
    border: 1.5px solid var(--border);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.pricing-cta-free:hover {
    background-color: var(--bg-gray);
    border-color: #9ca3af;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.pricing-card-paid .pricing-cta {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.22);
}

.pricing-card-paid .pricing-cta:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.25);
    transform: translateY(-1px);
}

.pricing-card-essential .pricing-cta {
    font-size: 1rem;
    padding: 16px 22px;
}

.pricing-note {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.7;
    margin-top: 2px;
    font-weight: 400;
    letter-spacing: -0.003em;
    min-height: 2.9em;
}

@media (max-width: 768px) {
    .pricing-card-essential {
        transform: none;
    }
}

/* ================= 10. FINAL CTA ================= */
.cta-final {
    padding: 100px 0 88px;
}

.cta-final h2 {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 1.1875rem;
    opacity: 0.95;
    margin-top: 0;
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
}

.cta-final .btn-primary.inverted {
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.cta-final .btn-primary.inverted:hover {
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* ================= 11. FOOTER ================= */
.footer {
    padding: 52px 0 48px;
    border-top: 1px solid #e5e7eb;
    background: var(--bg-white);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    max-width: 300px;
    padding-right: 24px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    color: #6b7280;
    font-size: 0.9375rem;
    margin-top: 0;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: -0.003em;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    color: #6b7280;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: color 0.2s ease;
    text-decoration: none;
    letter-spacing: -0.002em;
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--text-main);
}

/* ================= SCREENSHOT MODAL ================= */
.screenshot-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.screenshot-modal.active {
    opacity: 1;
    visibility: visible;
}

.screenshot-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.screenshot-modal-content {
    position: relative;
    z-index: 1;
    width: 96vw;
    max-width: 1400px;
    max-height: 94vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.screenshot-modal.active .screenshot-modal-content {
    transform: scale(1);
}

.screenshot-modal-content img {
    width: 100%;
    max-width: 1400px;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    object-fit: contain;
}

.screenshot-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    font-size: 28px;
    line-height: 1;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    font-weight: 300;
}

.screenshot-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-product {
        order: 2;
        margin-top: 0;
        align-items: center;
    }

    .hero-product-frame img {
        filter: none;
    }

    .hero-text {
        order: 1;
        max-width: 100%;
    }

    .hero-product-frame {
        max-width: 100%;
        transform: scale(1);
        transform-origin: center center;
    }

    .hero-product-frame:hover {
        box-shadow: 0 55px 130px rgba(0, 0, 0, 0.18);
    }

    .hero-product-frame:hover img {
        transform: scale(1);
    }

    .hero-product-magnifier {
        display: none;
    }

    .screenshot-modal-close {
        top: 16px;
        right: 16px;
        background: rgba(0, 0, 0, 0.5);
    }

    .hero-product-glow {
        transform: translate(-50%, -50%) scale(1);
        width: 95%;
        height: 95%;
    }

    .hero-stats {
        justify-content: space-between;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 72px 0;
    }

    .hero-text h1 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .preview-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-secondary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .nav-links, .nav-actions { 
        display: none; 
    }
    
    .preview-screenshot-container {
        margin-bottom: 40px;
    }
    
    .preview-product-frame {
        border-radius: 12px;
    }
    
    .preview-secondary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 48px;
    }
    
    .preview-highlights {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .preview-description {
        margin-bottom: 32px;
        font-size: 1rem;
    }
    
    .preview {
        padding: 64px 0;
    }
    
    .product-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .for-who-description,
    .product-flow-subtitle {
        font-size: 1rem;
    }
    
    .steps-flow { 
        flex-direction: column; 
        gap: 32px; 
    }
    
    .step {
        min-width: auto;
    }
    
    .step-line { 
        display: none; 
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }

    .pricing-waitlist-card {
        padding: 34px 26px;
    }

    .pricing-waitlist-fields {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .pricing-card-paid {
        transform: scale(1);
    }
    
    .cta-final {
        padding: 72px 0 64px;
    }
    
    .cta-final h2 {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 18px;
    }
    
    .cta-final p {
        font-size: 1.0625rem;
        margin-bottom: 28px;
    }
    
    .footer {
        padding: 44px 0 40px;
    }
    
    .footer-container { 
        flex-direction: column; 
        gap: 28px; 
    }
    
    .footer-brand {
        max-width: 100%;
        padding-right: 0;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .authority-content p {
        font-size: 1rem;
    }

    .authority-indicators {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }
    
    section {
        padding: 64px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }
}
