/* Modern Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Palette - Friendly, Warm Theme from Logo */
    --teal: #1B7A8A;
    --teal-dark: #155F6D;
    --teal-light: #2A9AAD;
    --green: #4CAF50;
    --green-light: #6BC96F;
    --green-dark: #3D8B40;
    --golden: #F5A623;
    --golden-light: #FFB84D;
    --golden-dark: #D4891A;

    /* Backgrounds - Light & Friendly */
    --bg-color: #f8fbfc;
    --bg-gradient: linear-gradient(135deg, #e8f4f8 0%, #e8f5e9 100%);
    --surface-color: #ffffff;
    --surface-alt: #f0f7f4;

    /* Text */
    --text-color: #2D3748;
    --text-light: #5A6C7D;
    --text-muted: #8896A6;

    /* Borders */
    --border-color: #D4E5EA;
    --border-light: #E8F0F2;

    /* Semantic */
    --success-color: #4CAF50;
    --error-color: #E53E3E;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    --section-padding: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--teal-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

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

.section-padding { padding: var(--section-padding) 0; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(27, 122, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(27, 122, 138, 0.4);
}

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

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

.btn-golden {
    background: linear-gradient(135deg, var(--golden) 0%, var(--golden-light) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-golden:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.4);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Header */
.site-header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-dark);
}

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

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

.main-nav a:not(.btn):hover {
    color: var(--teal);
}

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

.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--teal);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    background: white;
}

.hero-bg {
    display: none;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    position: relative;
    z-index: 1;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-right .orbit-wrapper {
    margin: 0;
    max-width: 425px;
    width: 100%;
}

.tagline {
    font-size: 1rem;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.tagline-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-left h1 {
    font-size: 3.2rem;
    color: var(--teal-dark);
    margin-bottom: 8px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 0 30px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

/* Platforms Section */
.platforms-section {
    background: var(--bg-gradient);
    padding: 60px 0;
}

.platforms-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.platform-icons-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 100px;
}

.platform-icon {
    width: 40px;
    height: 40px;
    color: var(--teal);
}

.platform-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--teal-dark);
}

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


.ollie-subtitle {
    color: var(--green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.ollie-features {
    margin: 20px 0 30px;
}

.ollie-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.check-icon {
    color: var(--green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Solutions Section */
.solutions-section {
    background: var(--bg-gradient);
}

.solutions-section .solution-card {
    background: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.solution-card {
    background: var(--surface-alt);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 122, 138, 0.12);
    border-color: var(--teal-light);
}

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--teal);
}

.solution-pro {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.solution-card > p:last-child {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Technology Section */
.technology-section {
    background: white;
}

.tech-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.tech-feature {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.tech-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 122, 138, 0.12);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tech-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--teal-dark);
}

.tech-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.example-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.example-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 16px;
    line-height: 1.8;
}

.example-caption {
    color: var(--teal);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Professionals Section */
.professionals-section {
    background: var(--bg-gradient);
}

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

.pro-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Orbit Diagram */
.orbit-wrapper {
    margin: 0 auto;
    max-width: 600px;
}

.orbit-diagram {
    position: relative;
    width: 100%;
}

.orbit-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.orbit-hotspot {
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
}

.orbit-hotspot:hover {
    background: rgba(27, 122, 138, 0.12);
}

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

.pro-card {
    background: var(--surface-alt);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.pro-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: 0 15px 40px rgba(27, 122, 138, 0.15);
}

.pro-card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.pro-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--teal-dark);
}

