/* ==================== ROOT VARIABLES ==================== */
:root {
    /* Brand Colors - Matching App Icon Gradient */
    --primary: #8B7FE8;          /* Soft purple from icon */
    --primary-dark: #6B5DD3;     /* Deeper purple */
    --primary-light: #B4A5F5;    /* Light lavender */
    --cyan: #5DCEEB;             /* Cyan from icon */
    --cyan-dark: #4ECDC4;        /* Darker cyan */
    --cyan-light: #7DD8F0;       /* Light cyan */
    
    /* App Accent Colors */
    --blue-accent: #5B9FFF;      /* Blue from app buttons */
    --green-accent: #6FA85B;     /* Green from meal icons */
    --orange-accent: #D4A574;    /* Orange from workout icons */
    
    /* Neutral Colors */
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FB;
    --bg-tertiary: #F3F4F6;
    
    /* Dark Mode Colors (from app) */
    --dark-bg: #1C1C1E;
    --dark-card: #2C2C2E;
    --dark-text: #FFFFFF;
    
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(139, 127, 232, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 24px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

/* Navbar-specific logo positioning to avoid overlap elsewhere */
.navbar .logo {
    position: absolute;
    left: 24px;
}

.logo.hidden {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    display: block;
    transition: transform 0.6s ease;
}

.logo:hover .logo-img {
    transform: rotate(120deg);
}

.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* White logo text on colored page hero backgrounds */
body.page-with-hero .navbar .logo-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

/* White navigation links on colored page hero backgrounds */
body.page-with-hero .navbar .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

body.page-with-hero .navbar .nav-link:hover,
body.page-with-hero .navbar .nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.footer .logo-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

/* Ensure footer logo participates in normal flow */
.footer .logo {
    position: static;
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-menu.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 15px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.5);
    color: var(--primary);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-button {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-toggle.hidden {
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
}

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

/* White hamburger menu on colored hero pages */
body.page-with-hero .navbar .mobile-toggle span {
    background: white !important;
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 140px 0 80px;
    background-image: url('assets/website-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.6) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--cyan));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 4px 15px rgba(139, 127, 232, 0.3);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 50%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.download-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

/* Center the download badge in the CTA/footer section */
.download-cta .download-buttons {
    justify-content: center;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--text-primary);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

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

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

.download-btn svg {
    width: 24px;
    height: 24px;
}

.download-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn .small {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.download-btn .large {
    font-size: 16px;
    font-weight: 700;
}
/* App Store badge styles */
.appstore-link {
    display: inline-flex;
    align-items: center;
}

.appstore-badge {
    height: 50px;
    width: auto;
    display: block;
}

.download-buttons .appstore-link:hover {
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-phone-preview {
    position: relative;
    width: 100%;
    max-width: 220px;
}

.hero-screenshot {
    width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(139, 127, 232, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== INTERACTIVE PHONE SECTION ==================== */
.phone-showcase {
    min-height: 300vh;
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #f9f8fb 100%);
    padding: 80px 0 0;
    margin-bottom: 0;
    z-index: 1;
}

.phone-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to bottom, rgba(248, 249, 251, 0) 0%, rgba(248, 249, 251, 1) 60%);
    pointer-events: none;
    z-index: 3;
}

.phone-container {
    position: sticky;
    top: 10vh;
    transform: translateY(-50%);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.phone-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.phone-hand-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.phone-hand-img.active {
    opacity: 1;
    position: absolute;
}

.scroll-progress {
    margin-top: 0;
    text-align: center;
    display: none;
}

.progress-bar {
    width: 0%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    border-radius: 2px;
    transition: width 0.1s linear;
    margin: 0 auto;
    max-width: 200px;
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 100px 0 100px;
    background: white;
    position: relative;
    z-index: 5;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 20px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

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

.feature-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    color: white;
    box-shadow: var(--shadow-glow);
}

.feature-card.featured h3,
.feature-card.featured p {
    color: white;
}

.feature-icon {
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.feature-card.featured .feature-link {
    color: white;
}

.feature-link:hover {
    gap: 8px;
}

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

.explore-btn,
.compare-btn {
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.explore-btn:hover,
.compare-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ==================== PRICING SECTION ==================== */
.pricing {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

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

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    border: none;
    color: white;
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    background: linear-gradient(135deg, var(--primary-light), var(--cyan-light));
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

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

.plan-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.pricing-card.featured .plan-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 700;
}

.plan-price {
    margin-bottom: 32px;
}

.plan-price .price {
    font-size: 48px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.plan-price .period {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-card.featured .plan-price .period {
    color: rgba(255, 255, 255, 0.8);
}

.plan-features {
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
}

.plan-features svg {
    flex-shrink: 0;
}

.pricing-card.featured .plan-features li {
    color: white;
}

.plan-button {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    color: white;
    border: none;
}

.pricing-card.featured .plan-button {
    background: white;
    color: var(--primary);
}

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

/* ==================== DOWNLOAD CTA SECTION ==================== */
.download-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--cyan) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(93, 206, 235, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(180, 165, 245, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.qr-code {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.qr-placeholder {
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-shrink: 0;
}

.footer-brand {
    flex-shrink: 0;
    max-width: 350px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 14px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: 15px;
}

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

.footer-subscribe {
    display: none;
}

.footer-subscribe h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-subscribe p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    font-size: 14px;
}

.subscribe-form {
    display: flex;
    gap: 8px;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form button {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    white-space: nowrap;
    border: none;
}

.subscribe-form button:hover {
    box-shadow: 0 4px 15px rgba(139, 127, 232, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 14px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .phone-frame {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 88px;
        left: 50%;
        transform: translateX(-50%) translateY(-100%);
        width: calc(100% - 48px);
        max-width: 400px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        padding: 16px;
        border-radius: 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
    }
    
    .cta-button {
        margin-left: 0;
        width: 100%;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .download-btn,
    .appstore-link {
        width: 100%;
        justify-content: center;
    }

    .hero-phone-preview {
        max-width: 280px;
    }
    
    .phone-showcase {
        min-height: 280vh;
    }
    
    .phone-frame {
        max-width: 320px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .hero-phone-preview {
        max-width: 240px;
    }
    
    .phone-frame {
        max-width: 280px;
    }
    
    .phone-showcase {
        min-height: 250vh;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .page-hero h1 {
        font-size: 32px !important;
    }
    
    .content-card {
        padding: 24px;
    }
}

/* ==================== STATIC PAGES (Privacy, Support, etc.) ==================== */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--cyan) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(93, 206, 235, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(180, 165, 245, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.page-content {
    padding: 80px 0;
    background: white;
}

.page-content .container {
    max-width: 900px;
}

.content-section {
    margin-bottom: 48px;
}

.content-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    transition: var(--transition);
}

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

.content-card h2,
.page-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.content-card h3,
.page-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.content-card p,
.page-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-card ul,
.page-content ul {
    list-style: none;
    margin: 16px 0;
}

.content-card ul li,
.page-content ul li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
}

.content-card ul li::before,
.page-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.page-content a {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

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

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.support-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    background: white;
}

.support-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.support-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.logo-img {
    border-radius: 10px;
}

