:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8456;
    --secondary: #F7931E;
    --secondary-dark: #DD8419;
    --accent: #FFC107;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;

    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --white: #FFFFFF;
    --black: #000000;

    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-danger: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF9F5 50%, #FFFBF7 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

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

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

.hero-proof {
    display: flex;
    gap: 3rem;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.proof-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.hero-visual {
    position: relative;
}

.hero-app-preview {
    position: relative;
}

.app-window {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.app-header {
    background: var(--gray-100);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.app-dots {
    display: flex;
    gap: 0.375rem;
}

.app-dots span {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--gray-300);
}

.app-dots span:nth-child(1) { background: #FF5F56; }
.app-dots span:nth-child(2) { background: #FFBD2E; }
.app-dots span:nth-child(3) { background: #27C93F; }

.app-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.app-content {
    padding: 2rem;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
}

.code-line {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.prompt {
    color: var(--primary);
    font-weight: 700;
}

.code-output {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.output-line {
    color: var(--gray-500);
}

.output-success {
    color: var(--success);
    font-weight: 600;
    margin-top: 0.5rem;
}

.revenue-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    min-width: 200px;
}

.revenue-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.revenue-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success);
    margin-bottom: 0.25rem;
}

.revenue-trend {
    font-size: 0.875rem;
    color: var(--success);
    font-weight: 600;
}

/* Stakes Section */
.stakes {
    padding: 6rem 2rem;
    background: var(--white);
}

.stakes-container {
    max-width: 1280px;
    margin: 0 auto;
}

.stakes-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.stakes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.stake-card {
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.stake-danger {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border: 2px solid #FCA5A5;
}

.stake-success {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border: 2px solid #86EFAC;
}

.stake-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stake-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.stake-list li {
    padding: 0.75rem 0;
    font-size: 1.0625rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.stake-danger .stake-list li {
    color: #991B1B;
}

.stake-success .stake-list li {
    color: #166534;
}

.urgency-banner {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.urgency-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.urgency-text {
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Value Proposition Section */
.value {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.value-container {
    max-width: 1280px;
    margin: 0 auto;
}

.value-header {
    text-align: center;
    margin-bottom: 4rem;
}

.comparison-table {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 4rem;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-header {
    background: var(--gray-100);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-header > div,
.comparison-row > div {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-feature {
    justify-content: flex-start !important;
    text-align: left !important;
}

.comparison-dreamforge {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFBF7 100%);
    color: var(--primary);
    font-weight: 700;
}

.comparison-row:last-child {
    border-bottom: none;
}

@media (max-width: 968px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-competitor {
        display: none;
    }
}

.differentiators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.diff-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.diff-icon {
    margin-bottom: 1.5rem;
}

.diff-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.diff-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Guide Section */
.guide {
    padding: 6rem 2rem;
    background: var(--white);
}

.guide-container {
    max-width: 900px;
    margin: 0 auto;
}

.guide-empathy {
    margin-bottom: 4rem;
}

.guide-text {
    font-size: 1.1875rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.guide-authority-title {
    text-align: center;
    margin-bottom: 2rem;
}

.authority-badge {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    font-weight: 700;
}

.guide-credentials {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.credential {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.credential-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.credential-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.credential-text strong {
    font-size: 1.125rem;
    color: var(--gray-900);
}

.credential-text span {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* Plan Section */
.plan {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.plan-container {
    max-width: 1280px;
    margin: 0 auto;
}

.plan-header {
    text-align: center;
    margin-bottom: 4rem;
}

.plan-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.plan-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.step-visual {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.chat-bubble {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.bubble-header {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.bubble-text {
    padding: 1.5rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.progress-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.progress-step {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    background: var(--gray-100);
    color: var(--gray-600);
    font-weight: 500;
}

.progress-step.complete {
    background: var(--success);
    color: var(--white);
}

.progress-step.active {
    background: var(--primary);
    color: var(--white);
    animation: pulse-soft 2s infinite;
}

@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.launch-card {
    text-align: center;
    padding: 2rem;
}

.launch-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.launch-url {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.launch-status {
    font-size: 1.125rem;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.launch-metrics {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.launch-metrics span {
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

@media (max-width: 968px) {
    .plan-step {
        flex-direction: column;
    }
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background: var(--white);
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.toggle-btn {
    padding: 0.75rem 2rem;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-btn.active {
    background: var(--primary);
    color: var(--white);
}

.save-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: var(--success);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--gray-800);
    color: var(--white);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-badge-popular {
    background: var(--gradient-primary);
}

.pricing-title {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-600);
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-600);
    margin-left: 0.5rem;
}

.pricing-description {
    color: var(--gray-600);
    margin-bottom: 2rem;
    min-height: 3rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-guarantee {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-text {
    text-align: left;
    max-width: 600px;
}

/* Success Section */
.success {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.success-container {
    max-width: 1280px;
    margin: 0 auto;
}

.success-header {
    text-align: center;
    margin-bottom: 4rem;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.success-story {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.story-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.story-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.story-title {
    color: var(--primary);
    font-weight: 600;
}

.story-quote {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-metrics {
    display: flex;
    justify-content: space-around;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.success-transformation {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.transformation-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.transformation-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 3rem;
}

.transformation-timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
}

.timeline-badge {
    position: absolute;
    left: -3rem;
    width: 6rem;
    padding: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.875rem;
    text-align: center;
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .transformation-timeline {
        padding-left: 0;
    }

    .transformation-timeline::before {
        display: none;
    }

    .timeline-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
}

/* Lead Gen Section */
.lead-gen {
    padding: 6rem 2rem;
    background: var(--white);
}

.lead-gen-container {
    max-width: 1280px;
    margin: 0 auto;
}

.lead-gen-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .lead-gen-content {
        grid-template-columns: 1fr;
    }
}

.ebook-mockup {
    perspective: 1000px;
}

.ebook-cover {
    background: var(--gradient-primary);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transform: rotateY(-15deg);
    color: var(--white);
    text-align: center;
}

.ebook-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ebook-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.ebook-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 0.875rem;
}

.lead-gen-description {
    font-size: 1.1875rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.lead-gen-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.lead-gen-includes li {
    padding: 0.75rem 0;
    font-size: 1.0625rem;
    color: var(--gray-700);
}

.lead-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.lead-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: var(--transition);
}

.lead-input:focus {
    outline: none;
    border-color: var(--primary);
}

.lead-privacy {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    background: var(--gray-50);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.faq-answer {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.final-cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.final-cta-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.final-cta-text {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.final-cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .final-cta-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

.cta-stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-title {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