.pro-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.pro-card .learn-more {
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pro-card:hover .learn-more {
    gap: 10px;
}

/* CTA Section */
.cta-section {
    background: white;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.cta-card {
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
}

.cta-card.consumer {
    background: white;
    border: 2px solid var(--teal);
    box-shadow: 0 10px 40px rgba(27, 122, 138, 0.15);
}

.cta-card.professional {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(27, 122, 138, 0.3);
}

.cta-card.professional h3,
.cta-card.professional .cta-price {
    color: white;
}

.cta-card.professional p {
    color: rgba(255,255,255,0.9);
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cta-price {
    color: var(--green);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-card > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signup-form input {
    padding: 14px 20px;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    background-color: white;
    color: var(--text-color);
    font-size: 1rem;
    text-align: center;
}

.signup-form input:focus {
    outline: none;
    border-color: var(--teal);
}

.cta-card.professional .signup-form input {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
}

.cta-card.professional .signup-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.cta-card.professional .signup-form input:focus {
    border-color: white;
    background: rgba(255,255,255,0.2);
}

.signup-form .btn {
    width: 100%;
}

/* Footer */
.site-footer {
    padding: 80px 0 40px;
    background: white;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--teal-dark);
}

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

.footer-tagline {
    color: var(--text-muted);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.9rem;
    color: var(--teal-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.mission {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Professional Landing Pages */
.pro-hero {
    background: var(--bg-gradient);
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
}

.pro-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pro-hero-text .pro-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pro-hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.pro-hero-text .subtitle {
    font-size: 1.3rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 20px;
}

.pro-hero-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.pro-hero-visual {
    display: flex;
    justify-content: center;
}

.pro-hero-image {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(27, 122, 138, 0.15);
    text-align: center;
}

.pro-hero-image .big-icon {
    font-size: 8rem;
    margin-bottom: 20px;
}

/* Pain Points Section */
.pain-section {
    background: white;
    padding: var(--section-padding) 0;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pain-card {
    background: #FFF5F5;
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid #E53E3E;
}

.pain-card h3 {
    color: #C53030;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.pain-card p {
    color: var(--text-light);
}

/* Solution Section */
.solution-section {
    background: var(--bg-gradient);
    padding: var(--section-padding) 0;
}

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

.solution-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.solution-item .sol-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.solution-item h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--teal-dark);
}

.solution-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    background: white;
    padding: var(--section-padding) 0;
}

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

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.feature-check {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--teal-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Pro CTA Section */
.pro-cta-section {
    background: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.pro-cta-section h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.pro-cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pro-cta-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pro-cta-form input {
    padding: 16px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    text-align: center;
}

.pro-cta-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.pro-cta-form input:focus {
    outline: none;
    border-color: white;
    background: rgba(255,255,255,0.2);
}

.pro-cta-form .btn {
    background: white;
    color: var(--teal);
}

.pro-cta-form .btn:hover {
    background: var(--golden);
    color: white;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-right .orbit-wrapper {
        max-width: 360px;
        margin: 0 auto;
    }

    .pro-hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .tech-content,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .main-nav .btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

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

    .hero-left h1 {
        font-size: 2.2rem;
    }

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

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-right .orbit-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .solutions-grid,
    .pro-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .pro-hero-text h1 {
        font-size: 2rem;
    }
}

/* Health Risks Dashboard Section */
.health-risks-section {
    background: linear-gradient(180deg, #f0f7f4 0%, #f8fbfc 100%);
}

.prevent-hero {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 50px;
    text-align: center;
}

.prevent-hero h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.prevent-hero p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

.prevent-badge {
    display: inline-block;
    background: var(--golden);
    color: var(--teal-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.risk-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.risk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.risk-card.risk-primary {
    border: 2px solid var(--teal);
    grid-row: span 2;
    background: linear-gradient(180deg, #f0f9fb 0%, white 100%);
}

.risk-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.risk-card h3 {
    font-size: 1.15rem;
    color: var(--teal-dark);
    margin-bottom: 8px;
}

.risk-source {
    font-size: 0.8rem;
    color: var(--golden-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.risk-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.risk-factors {
    margin-top: 16px;
    padding-left: 0;
}

.risk-factors li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.risk-factors li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.prevent-detail {
    margin-bottom: 50px;
}

.prevent-detail-box {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-light);
}

.prevent-detail-box h3 {
    text-align: center;
    margin-bottom: 24px;
}

.ollie-quote-block {
    background: var(--surface-alt);
    border-left: 4px solid var(--golden);
    padding: 24px 30px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 20px;
}

.ollie-quote {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
}

.ollie-attribution {
    font-size: 0.85rem;
    color: var(--golden-dark);
    font-weight: 600;
    margin-top: 10px;
}

.prevent-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

.longevity-score {
    text-align: center;
    background: var(--surface-color);
    border-radius: 16px;
    padding: 50px 40px;
    border: 1px solid var(--border-light);
}

.longevity-score h3 {
    margin-bottom: 12px;
}

.longevity-score > p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.score-example {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.score-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.score-label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.score-caption {
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
}

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

    .risk-card.risk-primary {
        grid-row: span 1;
    }

    .prevent-hero {
        padding: 30px 20px;
    }

    .prevent-hero h3 {
        font-size: 1.3rem;
    }

    .prevent-detail-box {
        padding: 24px;
    }

    .ollie-quote-block {
        padding: 16px 20px;
    }

    .longevity-score {
        padding: 30px 20px;
    }

    .score-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.8rem;
    }

    .platform-icons-grid {
        gap: 20px;
    }

    .platform-item {
        min-width: 80px;
    }

    .platform-icon {
        width: 32px;
        height: 32px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
