/*
Theme Name: Build A Local
Theme URI: https://buildalocal.com
Author: SitePlot Media
Author URI: https://siteplotmedia.com
Description: Marketing theme for Build A Local - Local Newsletter Platform
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: build-a-local
*/

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --accent: #10b981;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #be185d 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

ul, ol {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 900px;
}

.container-wide {
    max-width: 1400px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(30, 64, 175, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(30, 64, 175, 0.5);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
    box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.4);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    color: var(--dark);
}

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

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

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--primary-dark);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

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

/* ===== HEADER ===== */
.site-header {
    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(--gray-200);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.site-logo img {
    height: 45px;
    width: auto;
}

.site-logo .logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a {
    padding: 0.5rem 1rem;
    color: var(--gray-600);
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: var(--gray-100);
}

.nav-cta .btn {
    padding: 0.75rem 1.5rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    text-align: center;
    color: var(--white);
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Floating Elements */
.hero-floats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-float {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.hero-float:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-float:nth-child(2) { top: 60%; left: 5%; animation-delay: -5s; }
.hero-float:nth-child(3) { top: 30%; right: 10%; animation-delay: -10s; }
.hero-float:nth-child(4) { top: 70%; right: 15%; animation-delay: -15s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.5);
    animation: pulse 2s infinite;
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
    margin-left: 4px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(30, 64, 175, 0); }
    100% { box-shadow: 0 0 0 0 rgba(30, 64, 175, 0); }
}

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

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

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

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 6rem 0;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

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

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2rem;
}

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

.pricing-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
}

.pricing-card.featured .pricing-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

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

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--gray-500);
}

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

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

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9375rem;
    color: var(--gray-700);
}

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

.pricing-features .check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    margin-top: 2px;
}

.pricing-card .btn {
    width: 100%;
}

/* ===== SHOWCASE SECTION ===== */
.showcase-section {
    padding: 6rem 0;
}

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

.showcase-image {
    position: relative;
}

.showcase-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.showcase-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.showcase-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--success);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.showcase-text h2 {
    margin-bottom: 1.5rem;
}

.showcase-text p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.showcase-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.showcase-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 6rem 0;
    background: var(--dark);
    color: var(--white);
}

.how-it-works .section-header h2 {
    color: var(--white);
}

.how-it-works .section-header p {
    color: var(--gray-400);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.step-card {
    background: var(--dark-light);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    font-size: 2rem;
}

.step-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

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

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

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.testimonial-info strong {
    display: block;
    color: var(--dark);
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 6rem 0;
}

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

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 4rem 0 2rem;
}

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

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

.footer-brand .site-logo {
    margin-bottom: 1rem;
}

.footer-brand .site-logo span {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--dark-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--gray-400);
}

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

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 8rem 0 4rem;
    background: var(--gradient-primary);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CONTENT PAGES ===== */
.page-content {
    padding: 4rem 0;
}

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

.prose h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.prose h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.prose p {
    margin-bottom: 1.25rem;
}

.prose ul, .prose ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.prose ul {
    list-style: disc;
}

