/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Crown Cast Application Theme Colors - River of Life */
    --primary-color: #0ea5e9;        /* Electric Blue - app primary */
    --primary-dark: #0284c7;         /* Darker blue */
    --primary-light: #38bdf8;        /* Lighter blue */
    --secondary-color: #06b6d4;      /* Cyan - app secondary */
    --text-dark: #f1f5f9;            /* Light text for dark theme */
    --text-gray: #cbd5e1;            /* Muted text */
    --text-light: #94a3b8;           /* Very muted */
    --bg-white: #020817;             /* App background - deep space */
    --bg-gray: #0f172a;              /* App surface color */
    --bg-light: #1e293b;             /* App card color */
    --border-color: #334155;         /* App border */
    --shadow-sm: 0 1px 2px 0 rgba(14, 165, 233, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(14, 165, 233, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(14, 165, 233, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(14, 165, 233, 0.25);
    --accent-green: #10b981;         /* Success color */
    --accent-amber: #f59e0b;         /* Warning color */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid var(--primary-color);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid var(--primary-color);
}

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

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

.btn-block {
    width: 100%;
    text-align: center;
}

/* ===== Hero Section ===== */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #075985 100%);
    color: white;
    margin-top: 70px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-demo {
    position: relative;
}

.demo-screen {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.demo-header {
    background: #e5e7eb;
    padding: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.demo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #9ca3af;
}

.demo-content {
    padding: 3rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #075985 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-slide {
    text-align: center;
    color: white;
}

.demo-slide h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.demo-slide p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* ===== Features Section ===== */
.features {
    padding: 6rem 0;
    background: var(--bg-gray);
}

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

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

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

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== Benefits Section ===== */
.benefits {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

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

.benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.benefits-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-weight: 500;
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 6rem 0;
    background: var(--bg-gray);
}

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

.pricing-card {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-badge {
    background: var(--accent-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-badge {
    background: var(--primary-color);
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

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

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

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

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

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

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

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-church {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ===== Download Section ===== */
.download {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #075985 100%);
    color: white;
    position: relative;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.download-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.download .section-title,
.download .section-subtitle {
    color: white;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto;
}

.download-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 1rem;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

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

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

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

.download-size {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.download-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-info strong {
    font-size: 1.1rem;
}

.download-info ul {
    margin-top: 1rem;
    list-style-position: inside;
}

.download-info li {
    margin: 0.5rem 0;
}

/* ===== Footer ===== */
.footer {
    background: #000000;
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.social-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .hero-content,
    .benefits-content {
        grid-template-columns: 1fr;
    }

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

    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .download-options {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

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

    .benefits-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* ===== Hero Badge ===== */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== Problem/Solution Section ===== */
.problem-solution {
    padding: 5rem 0;
    background: var(--bg-white);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.problem-card,
.solution-card {
    padding: 2.5rem;
    border-radius: 1rem;
}

.problem-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.solution-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.problem-card h3,
.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.problem-card ul,
.solution-card ul {
    list-style: none;
}

.problem-card li,
.solution-card li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.6;
}

.problem-card li:last-child,
.solution-card li:last-child {
    border-bottom: none;
}

/* ===== Story Section ===== */
.story-section {
    padding: 6rem 0;
    background: var(--bg-gray);
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.story-badge,
.mission-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.story-text p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-lead {
    font-size: 1.2rem !important;
    color: var(--text-dark) !important;
    font-weight: 500;
}

.story-highlight {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(14, 165, 233, 0.05));
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 1rem 1rem 0;
    margin: 2rem 0;
}

.story-highlight p {
    margin-bottom: 0;
    color: var(--text-dark) !important;
}

.story-sidebar {
    position: sticky;
    top: 100px;
}

.story-values {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.story-values h4 {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.story-values ul {
    list-style: none;
}

.story-values li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.story-quote {
    background: var(--primary-color);
    padding: 1.5rem;
    border-radius: 1rem;
}

.story-quote p {
    color: white;
    font-style: italic;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* ===== Benefits Grid (new style) ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

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

.benefit-card .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    width: auto;
    height: auto;
    background: none;
    color: inherit;
    border-radius: 0;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== Pricing Updates ===== */
.pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}

.pricing-savings {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    color: var(--accent-green);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.pricing-comparison {
    margin-top: 4rem;
    text-align: center;
}

.pricing-comparison h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.comparison-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: center;
}

.comparison-table th {
    background: var(--bg-gray);
    color: var(--text-dark);
    font-weight: 600;
}

.comparison-table td {
    color: var(--text-gray);
    border-top: 1px solid var(--border-color);
}

.comparison-table .highlight-row td {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-color);
}

.comparison-table small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.comparison-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ===== Mission Section ===== */
.mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-white) 100%);
}

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

.mission-header {
    margin-bottom: 2rem;
}

.mission-body p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mission-lead {
    font-size: 1.3rem !important;
    color: var(--text-dark) !important;
}

.mission-highlight {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 1rem;
    margin: 2.5rem 0;
    border: 1px solid var(--border-color);
}

.mission-org h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.mission-org p {
    margin-bottom: 1rem;
}

.mission-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.mission-link:hover {
    background: var(--primary-color);
    color: white;
}

.mission-closing {
    font-weight: 500;
    color: var(--text-dark) !important;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-gray);
}

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

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* ===== Final CTA Section ===== */
.final-cta {
    padding: 5rem 0;
    background: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Download Guarantee ===== */
.download-guarantee {
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-guarantee p {
    margin: 0;
    color: white;
}

/* ===== Footer Updates ===== */
.footer-mission {
    color: var(--primary-light) !important;
    font-style: italic;
    margin-top: 1rem;
}

.footer-verse {
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* ===== Additional Responsive Updates ===== */
@media (max-width: 968px) {
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }

    .story-body {
        grid-template-columns: 1fr;
    }

    .story-sidebar {
        position: static;
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

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

    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/* ===== Hero Screenshot ===== */
.hero-screenshot {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

.screenshot-main {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

.screenshot-placeholder {
    display: none;
    min-height: 350px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-radius: 1rem;
}

.placeholder-content {
    text-align: center;
    color: var(--text-gray);
}

.placeholder-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.placeholder-content p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.placeholder-content small {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== Video Demo Section ===== */
.video-demo-section {
    padding: 6rem 0;
    background: var(--bg-gray);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

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

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light) 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder-content {
    text-align: center;
    color: var(--text-gray);
    padding: 2rem;
}

.video-play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}

.video-placeholder-content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.video-placeholder-content p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.video-placeholder-content small {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===== Screenshots Section ===== */
.screenshots-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

a.screenshot-item {
    text-decoration: none;
    color: inherit;
    display: block;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.screenshot-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.screenshot-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.02);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.screenshot-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Screenshot Placeholder (when image missing) */
.screenshot-placeholder-inline {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    color: var(--text-gray);
    text-align: center;
    padding: 2rem;
}

.screenshot-placeholder-inline span {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.screenshot-placeholder-inline p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

.screenshot-item.placeholder-mode img {
    display: none;
}

.screenshot-item.placeholder-mode .screenshot-placeholder-inline {
    display: flex;
}

.screenshot-item.placeholder-mode .screenshot-overlay {
    display: none;
}

.screenshot-item.placeholder-mode {
    min-height: 200px;
}

.screenshot-item.large.placeholder-mode {
    min-height: 420px;
}

/* Screenshots Responsive */
@media (max-width: 968px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshot-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

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

    .screenshot-item.large {
        grid-column: span 1;
    }

    .screenshot-overlay {
        opacity: 1;
    }
}
