/* Latin Dating - Mobile-First Custom CSS */
/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 320px;
    overflow-x: hidden;
}

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

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 44px;
    line-height: 1.5;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

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

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

.btn-accent {
    background: var(--accent-color);
    color: var(--text-primary);
}

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

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

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

/* Pulse Animation for CTA Buttons */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(233, 78, 61, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(233, 78, 61, 0);
    }
}

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

/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 12px var(--shadow-light);
}

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

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

.header-brand .logo svg {
    color: var(--primary-color);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-primary);
    list-style: none;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -4px 0 12px var(--shadow-light);
    overflow-y: auto;
}

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

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-menu a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

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

.nav-cta {
    margin-top: 2rem;
}

.btn-header-cta {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    background: var(--bg-secondary);
}

.theme-icon {
    color: var(--text-primary);
    transition: opacity 0.3s ease;
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1rem 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 78, 61, 0.85) 0%, rgba(194, 60, 46, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

.hero-content h1 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-cta-group .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.trust-badge svg {
    color: white;
}

.trust-badge strong {
    color: white;
    font-size: 1rem;
}

/* Hero Benefits */
.hero-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-card svg {
    color: var(--primary-color);
    margin: 0 auto 1rem;
}

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

.benefit-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background: var(--bg-secondary);
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Comparison Section */
.comparison-section {
    background: var(--bg-primary);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.comparison-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

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

.comparison-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px var(--shadow-light);
}

.comparison-image img {
    width: 100%;
    height: auto;
}

.comparison-side h3 {
    margin-bottom: 1rem;
}

.frustrated h3 {
    color: var(--error-color);
}

.passionate h3 {
    color: var(--success-color);
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.comparison-table thead {
    background: var(--primary-color);
    color: white;
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.american-col {
    background: rgba(244, 67, 54, 0.05);
}

.latina-col {
    background: rgba(76, 175, 80, 0.05);
}

.icon-negative {
    color: var(--error-color);
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.icon-positive {
    color: var(--success-color);
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

/* Statistics Highlight */
.statistics-highlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: var(--text-secondary);
}

/* Cultural Richness */
.cultural-richness {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.cultural-richness h3 {
    margin-bottom: 1rem;
}

/* Success Stories Section */
.success-stories-section {
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow-light);
}

.testimonial-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonial-meta {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

blockquote {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-highlight {
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--success-color);
    font-weight: 600;
}

/* Success Statistics */
.success-statistics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.stat-card strong {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Success Factors */
.success-factors {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
}

.success-factors h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Countries Section */
.countries-section {
    background: var(--bg-primary);
}

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

.country-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow-light);
}

.country-flag {
    font-size: 3rem;
    text-align: center;
    padding: 1rem;
    background: var(--bg-primary);
}

.country-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.country-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-content {
    padding: 2rem;
}

.country-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.country-cities {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

/* Dating Approach Comparison */
.dating-approach-comparison {
    margin: 4rem 0;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-card {
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
}

.approach-card.offline {
    border-top-color: var(--secondary-color);
}

.approach-card h4 {
    margin-bottom: 1rem;
}

.platform-stats {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

/* Dating Tips Section */
.dating-tips-section {
    background: var(--bg-secondary);
}

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

.trait-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.trait-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trait-icon svg {
    margin: 0;
}

.trait-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Expert Tips */
.expert-tips-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
}

.expert-tips-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.tips-content p {
    margin-bottom: 1.5rem;
}

/* Relationship Expectations */
.relationship-expectations {
    margin: 3rem 0;
}

.expectations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.expectation-card {
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.expectation-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Dating Statistics */
.dating-statistics {
    margin: 3rem 0;
}

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

.stat-box {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

.stat-box strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Culture Section */
.culture-section {
    background: var(--bg-primary);
}

.culture-hero-image {
    margin: 2rem 0 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow-medium);
}

.cultural-pillars {
    margin: 4rem 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.pillar-card {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
}

.pillar-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pillar-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Wedding Traditions */
.wedding-traditions-preview {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
}

.wedding-traditions-preview h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Relationship Dynamics */
.relationship-dynamics {
    margin: 4rem 0;
}

.dynamics-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.dynamic-card {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.dynamic-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Challenges Section */
.challenges-section {
    margin: 3rem 0;
}

.challenges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.challenge-card {
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    border-left: 4px solid var(--warning-color);
}

.challenge-card h4 {
    color: var(--warning-color);
    margin-bottom: 0.75rem;
}

/* Culture Statistics */
.culture-statistics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-highlight {
    text-align: center;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
}

.stat-highlight strong {
    display: block;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-highlight p {
    color: var(--text-secondary);
    margin: 0;
}

/* Methodology Section */
.methodology-section {
    background: var(--bg-secondary);
}

.methods-comparison {
    margin: 3rem 0;
}

.method-panel {
    margin-bottom: 3rem;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px var(--shadow-light);
}

.method-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.method-header svg {
    color: var(--primary-color);
    margin: 0 auto 1rem;
}

.method-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.method-badge.secondary {
    background: var(--secondary-color);
}

.method-section {
    margin-bottom: 2rem;
}

.method-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefits-list, .requirements-list {
    list-style: none;
    margin: 1rem 0;
}

.benefits-list li, .requirements-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.requirements-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.platform-types, .venue-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.platform-type, .venue-type {
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.platform-type h5, .venue-type h5 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.success-factors, .combined-approach {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

/* Comparison Table Section */
.comparison-table-section {
    margin: 4rem 0;
}

.comparison-table-container {
    overflow-x: auto;
    margin-top: 2rem;
}

.method-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    border-radius: 8px;
    overflow: hidden;
}

.method-comparison-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
}

.method-comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.positive {
    color: var(--success-color);
}

.negative {
    color: var(--error-color);
}

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

/* Dating Burnout Context */
.dating-burnout-context {
    margin: 4rem 0;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border-left: 4px solid var(--warning-color);
}

.dating-burnout-context h3 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
}

.dating-burnout-context p {
    margin-bottom: 1.5rem;
}

/* Platform Statistics Deep Dive */
.platform-statistics-deep-dive {
    margin: 4rem 0;
}

.platform-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-detail {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.stat-detail h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Safety Section */
.safety-section {
    background: var(--bg-primary);
}

.safety-measures-section {
    margin: 3rem 0;
}

.safety-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.safety-measures-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.safety-measure {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-top: 4px solid var(--success-color);
}

.safety-icon {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.safety-measure h4 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.gender-safety-note {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border-left: 4px solid var(--warning-color);
}

.gender-safety-note h4 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

/* Expectations Section */
.expectations-section {
    margin: 4rem 0;
}

.expectations-accordion {
    margin-top: 2rem;
}

.expectation-item {
    margin-bottom: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
}

.expectation-item h4 {
    padding: 1.5rem;
    margin: 0;
    background: var(--bg-primary);
    color: var(--primary-color);
    cursor: pointer;
    position: relative;
}

.expectation-content {
    padding: 2rem;
}

.expectation-content p {
    margin-bottom: 1.5rem;
}

/* Pros Cons Summary */
.pros-cons-summary {
    margin: 4rem 0;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.pros-column, .cons-column {
    padding: 2rem;
    border-radius: 12px;
}

.pros-column {
    background: rgba(76, 175, 80, 0.1);
    border-top: 4px solid var(--success-color);
}

.cons-column {
    background: rgba(255, 152, 0, 0.1);
    border-top: 4px solid var(--warning-color);
}

.pros-column h4 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.cons-column h4 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
}

.pros-list, .cons-list {
    list-style: none;
}

.pros-list li, .cons-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.pros-list li:last-child, .cons-list li:last-child {
    border-bottom: none;
}

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

.cons-list li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--warning-color);
}

/* Success Statistics Final */
.success-statistics-final {
    margin: 3rem 0;
}

.stats-final-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-final {
    text-align: center;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
}

.stat-final strong {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-final p {
    color: var(--text-secondary);
    margin: 0;
}

/* Pain Point Section */
.pain-point-section {
    background: var(--bg-secondary);
}

.statistics-bombardment {
    margin: 3rem 0;
}

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

.crisis-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--error-color);
    margin-bottom: 0.5rem;
}

.crisis-stat p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Problem Identification */
.problem-identification {
    margin: 4rem 0;
}

.problem-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.problem-card {
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border-top: 4px solid var(--error-color);
}

.problem-icon {
    color: var(--error-color);
    margin-bottom: 1rem;
}

.problem-card h4 {
    color: var(--error-color);
    margin-bottom: 1rem;
}

/* Solution Bridge */
.solution-bridge {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border-radius: 12px;
}

.bridge-intro {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.solution-card {
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border-left: 4px solid var(--success-color);
}

.solution-card h4 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

/* Transformation Promise */
.transformation-promise {
    margin: 4rem 0;
}

.transformation-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.transform-before, .transform-after {
    padding: 2rem;
    border-radius: 12px;
}

.transform-before {
    background: rgba(244, 67, 54, 0.1);
    border-top: 4px solid var(--error-color);
}

.transform-after {
    background: rgba(76, 175, 80, 0.1);
    border-top: 4px solid var(--success-color);
}

.transform-before h4 {
    color: var(--error-color);
    margin-bottom: 1.5rem;
}

.transform-after h4 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.transform-arrow {
    display: none;
}

.transform-before ul, .transform-after ul {
    list-style: none;
}

.transform-before li, .transform-after li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.transform-before li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: bold;
}

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

/* Mental Health Benefits */
.mental-health-benefits {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border-left: 4px solid var(--success-color);
}

.mental-health-benefits h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

/* Cost Effectiveness */
.cost-effectiveness {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
}

.cost-effectiveness h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Multiple CTAs */
.multiple-ctas {
    margin: 4rem 0;
    text-align: center;
}

.cta-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-options .btn {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Final Conversion Section */
.final-conversion-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 5rem 0;
}

.conversion-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Urgency Triggers */
.urgency-triggers {
    margin: 3rem 0;
}

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

.trigger-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.trigger-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.trigger-card strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.trigger-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Benefits Recap */
.benefits-recap {
    margin: 4rem 0;
}

.benefits-recap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-recap-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.benefit-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.benefit-recap-card h4 {
    margin-bottom: 0.5rem;
}

.benefit-recap-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Final Statistics */
.final-statistics {
    margin: 4rem 0;
}

.final-stats-cluster {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.final-stat {
    text-align: center;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
}

.final-stat strong {
    display: block;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.final-stat span {
    color: var(--text-secondary);
}

/* Guarantee Section */
.guarantee-section {
    margin: 4rem 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.guarantee-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.guarantee-item svg {
    color: var(--primary-color);
    margin: 0 auto 1rem;
}

.guarantee-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.guarantee-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Action Steps */
.action-steps {
    margin: 4rem 0;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-item {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-arrow {
    display: none;
}

.step-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Emotional Appeal */
.emotional-appeal {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 12px;
    color: white;
}

.appeal-content h3 {
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.appeal-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.appeal-emphasis {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 2rem 0;
}

.appeal-final {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-top: 2rem;
}

/* Final CTA Section */
.final-cta-section {
    text-align: center;
    margin: 4rem 0;
}

.cta-buttons-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.cta-buttons-large .btn {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.cta-subtext {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Final Trust Badges */
.final-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

.trust-badge-item svg {
    color: var(--primary-color);
}

.trust-badge-item span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Pre-Footer CTA */
.pre-footer-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}

.pre-footer-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pre-footer-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.pre-footer-cta .btn {
    background: white;
    color: var(--primary-color);
}

.testimonial-snippet {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.snippet-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 4px solid white;
}

.testimonial-snippet blockquote {
    font-style: italic;
    color: white;
    margin-bottom: 0.5rem;
}

.testimonial-snippet cite {
    display: block;
    font-style: normal;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Footer Styles */
.site-footer {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-main {
    padding: 4rem 0 2rem;
}

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

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.brand-column .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.brand-column .footer-logo svg {
    color: var(--primary-color);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-badge svg {
    color: var(--success-color);
    flex-shrink: 0;
}

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

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

.footer-links a, .link-button {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.footer-links a:hover, .link-button:hover {
    color: var(--primary-color);
}

.support-hours {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Footer Statistics Bar */
.footer-statistics-bar {
    background: var(--bg-tertiary);
    padding: 2rem 0;
}

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

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

.footer-stat strong {
    display: block;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.footer-stat span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Footer SEO Content */
.footer-seo-content {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-seo-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer Bottom */
.footer-bottom {
    background: var(--bg-primary);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.payment-security {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icons svg {
    color: var(--text-secondary);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
    border-radius: 12px;
    max-width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.modal-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

/* Tablet Styles - 768px and up */
@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
    
    .container {
        padding: 0 2rem;
    }
    
    /* Header Desktop */
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        box-shadow: none;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        padding: 0;
        font-size: 1rem;
    }
    
    .nav-cta {
        margin: 0;
    }
    
    .btn-header-cta {
        width: auto;
        padding: 0.75rem 1.5rem;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.25rem;
    }
    
    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-cta-group .btn {
        width: auto;
    }
    
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Comparison Visual */
    .comparison-visual {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Statistics */
    .statistics-highlight {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Success Stories */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .success-statistics {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Countries */
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Dating Approach */
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Traits Grid */
    .traits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Cultural Pillars */
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Dynamics Content */
    .dynamics-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Challenges Grid */
    .challenges-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Culture Statistics */
    .culture-statistics {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Platform Stats */
    .platform-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Safety Measures */
    .safety-measures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Expectations Grid */
    .expectations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Pros Cons */
    .pros-cons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Stats Final */
    .stats-final-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Crisis Stats */
    .crisis-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Problems Grid */
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Solutions Grid */
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Transformation Visual */
    .transformation-visual {
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
    
    .transform-arrow {
        display: block;
        color: var(--primary-color);
    }
    
    /* CTA Options */
    .cta-options {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-options .btn {
        width: auto;
    }
    
    /* Trigger Grid */
    .trigger-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Benefits Recap */
    .benefits-recap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Final Stats */
    .final-stats-cluster {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Guarantee Grid */
    .guarantee-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Steps Container */
    .steps-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .step-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--primary-color);
    }
    
    /* CTA Buttons Large */
    .cta-buttons-large {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-buttons-large .btn {
        width: auto;
    }
    
    /* Final Trust Badges */
    .final-trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .payment-security {
        flex-direction: row;
    }
    
    /* Modal */
    .modal-content {
        max-width: 700px;
    }
}

/* Desktop Styles - 1024px and up */
@media (min-width: 1024px) {
    h1 { font-size: 3.5rem; }
    
    /* Hero */
    .hero-content h1 {
        font-size: 4rem;
    }
    
    /* Countries */
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Traits */
    .traits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Pillars */
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Safety Measures */
    .safety-measures-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Problems */
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Solutions */
    .solutions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Benefits Recap */
    .benefits-recap-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Final Stats */
    .final-stats-cluster {
        grid-template-columns: repeat(5, 1fr);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Large Desktop - 1200px and up */
@media (min-width: 1200px) {
    .crisis-stats-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}