.prose ol {
    list-style: decimal;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose a {
    text-decoration: underline;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p, .contact-item a {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.map-container {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 250px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ===== AFFILIATES PAGE ===== */
.affiliate-hero {
    background: var(--gradient-hero);
    padding: 8rem 0 4rem;
    text-align: center;
}

.affiliate-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.affiliate-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.affiliate-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.affiliate-stat {
    text-align: center;
    color: var(--white);
}

.affiliate-stat-value {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

.affiliate-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.affiliate-benefits {
    padding: 5rem 0;
}

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

.benefit-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.affiliate-cta {
    padding: 4rem 0;
    background: var(--gray-50);
    text-align: center;
}

.affiliate-form {
    max-width: 500px;
    margin: 2rem auto 0;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ===== SUPPORT PAGE ===== */
.support-hero {
    background: var(--gradient-primary);
    padding: 8rem 0 4rem;
    text-align: center;
}

.support-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.support-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.support-options {
    padding: 5rem 0;
}

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

.support-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.support-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.support-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.support-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.ticket-form-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.ticket-form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

/* ===== BLOG PAGE ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    height: 200px;
    background: var(--gray-100);
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.blog-card h3 a {
    color: var(--dark);
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.blog-card .read-more {
    font-weight: 600;
    color: var(--primary);
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.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-0 { margin-top: 0; }
.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; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.py-6 { padding-top: 4rem; padding-bottom: 4rem; }

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .showcase-content {
        gap: 3rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-2xl);
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-cta {
        width: 100%;
        margin-top: 1rem;
    }
    
    .nav-cta .btn {
        width: 100%;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .mobile-overlay.active {
        display: block;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
    }
    
    .showcase-badge {
        position: static;
        margin-top: 1rem;
        display: inline-flex;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .affiliate-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .feature-card,
    .testimonial-card,
    .benefit-card {
        padding: 1.5rem;
    }
}

/* ===== DOCUMENTATION PAGE STYLES ===== */

/* Docs Hero */
.docs-hero {
    background: var(--gradient-hero);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.docs-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.docs-hero .hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Docs Layout */
.docs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 400px);
}

@media (max-width: 1024px) {
    .docs-layout {
        grid-template-columns: 1fr;
    }
}

/* Docs Sidebar */
.docs-sidebar {
    background: var(--gray-50);
    border-right: 1px solid var(--gray-200);
    padding: 2rem 1.5rem;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

@media (max-width: 1024px) {
    .docs-sidebar {
        display: none;
    }
}

.docs-nav-section {
    margin-bottom: 2rem;
}

.docs-nav-section h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.docs-nav-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-nav-section li {
    margin-bottom: 0.25rem;
}

.docs-nav-section a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.docs-nav-section a:hover {
    background: var(--gray-200);
    color: var(--primary);
}

.docs-nav-section a.active {
    background: var(--primary);
    color: white;
}

/* Docs Content */
.docs-content {
    padding: 3rem 2rem;
    max-width: 900px;
}

@media (max-width: 768px) {
    .docs-content {
        padding: 2rem 1rem;
    }
}

.docs-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gray-200);
}

.docs-section:last-child {
    border-bottom: none;
}

.docs-section h2 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.docs-section h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.docs-section h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.docs-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.docs-section ul,
.docs-section ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.docs-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.requirement-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.requirement-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.requirement-card h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.requirement-card ul {
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
}

.requirement-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Docs Steps */
.docs-steps {
    margin: 2rem 0;
}

.docs-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed var(--gray-200);
}

.docs-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.step-content ol,
.step-content ul {
    margin-bottom: 1rem;
}

/* Code Block */
.code-block {
    background: var(--gray-800);
    color: #e2e8f0;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
    overflow-x: auto;
    margin: 1rem 0;
}

.code-block code {
    background: none;
    padding: 0;
    color: inherit;
}

code {
    background: var(--gray-100);
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.875em;
    color: var(--primary-dark);
}

/* Docs Callout */
.docs-callout {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

.docs-callout h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.docs-callout p:last-child {
    margin-bottom: 0;
}

.docs-callout ul {
    margin-bottom: 0;
}

.docs-callout-info {
    background: #dbeafe;
    border-left: 4px solid var(--primary);
}

.docs-callout-warning {
    background: #fef3c7;
    border-left: 4px solid var(--warning);
}

.docs-callout-tip {
    background: #d1fae5;
    border-left: 4px solid var(--success);
}

/* Docs Table */
.docs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

.docs-table th,
.docs-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid var(--gray-200);
}

.docs-table th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--dark);
}

.docs-table tr:nth-child(even) {
    background: var(--gray-50);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-item {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--radius);
}

.feature-item h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-item p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Provider Grid */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.provider-card {
    background: white;
    border: 1px solid var(--gray-200);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    position: relative;
}

.provider-card.recommended {
    border-color: var(--primary);
    border-width: 2px;
}

.recommended-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.provider-card h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.provider-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.provider-price {
    font-weight: 600;
    color: var(--primary);
}

/* Example Box */
.example-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.example-box h5 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--gray-500);
    font-size: 0.875rem;
    text-transform: uppercase;
}

