/* CSS Variables */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --success: #10b981;
    --background: #fafafa;
    --surface: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-hero);
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    color: white;
}

.btn-secondary {
    background: var(--surface);
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

.logo:hover {
    color: var(--text-primary);
}

/* Header logo */
.logo-icon-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo-text-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

/* Footer logo */
.logo-icon-img-footer {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text-img-footer {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    box-sizing: content-box;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border);
    }

    .hamburger {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    .logo-tagline {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-icon-img {
        height: 36px;
    }

    .logo-text-img {
        height: 28px;
    }
}

/* Section Tag */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header p {
    font-size: 1.25rem;
    margin-top: 16px;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, var(--background) 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

@media (max-width: 640px) {
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }
}

/* Waitlist Form */
.hero-cta {
    margin-bottom: 64px;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.waitlist-form input {
    flex: 1;
    padding: 16px 20px;
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color 0.2s;
}

.waitlist-form input:focus {
    border-color: var(--primary);
}

.waitlist-form input::placeholder {
    color: var(--text-muted);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 12px;
}

@media (max-width: 540px) {
    .waitlist-form {
        flex-direction: column;
    }

    .waitlist-form button {
        width: 100%;
    }
}

/* Browser Mockup */
.hero-image {
    max-width: 900px;
    margin: 0 auto;
}

.browser-mockup {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: #f1f5f9;
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}

.browser-dots span:first-child {
    background: #fca5a5;
}

.browser-dots span:nth-child(2) {
    background: #fcd34d;
}

.browser-dots span:last-child {
    background: #86efac;
}

.browser-url {
    flex: 1;
    padding: 8px 16px;
    background: white;
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

.browser-content {
    padding: 24px;
}

.email-preview {
    text-align: left;
}

.email-header-mock {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.email-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sender {
    font-weight: 600;
    color: var(--text-primary);
}

.subject {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.email-body-mock {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.email-body-mock p {
    margin-bottom: 8px;
}

.email-body-mock.user-input {
    background: #fffbeb;
    border: 1px dashed #f59e0b;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
}

.email-body-mock .user-draft {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0;
}

.email-body-mock .user-draft::before {
    content: "Your quick notes: ";
    color: var(--text-secondary);
    font-style: normal;
    font-weight: 500;
}

.ai-button-demo {
    margin-bottom: 20px;
}

.ai-generate-btn {
    padding: 10px 20px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.response-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.response-card {
    padding: 16px;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transition: all 0.2s;
}

.response-card.active {
    opacity: 1;
    border-color: var(--primary);
    background: white;
}

.tone-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 8px;
}

.response-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--secondary);
    color: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 900px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.problem-content h2 {
    color: white;
    margin-bottom: 24px;
}

.problem-stat {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.problem-stat strong {
    color: var(--accent);
}

.problem-list {
    list-style: none;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.problem-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.problem-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.time-waste-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.time-waste-card.highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

.time-icon {
    font-size: 2rem;
}

.time-content {
    display: flex;
    flex-direction: column;
}

.time-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.time-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Solution / Features Section */
.solution-section {
    padding: 100px 0;
}

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

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

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: #f8fafc;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

@media (max-width: 900px) {
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 220px;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-hero);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-content h3 {
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin-top: 28px;
}

@media (max-width: 900px) {
    .step-connector {
        width: 2px;
        height: 40px;
        margin-top: 0;
    }
}

/* Social Proof */
.social-proof {
    padding: 100px 0;
}

.proof-header {
    text-align: center;
    margin-bottom: 64px;
}

.proof-header p {
    font-size: 1.25rem;
    margin-top: 12px;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .use-cases {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .use-cases {
        grid-template-columns: 1fr;
    }
}

.use-case {
    text-align: center;
    padding: 32px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.use-case h3 {
    margin-bottom: 8px;
}

.use-case p {
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f8fafc;
}

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

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.pricing-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.2);
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-hero);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.check {
    color: var(--success);
    font-weight: 700;
}

.x {
    color: var(--text-muted);
}

.pricing-note {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: var(--radius-lg);
}

.pricing-note p {
    color: var(--text-primary);
}

/* Privacy Section */
.privacy-section {
    padding: 100px 0;
}

.privacy-header {
    text-align: center;
    margin-bottom: 64px;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

@media (max-width: 768px) {
    .privacy-grid {
        grid-template-columns: 1fr;
    }
}

.privacy-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.privacy-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.privacy-card h3 {
    margin-bottom: 12px;
}

.privacy-summary {
    background: #f8fafc;
    border-radius: var(--radius-lg);
    padding: 40px;
}

.privacy-summary h3 {
    margin-bottom: 24px;
    text-align: center;
}

.data-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.data-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .data-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.data-type {
    font-weight: 600;
    color: var(--text-primary);
}

.data-purpose {
    color: var(--text-secondary);
}

.data-stored {
    color: var(--success);
    font-weight: 500;
}

.privacy-link {
    display: block;
    text-align: center;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.faq-item h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-item p {
    font-size: 0.95rem;
}

/* ROI Calculator Section */
.roi-calculator {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.calculator-inputs {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    height: fit-content;
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    font-size: 1.25rem;
    font-weight: 600;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color 0.2s;
    text-align: center;
}

.input-group input:focus {
    border-color: var(--primary);
}

.input-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.calculator-results {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.results-header {
    text-align: center;
    margin-bottom: 24px;
}

.results-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

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

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

.result-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.result-card.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid var(--primary);
}

.result-card.money {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%);
}

.result-icon {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.result-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.result-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
}

.result-card.highlight .result-value {
    color: var(--primary);
}

.result-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.roi-breakdown {
    background: #f8fafc;
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.roi-breakdown h4 {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item.highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%);
    padding: 12px 16px;
    margin: 8px -16px -12px;
    border-radius: var(--radius-md);
    border-bottom: none;
}

.breakdown-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.breakdown-value {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.breakdown-item.highlight .breakdown-value {
    font-weight: 700;
    color: var(--success);
}

.roi-verdict {
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 24px;
}

.roi-verdict.amazing {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(52, 211, 153, 0.15) 100%);
    border: 2px solid var(--success);
}

.roi-verdict.great {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid var(--primary);
}

.roi-verdict.good {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(251, 191, 36, 0.15) 100%);
    border: 2px solid var(--accent);
}

.roi-verdict h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.roi-verdict.amazing h3 {
    color: var(--success);
}

.roi-verdict.great h3 {
    color: var(--primary);
}

.roi-verdict.good h3 {
    color: var(--accent);
}

.roi-verdict p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.roi-verdict .btn {
    margin-top: 8px;
}

.roi-bonus {
    background: #fffbeb;
    border: 1px dashed var(--accent);
    padding: 24px;
    border-radius: var(--radius-lg);
}

.roi-bonus h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.roi-bonus ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 600px) {
    .roi-bonus ul {
        grid-template-columns: 1fr;
    }
}

.roi-bonus li {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--secondary);
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 32px;
}

.final-cta .waitlist-form input {
    background: white;
}

.final-cta .form-note {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
    padding: 64px 0 32px;
    background: var(--secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

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

@media (max-width: 540px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-column h4 {
    color: white;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 24px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 400px;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.modal-content h3 {
    margin-bottom: 12px;
}

.modal-content p {
    margin-bottom: 24px;
}

/* Loading state for forms */
.waitlist-form.loading button {
    pointer-events: none;
    opacity: 0.7;
}

.waitlist-form.loading .btn-text {
    display: none;
}

.waitlist-form.loading .btn-icon::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.waitlist-form.loading .btn-icon {
    font-size: 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 16px;
}

.mb-4 {
    margin-bottom: 16px;
}
