/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --primary-glow: rgba(59, 130, 246, 0.25);
    --accent: #8b5cf6;
    --accent-glow: rgba(139, 92, 246, 0.25);
    --success: #10b981;
    --warning: #f59e0b;
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --gradient-start: #3b82f6;
    --gradient-end: #8b5cf6;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
}

/* Offset anchor scrolls for fixed header */
section[id] {
    scroll-margin-top: 90px;
}

#buy {
    scroll-margin-top: 20px;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.fade-in-up {
    transform: translateY(40px);
}

.animate-on-scroll.fade-in-left {
    transform: translateX(-40px);
}

.animate-on-scroll.fade-in-right {
    transform: translateX(40px);
}

.animate-on-scroll.fade-in {
    transform: translateY(20px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Staggered animation delays for grid items */
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-dark);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--text);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.25rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.btn-nav {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #ffffff !important;
    padding: 10px 20px;
    font-size: 0.875rem;
    box-shadow: 0 2px 10px var(--primary-glow);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.5rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--text);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    object-fit: cover;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 1rem;
}

.hero h1 {
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-note span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Problem Section */
.problem {
    padding: 80px 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-item {
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.problem-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.problem-item h3 {
    margin-bottom: 12px;
    color: var(--text);
}

.problem-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Differentiation Section */
.differentiation {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-subtle) 100%);
}

.diff-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.diff-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.diff-header h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.diff-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.diff-card {
    padding: 40px;
    border-radius: var(--radius-xl);
}

.diff-card h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.diff-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diff-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.diff-icon {
    font-weight: 700;
    flex-shrink: 0;
}

.diff-other {
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.diff-other h3 {
    color: var(--text-muted);
}

.diff-other .diff-icon {
    color: #ef4444;
}

.diff-us {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 2px solid var(--primary);
    position: relative;
}

.diff-us::before {
    content: "You Get";
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.diff-us h3 {
    color: var(--primary);
}

.diff-us .diff-icon {
    color: var(--success);
}

.diff-bottom-note {
    text-align: center;
    margin-top: 48px;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.diff-bottom-note em {
    color: var(--text);
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 768px) {
    .diff-grid {
        grid-template-columns: 1fr;
    }

    .diff-header h2 {
        font-size: 1.75rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Features Section */
.features {
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Industries Section */
.industries {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(241, 245, 249, 0.8) 50%, var(--bg-dark) 100%);
}

.industries-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 36px;
}

.industries-text h2 {
    margin-bottom: 16px;
}

.industries-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

.industries-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.industries-image img {
    width: 100%;
    height: auto;
    display: block;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

.industry-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.industry-card h3 {
    margin-bottom: 12px;
    color: var(--text);
}

.industry-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 70px 0;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.how-it-works-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.how-it-works-content .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 300px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.step h3 {
    margin-bottom: 12px;
    color: var(--text);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--text-muted);
}

/* Example/Preview Section */
.preview {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(241, 245, 249, 0.8) 50%, var(--bg-dark) 100%);
}

.preview-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.preview-header {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 0.9375rem;
}

.preview-content {
    padding: 28px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.preview-item {
    background: var(--bg-card-hover);
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.preview-item strong {
    display: block;
    color: var(--text);
    margin-bottom: 8px;
}

.preview-item span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Testimonials Section */
/* Comparison Table: SiteSpark vs Free Tools */
.comparison-section {
    padding: 70px 0;
}

.vs-table-wrap {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 780px;
}

.vs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.vs-table th,
.vs-table td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.vs-table th:first-child,
.vs-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.vs-table thead th {
    background: var(--bg-subtle);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.vs-col-spark {
    color: var(--primary) !important;
}

.vs-yes {
    color: var(--success);
    font-weight: 700;
    font-size: 1.125rem;
}

.vs-no {
    color: var(--danger, #ef4444);
    font-weight: 500;
    font-size: 1.125rem;
}

.vs-maybe {
    color: var(--text-muted);
    font-weight: 500;
}

.vs-table tbody tr:hover {
    background: var(--bg-subtle);
}

.vs-footnote {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-top: 24px;
    font-style: italic;
}

@media (max-width: 640px) {
    .vs-table th,
    .vs-table td {
        padding: 10px 12px;
        font-size: 0.8125rem;
    }
    .vs-table th:first-child,
    .vs-table td:first-child {
        min-width: 160px;
    }
}

/* Pricing Section */
.pricing {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(241, 245, 249, 0.8) 50%, var(--bg-dark) 100%);
}

.sale-banner {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(16, 185, 129, 0.5); }
}

.sale-icon {
    font-size: 1.5rem;
}

.countdown {
    background: rgba(0,0,0,0.2);
    padding: 4px 12px;
    border-radius: 6px;
    font-variant-numeric: tabular-nums;
    font-size: 0.9375rem;
    letter-spacing: 0.5px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-single {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.pricing-single .pricing-card {
    max-width: 480px;
    width: 100%;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .sale-banner {
        font-size: 1rem;
        padding: 14px 20px;
    }
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.pricing-featured {
    border-color: var(--primary);
    box-shadow: 0 0 50px var(--primary-glow);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-subtle);
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

.pricing-badge.pricing-badge-featured {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    border: none;
}

.pricing-header h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: var(--text-secondary);
}

.pricing-price {
    margin: 32px 0;
}

.price-original {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.price-original s {
    text-decoration: line-through;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-featured .price-amount {
    color: var(--primary);
}

.price-discount {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.price-period {
    display: block;
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
    min-height: 280px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: '\2713';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Included Section */
.included {
    padding: 70px 0;
}

.comparison-table {
    max-width: 700px;
    margin: 0 auto 40px;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--bg-subtle);
    font-weight: 600;
    color: var(--text);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table th small {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-top: 4px;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--bg-subtle);
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
    color: var(--success);
    font-weight: 600;
    font-size: 1.125rem;
}

.included-callout {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.included-callout strong {
    display: block;
    margin-bottom: 12px;
    color: var(--text);
}

.included-callout p {
    color: var(--text-secondary);
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 70px 0;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--text-muted);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    font-family: inherit;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Blog Preview */
.blog-preview {
    padding: 80px 0;
    background: var(--bg-subtle);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.blog-preview-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.blog-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.blog-preview-card h3 {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-preview-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    flex: 1;
}

.blog-preview-link {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9375rem;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    margin-bottom: 16px;
}

.final-cta p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.25rem;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-buttons s {
    opacity: 0.6;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

/* Proof Statement */
.proof-statement {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 24px;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.proof-stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.proof-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.proof-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Sample Report CTA */
.sample-report-cta {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-top: 20px;
}

/* Browser Mockup */
.report-preview-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.browser-mockup {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
}

.browser-header {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    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;
    background: var(--bg-card);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
    font-family: 'SF Mono', Monaco, monospace;
}

.report-iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.iframe-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(transparent 10%, rgba(255,255,255,0.9) 35%, white 55%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px 24px 40px;
    text-align: center;
}

.sample-email-gate {
    max-width: 420px;
    width: 100%;
}

.sample-email-gate h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.sample-email-gate > p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.sample-email-form {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.sample-email-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.sample-email-form input[type="email"]:focus {
    border-color: var(--primary);
}

.sample-email-form button {
    white-space: nowrap;
    padding: 12px 20px;
    font-size: 0.95rem;
}

.sample-email-note {
    font-size: 0.8rem;
    color: var(--text-lighter);
    margin: 0;
}

@media (max-width: 768px) {
    .report-iframe {
        height: 350px;
    }

    .browser-url {
        display: none;
    }
}

.report-contents {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.report-contents li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.report-contents li::before {
    content: "\2713";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .industries-intro {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .industries-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .industries-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar {
        gap: 32px;
    }

    .comparison-table {
        margin: 0 auto 30px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }

    .nav a:last-child {
        border-bottom: none;
        margin-top: 16px;
    }

    .nav .btn-nav {
        text-align: center;
        padding: 14px 20px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 120px 0 80px;
    }

    .problem-grid,
    .features-grid,
    .industries-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .how-it-works-image {
        order: 2;
    }

    .how-it-works-content {
        order: 1;
    }

    .how-it-works-content .section-header {
        text-align: center;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .stats-bar {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-item {
        flex: 1;
        min-width: 100px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 32px 24px;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .pricing-features {
        min-height: auto;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-note {
        flex-direction: column;
        gap: 8px;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Exit-intent popup */
#exitPopup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

#exitPopup.active {
    display: flex;
}

.exit-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.exit-popup-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: popup-in 0.3s ease-out;
}

@keyframes popup-in {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
    padding: 4px 8px;
}

.exit-popup-close:hover {
    color: var(--text);
}

.exit-popup-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.exit-popup-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.exit-popup-note {
    font-size: 0.875rem;
    color: var(--text-muted) !important;
    margin-top: 12px;
    margin-bottom: 0 !important;
}

/* ── Free Score Tool ── */
.free-score-section {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f0f7ff 0%, #f8f9fa 100%);
}

.free-score-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.free-score-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.free-score-subtitle {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.free-score-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.free-score-input-row {
    display: flex;
    gap: 8px;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
}

.free-score-input-row input {
    flex: 1;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
}

.free-score-input-row input:focus {
    border-color: var(--primary);
}

.free-score-input-row button {
    white-space: nowrap;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.free-score-input-row .btn-spinner {
    display: inline-flex;
    align-items: center;
}

.free-score-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Loading */
.free-score-loading {
    padding: 32px 0;
}

.loading-progress {
    max-width: 400px;
    margin: 0 auto;
}

.loading-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.loading-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--primary);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.loading-status {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Error */
.free-score-error {
    padding: 24px;
    background: #fef2f2;
    border-radius: 8px;
    margin-top: 16px;
}

.free-score-error p {
    color: #dc2626;
    margin-bottom: 12px;
}

/* Results */
.free-score-results {
    text-align: left;
    margin-top: 24px;
}

.score-result-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.score-circle-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.score-ring {
    width: 100%;
    height: 100%;
}

.score-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number span:first-child {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}

.score-max {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.score-meta h3 {
    margin: 0 0 4px;
    font-size: 1.25rem;
}

.score-meta p {
    margin: 2px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tier-good { color: #16a34a; }
.tier-warning { color: #d97706; }
.tier-poor { color: #dc2626; }

/* Issues */
.score-issues {
    margin-bottom: 16px;
}

.score-issues h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.issue-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    border-left: 3px solid #ef4444;
}

.issue-icon {
    color: #ef4444;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.issue-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.issue-content strong {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.issue-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.no-issues {
    padding: 16px;
    background: #f0fdf4;
    border-radius: 8px;
    color: #16a34a;
    text-align: center;
}

/* Locked/blurred section */
.score-locked {
    position: relative;
    margin-top: 8px;
}

.locked-overlay {
    position: relative;
}

.issue-blurred {
    filter: blur(4px);
    user-select: none;
    pointer-events: none;
    opacity: 0.6;
    border-left-color: #d1d5db;
}

.locked-cta {
    text-align: center;
    padding: 28px 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.95) 20%, #fff 100%);
    margin-top: -40px;
    position: relative;
    z-index: 2;
    border-radius: 0 0 12px 12px;
}

.locked-cta p:first-child {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.locked-cta p:nth-child(2) {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 600px) {
    .free-score-box h2 {
        font-size: 1.4rem;
    }

    .free-score-input-row {
        flex-direction: column;
    }

    .free-score-input-row button {
        justify-content: center;
    }

    .score-result-header {
        flex-direction: column;
        text-align: center;
    }

    .score-circle-wrap {
        margin: 0 auto;
    }
}