/* Ad Example */
.ad-example {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 1.5rem 0;
}

.ad-example-image {
    background: var(--gray-100);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-example-image .image-placeholder {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.ad-example-content {
    padding: 1.5rem;
}

.ad-example-headline {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.ad-example-text {
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.ad-example-cta {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0;
}

/* Pricing Example */
.pricing-example {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1rem 0;
}

.pricing-example h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary);
}

.pricing-example ul {
    margin-bottom: 0;
}

/* FAQ List */
.faq-list {
    margin: 2rem 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

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

/* Troubleshoot Item */
.troubleshoot-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.troubleshoot-item h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--error);
}

/* Support Options */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.support-option {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.support-option h4 {
    margin-top: 0;
}

.support-option p:last-child {
    margin-bottom: 0;
}

/* Image Placeholder */
.docs-image {
    margin: 1.5rem 0;
}

.image-placeholder {
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Mobile Docs Navigation */
@media (max-width: 1024px) {
    .docs-content {
        max-width: 100%;
    }
    
    .docs-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .requirements-grid,
    .provider-grid,
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .docs-table {
        display: block;
        overflow-x: auto;
    }
}

/* ===== SALES FUNNEL PAGES ===== */

/* Sales Page Hero */
.sales-hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.sales-hero .container {
    max-width: 1000px;
}

.sales-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.sales-hero h1 {
    color: var(--white);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sales-hero h1 .highlight {
    background: linear-gradient(180deg, transparent 50%, rgba(245,158,11,0.4) 50%);
    padding: 0 8px;
}

.sales-subheadline {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 30px;
}

.sales-hero-cta {
    margin-top: 30px;
}

.sales-hero-cta .btn {
    font-size: 1.125rem;
    padding: 16px 40px;
}

.sales-hero-note {
    display: block;
    margin-top: 15px;
    font-size: 0.875rem;
    opacity: 0.8;
}

.sales-hero-image {
    margin-top: 50px;
}

.sales-hero-image img {
    max-width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

/* Sales Sections */
.sales-page {
    overflow-x: hidden;
}

.sales-section {
    padding: 80px 0;
    overflow-x: hidden;
}

.sales-section:nth-child(even) {
    background: var(--gray-50);
}

.sales-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.benefit-card p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* Features Box */
.features-box {
    background: #f0fdf4;
    border: 2px solid var(--success);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.features-box h3 {
    font-size: 1.5rem;
    color: #166534;
    margin-bottom: 25px;
    text-align: center;
}

.features-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list .check {
    color: var(--success);
    font-weight: bold;
    font-size: 1.125rem;
}

/* Math Box */
.math-box {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 30px 0;
}

.math-box h4 {
    margin-top: 0;
    margin-bottom: 15px;
}

.math-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.math-box li {
    padding: 8px 0;
}

.math-total {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid var(--gray-300);
}

.math-total span {
    color: var(--success);
    font-size: 1.5rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--gray-700);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Sales CTA Box */
.sales-cta {
    background: var(--gradient-primary) !important;
    padding: 80px 0;
}

.cta-box {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-2xl);
}

.cta-box h2 {
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.cta-price {
    margin: 25px 0;
}

.price-original {
    font-size: 1.5rem;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-right: 10px;
}

.price-current {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
}

.cta-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 25px;
}

.cta-button {
    margin: 25px 0 15px;
}

.cta-button .btn {
    font-size: 1.25rem;
    padding: 18px 50px;
}

.cta-instant {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.cta-setup-note {
    color: var(--warning);
    font-size: 0.875rem;
    margin-top: 10px;
}

/* Guarantee Box */
.guarantee-box {
    background: #fffbeb;
    border: 2px solid var(--warning);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.guarantee-box h3 {
    color: #92400e;
    margin-bottom: 15px;
}

.guarantee-box p {
    color: var(--gray-700);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 25px 20px;
}

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

.faq-item h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    margin-top: 0;
    color: var(--dark);
}

.faq-item p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
    padding-left: 0;
}

/* Final CTA */
.sales-cta-final {
    background: var(--dark) !important;
}

.sales-cta-final .cta-box {
    background: var(--white);
}

/* ===== OTO PAGES ===== */

.oto-page {
    background: var(--gray-50);
}

/* OTO Header */
.oto-header {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.oto2-header {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.oto-wait-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.oto-vip-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.oto-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 15px;
}

.oto-header h1 .highlight {
    background: rgba(255,255,255,0.2);
    padding: 0 10px;
    border-radius: 8px;
}

.oto-subheadline {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* OTO Delivery */
.oto-delivery {
    padding: 40px 0;
}

.delivery-box {
    background: #f0fdf4;
    border: 2px solid var(--success);
    border-radius: var(--radius-xl);
    padding: 30px;
}

.delivery-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.delivery-box h3 {
    color: #166534;
    margin-top: 0;
    margin-bottom: 20px;
}

/* OTO Sections */
.oto-section {
    padding: 50px 0;
}

.oto-section h2 {
    margin-bottom: 25px;
}

/* Problem/Solution Boxes */
.problem-box {
    background: #fef2f2;
    border-left: 4px solid var(--error);
    padding: 25px 30px;
    margin: 25px 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.problem-box ul {
    margin: 15px 0;
    padding-left: 20px;
}

.problem-box li {
    padding: 5px 0;
}

.solution-box {
    background: #f0fdf4;
    border-left: 4px solid var(--success);
    padding: 25px 30px;
    margin: 25px 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* Includes Box */
.includes-box {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 35px;
}

.vip-includes {
    border-color: #7c3aed;
}

.includes-box h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 10px;
}

.vip-includes h3 {
    color: #7c3aed;
}

.includes-subtitle {
    color: var(--gray-600);
    margin-bottom: 25px;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.includes-list .check {
    color: var(--success);
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.includes-list .star {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.includes-list div strong {
    display: block;
    color: var(--dark);
    margin-bottom: 3px;
}

.includes-list div span {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Urgency Box */
.oto-urgency {
    padding: 30px 0;
}

.urgency-box {
    background: #fef3c7;
    border: 2px solid var(--warning);
    border-radius: var(--radius-lg);
    padding: 20px 30px;
    text-align: center;
}

.urgency-box strong {
    color: #92400e;
}

.vip-urgency {
    background: #fef2f2;
    border-color: var(--error);
}

.vip-urgency strong {
    color: #991b1b;
}

/* OTO CTA Box */
.oto-cta {
    background: var(--white);
    padding: 60px 0;
}

.oto-cta-box {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: var(--white);
    border-radius: var(--radius-2xl);
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.oto1-cta {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.oto2-cta {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.oto-cta-box h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.oto-cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.oto-price {
    margin: 20px 0;
}

.oto-price .price-original {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.6);
    text-decoration: line-through;
    margin-right: 10px;
}

.oto-price .price-current {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
}

.oto-savings {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.oto-cta-button {
    margin: 25px 0 15px;
}

.oto-cta-button .btn {
    font-size: 1.125rem;
    padding: 16px 40px;
}

.btn-vip {
    background: var(--white);
    color: #7c3aed;
}

.btn-vip:hover {
    background: var(--gray-100);
    color: #6d28d9;
}

.oto-turnaround {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

.oto-no-thanks {
    margin-top: 25px;
}

.oto-no-thanks a {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
    font-size: 0.875rem;
}

.oto-no-thanks a:hover {
    color: var(--white);
}

.oto-setup-note {
    color: #fef3c7;
    font-size: 0.875rem;
    margin-top: 10px;
}

/* How It Works */
.how-it-works {
    list-style: none;
    padding: 0;
    margin: 0;
}

.how-it-works li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.how-it-works li:last-child {
    border-bottom: none;
}

.how-it-works .step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.vip-timeline .step-number {
    background: #7c3aed;
}

.how-it-works div strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
}

.how-it-works div p {
    margin: 0;
    color: var(--gray-600);
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

.comparison-col {
    padding: 30px;
    border-radius: var(--radius-xl);
}

.comparison-diy {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
}

.comparison-vip {
    background: #f0fdf4;
    border: 2px solid var(--success);
}

.comparison-col h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.comparison-diy h4 {
    color: var(--gray-600);
}

.comparison-vip h4 {
    color: #166534;
}

.comparison-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-col li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-col .x {
    color: var(--error);
    font-weight: bold;
}

.comparison-col .check {
    color: var(--success);
    font-weight: bold;
}

/* VIP Box */
.vip-box {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border: 2px solid #a855f7;
    border-radius: var(--radius-xl);
    padding: 35px;
}

.vip-box h3 {
    color: #7c3aed;
    margin-top: 0;
    margin-bottom: 20px;
}

.vip-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.vip-checklist li {
    padding: 8px 0;
    font-size: 1.125rem;
}

.vip-tagline {
    font-size: 1.25rem;
    margin-bottom: 0;
}

/* Perfect For Box */
.perfect-for-box {
    background: #eff6ff;
    border-radius: var(--radius-xl);
    padding: 30px;
}

.perfect-for-box h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 20px;
}

.perfect-for-box ul {
    margin: 0;
    padding-left: 20px;
}

.perfect-for-box li {
    padding: 8px 0;
}

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

/* ===== CONFIRMATION PAGE ===== */

.confirmation-page {
    background: var(--gray-50);
}

.confirmation-header {
    background: linear-gradient(135deg, #166534 0%, #22c55e 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.confirmation-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.confirmation-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.confirmation-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.confirmation-delivery {
    padding: 40px 0;
}

.confirmation-section {
    padding: 30px 0;
}

/* Next Steps Box */
.next-steps-box {
    background: #eff6ff;
    border-radius: var(--radius-xl);
    padding: 35px;
}

.next-steps-box h2 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 25px;
}

.next-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: steps;
}

.next-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    counter-increment: steps;
}

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

.next-steps-list li::before {
    content: counter(steps);
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.next-steps-list li strong {
    display: block;
    color: var(--dark);
    margin-bottom: 3px;
}

.next-steps-list li span {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Checklist Box */
.checklist-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 35px;
}

.checklist-box h2 {
    margin-top: 0;
    margin-bottom: 25px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.checklist .checkbox {
    font-size: 1.25rem;
    color: var(--gray-400);
}

/* Support Box */
.support-box {
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 35px;
    text-align: center;
}

.support-box h2 {
    margin-top: 0;
    margin-bottom: 10px;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 25px 0;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.support-icon {
    font-size: 1.5rem;
}

.support-item strong {
    display: block;
    margin-bottom: 3px;
}

.support-item a {
    color: var(--primary);
}

.support-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* Community Box */
.community-box {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
}

.community-box h2 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 15px;
}

.community-box p {
    opacity: 0.95;
    margin-bottom: 25px;
}

.community-box .btn {
    background: var(--white);
    color: var(--primary);
}

.community-box .btn:hover {
    background: var(--gray-100);
}

/* Welcome Box */
.welcome-box {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--gray-200);
    margin-top: 30px;
}

.welcome-box p {
    color: var(--gray-600);
    margin: 5px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sales-hero {
        padding: 50px 0;
    }
    
    .features-columns {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 35px 25px;
    }
    
    .price-current {
        font-size: 2.75rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .oto-cta-box {
        padding: 35px 25px;
    }
    
    .oto-price .price-current {
        font-size: 2.75rem;
    }
    
    .support-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .support-item {
        justify-content: center;
    }
}

/* ===== EXPANDED SALES PAGE STYLES ===== */

/* Social Proof Bar */
.social-proof-bar {
    background: var(--dark);
    padding: 15px 0;
}

.proof-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.875rem;
}

.proof-icon {
    color: var(--success);
    font-weight: bold;
}

/* Hero Stats */
.sales-hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
}

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

.hero-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

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

/* Section Badges */
.section-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

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

/* Opportunity Section */
.sales-opportunity {
    background: var(--white);
}

.opportunity-header {
    text-align: center;
    margin-bottom: 50px;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.opportunity-point {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

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

.opportunity-point h4 {
    margin: 0 0 8px;
    font-size: 1.125rem;
}

.opportunity-point p {
    margin: 0;
    color: var(--gray-600);
}

.opportunity-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-xl);
    text-align: center;
}

.stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.stat-card .stat-desc {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Showcase Section */
.sales-showcase {
    background: var(--gray-50);
}

.showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-browser {
    max-width: 900px;
    margin: 0 auto 50px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
}

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

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

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #22c55e; }

.browser-url {
    flex: 1;
    background: var(--white);
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.browser-content img {
    width: 100%;
    display: block;
}

.showcase-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 100%;
}

.showcase-feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sf-icon {
    font-size: 3rem;
    line-height: 1;
    display: block;
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
}

.showcase-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    margin-top: 0;
}

.showcase-feature p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

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

.showcase-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.showcase-note {
    display: block;
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Business In A Box */
.sales-business-box {
    background: var(--white);
}

.box-header {
    text-align: center;
    margin-bottom: 50px;
}

.business-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 30px;
    border: 2px solid var(--gray-200);
}

.pillar-featured {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: var(--primary);
    transform: scale(1.05);
}

.pillar-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.pillar-featured .pillar-header {
    border-color: var(--primary-light);
}

.pillar-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.pillar-header h3 {
    margin: 0 0 5px;
    font-size: 1.25rem;
}

.pillar-header p {
    margin: 0;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9375rem;
}

.pillar-featured .pillar-features li {
    border-color: var(--primary-light);
}

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

.pillar-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Feature Deep Dive */
.sales-features-deep {
    background: var(--gray-50);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-reverse {
    direction: rtl;
}

.feature-reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.feature-content h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.feature-content > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 25px;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fh-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.fh-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fh-item strong {
    display: block;
    margin-bottom: 3px;
}

.fh-item span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.feature-note {
    margin-top: 20px;
    padding: 15px;
    background: #fef3c7;
    border-radius: var(--radius);
    font-size: 0.9375rem;
}

.revenue-example {
    margin-top: 20px;
    padding: 15px 20px;
    background: #f0fdf4;
    border: 1px solid var(--success);
    border-radius: var(--radius);
}

.revenue-amount {
    color: var(--success);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Feature Visual Mockups */
.feature-visual {
    display: flex;
    justify-content: center;
}

.feature-mockup {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.mockup-header {
    background: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.mockup-body {
    padding: 20px;
}

.mockup-field {
    margin-bottom: 15px;
}

.mockup-field label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 5px;
}

.mockup-select,
.mockup-input {
    background: var(--gray-100);
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
}

.mockup-btn {
    background: var(--primary);
    color: var(--white);
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mockup-output {
    background: var(--gray-50);
    padding: 15px;
    border-radius: 6px;
    font-size: 0.875rem;
}

.mockup-output strong {
    display: block;
    margin-bottom: 8px;
}

.mockup-output p {
    margin: 0;
    color: var(--gray-600);
}

/* Builder Mockup */
.builder-preview {
    padding: 15px;
}

.bp-section {
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    font-size: 0.875rem;
    text-align: center;
}

.bp-header {
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
}

.bp-ad {
    background: #fef3c7;
    color: #92400e;
    border: 1px dashed #f59e0b;
    font-size: 0.75rem;
}

.bp-content {
    background: var(--gray-100);
    color: var(--gray-700);
}

.bp-footer {
    background: var(--gray-200);
    color: var(--gray-600);
    font-size: 0.75rem;
}

/* Directory Mockup */
.directory-preview {
    padding: 15px;
}

.dp-listing {
    background: var(--gray-50);
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    position: relative;
}

.dp-featured {
    background: #fffbeb;
    border: 1px solid #f59e0b;
}

.dp-badge {
    font-size: 0.625rem;
    background: #f59e0b;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    position: absolute;
    top: 8px;
    right: 8px;
}

.dp-listing strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 3px;
}

.dp-listing > span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.dp-price {
    position: absolute;
    bottom: 8px;
    right: 10px;
    color: var(--success);
    font-weight: 600;
    font-size: 0.75rem;
}

/* Curator Mockup */
.curator-preview {
    padding: 15px;
}

.cp-source {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: var(--gray-100);
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.cp-logo {
    font-size: 1.25rem;
}

.cp-article {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.cp-article:last-of-type {
    border-bottom: none;
}

.cp-article input {
    margin-top: 3px;
}

.cp-article strong {
    display: block;
    font-size: 0.8125rem;
    margin-bottom: 3px;
}

.cp-article span {
    font-size: 0.6875rem;
    color: var(--gray-400);
}

.cp-btn {
    background: var(--primary);
    color: var(--white);
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-top: 15px;
}

/* Integrations Section */
.sales-integrations {
    background: var(--gray-50);
}

.integrations-header {
    text-align: center;
    margin-bottom: 50px;
}

.integrations-header .section-badge {
    background: #7c3aed;
}

.integrations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.integration-category {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 35px;
    box-shadow: var(--shadow-md);
}

.ic-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

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

.ic-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.ic-desc {
    color: var(--gray-600);
    margin-bottom: 25px;
    font-size: 0.9375rem;
}

.integration-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.integration-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.integration-item:hover {
    background: var(--gray-100);
}

.int-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.int-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.int-logo-fallback {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.int-logo-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
}

.int-info strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.int-info span {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.integrations-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 30px;
    background: #eff6ff;
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin: 0 auto;
}

.int-note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.int-note-content {
    font-size: 0.9375rem;
}

.int-note-content strong {
    color: var(--primary);
}

/* Revenue Section */
.sales-revenue {
    background: var(--dark);
    color: var(--white);
}

.revenue-header {
    text-align: center;
    margin-bottom: 50px;
}

.revenue-header h2 {
    color: var(--white);
}

.revenue-header .section-badge {
    background: var(--secondary);
}

.revenue-header .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.revenue-streams {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.revenue-stream {
    background: var(--dark-light);
    border-radius: var(--radius-xl);
    padding: 25px;
    border: 1px solid var(--gray-700);
}

.rs-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.rs-icon {
    font-size: 1.5rem;
}

.rs-header h4 {
    color: var(--white);
    margin: 0;
    font-size: 1rem;
}

.revenue-stream > p {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.rs-example {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: var(--radius);
}

.rs-calc {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 5px;
}

.rs-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success);
}

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

.total-box {
    display: inline-block;
    background: var(--success);
    color: var(--white);
    padding: 30px 60px;
    border-radius: var(--radius-xl);
}

.total-box .total-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.total-box .total-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.total-box .total-note {
    display: block;
    font-size: 0.8125rem;
    opacity: 0.85;
    margin-top: 8px;
}

/* Scaling Section */
.sales-scaling {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.scaling-header {
    text-align: center;
    margin-bottom: 50px;
}

.scaling-header .section-badge {
    background: var(--success);
}

.scaling-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.city-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 25px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    min-width: 150px;
}

.city-card-total {
    background: var(--success);
    color: var(--white);
}

.city-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.city-card h4 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.city-card-total h4 {
    color: var(--white);
}

.city-card p {
    margin: 0 0 10px;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.city-card-total p {
    color: rgba(255,255,255,0.9);
}

.city-revenue {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success);
}

.city-card-total .city-revenue {
    color: var(--white);
    font-size: 1.5rem;
}

.scaling-arrow {
    font-size: 1.5rem;
    color: var(--success);
    font-weight: bold;
}

.scaling-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.scaling-point {
    text-align: center;
    padding: 25px;
}

.sp-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.scaling-point h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.scaling-point p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.scaling-cta {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 600px;
    margin: 0 auto;
}

.scaling-dream {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.scaling-result {
    font-size: 1.5rem;
    color: var(--success);
    margin: 0;
}

/* What's Included */
.sales-included {
    background: var(--white);
}

.included-header {
    text-align: center;
    margin-bottom: 50px;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.included-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.included-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.included-featured {
    background: #eff6ff;
    border: 2px solid var(--primary);
}

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

.ii-content h4 {
    margin: 0 0 8px;
    font-size: 1.125rem;
}

.ii-content p {
    margin: 0 0 10px;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.ii-value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--success);
}

.included-bonuses h4 {
    margin-bottom: 20px;
    color: var(--gray-500);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.included-bonuses .included-item {
    margin-bottom: 15px;
}

.included-total {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
}

.total-value,
.total-price {
    text-align: center;
}

.tv-label,
.tp-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.tv-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-400);
    text-decoration: line-through;
}

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

/* Testimonials Enhancement */
.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.tc-stars {
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.ta-info strong {
    display: block;
    margin-bottom: 3px;
}

.ta-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* FAQ Enhancement */
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Final CTA Box */
.final-cta-box {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-2xl);
}

.fcta-header {
    text-align: center;
    margin-bottom: 40px;
}

.fcta-header h2 {
    margin-bottom: 15px;
}

.fcta-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 0;
}

.fcta-offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.offer-includes h4 {
    margin: 0 0 15px;
    color: var(--gray-600);
}

.offer-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-includes li {
    padding: 8px 0;
}

.offer-price {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.op-total {
    margin-bottom: 15px;
}

.op-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 5px;
}

.op-value {
    font-size: 1.5rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.op-today {
    margin-bottom: 10px;
}

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

.op-save {
    font-size: 1rem;
    color: var(--success);
    font-weight: 600;
}

.fcta-button {
    text-align: center;
    margin-bottom: 30px;
}

.fcta-button .btn {
    font-size: 1.5rem;
    padding: 20px 60px;
}

.fcta-setup-note {
    color: var(--warning);
    font-size: 0.875rem;
    margin-top: 10px;
}

.fcta-guarantee {
    margin-bottom: 25px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: #f0fdf4;
    border: 1px solid var(--success);
    border-radius: var(--radius-lg);
}

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

.gb-text strong {
    display: block;
    color: #166534;
    margin-bottom: 3px;
}

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

.fcta-urgency {
    text-align: center;
    padding: 15px;
    background: #fef3c7;
    border-radius: var(--radius);
}

.fcta-urgency p {
    margin: 0;
    font-size: 0.9375rem;
}

/* Final Reminder */
.sales-final-reminder {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.sales-final-reminder p {
    font-size: 1.25rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sales-final-reminder .btn {
    font-size: 1.125rem;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 1024px) {
    .opportunity-grid {
        grid-template-columns: 1fr;
    }
    
    .business-pillars {
        grid-template-columns: 1fr;
    }
    
    .pillar-featured {
        transform: none;
    }
    
    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-reverse {
        direction: ltr;
    }
    
    .revenue-streams {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scaling-points {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .proof-items {
        gap: 15px;
        justify-content: flex-start;
    }
    
    .sales-hero-stats {
        gap: 20px;
    }
    
    .hero-stat .stat-number {
        font-size: 1.75rem;
    }
    
    .showcase-features {
        grid-template-columns: 1fr;
    }
    
    .revenue-streams {
        grid-template-columns: 1fr;
    }
    
    .scaling-visual {
        flex-direction: column;
    }
    
    .scaling-arrow {
        transform: rotate(90deg);
    }
    
    .scaling-points {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .fcta-offer {
        grid-template-columns: 1fr;
    }
    
    .final-cta-box {
        padding: 30px 20px;
    }
    
    .op-price {
        font-size: 3rem;
    }
    
    .included-total {
        flex-direction: column;
        gap: 30px;
    }
    
    .integrations-note {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sales-hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .proof-items {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
