:root {
    --primary: #F04E23; /* ORYGN Red/Orange */
    --primary-dark: #d0411a;
    --secondary: #e0431a;
    --bg-dark: #111827; /* ORYGN Header dark */
    --bg-darker: #0b0f19;
    --bg-light: #ffffff;
    --text-main: #f8fafc; /* Lighter white for better readability on dark bg */
    --text-muted: #cbd5e1; /* Lighter gray for better readability on dark bg */
    --text-dark: #111827;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

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

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

/* Typography */
.text-center { text-align: center; }
.subtitle { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 3rem; }
.section-light .subtitle { color: #475569; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(240, 78, 35, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 78, 35, 0.5);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--primary);
    border: 1px solid var(--primary);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

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

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid #cbd5e1;
}

.btn-outline-dark:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    position: relative;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    border-radius: 50px;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
    opacity: 0.8;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 100;
}

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

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

.header-logo {
    height: 35px;
    width: auto;
}

.badge {
    font-size: 0.6rem;
    padding: 3px 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(240, 78, 35, 0.1), transparent 50%),
                radial-gradient(circle at bottom left, rgba(208, 65, 26, 0.05), transparent 50%);
}

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

.hero-pretitle {
    display: block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 10px;
    animation: fadeInDown 0.8s ease-out;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-video {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 35px rgba(240, 78, 35, 0.5);
    border: 3px solid var(--primary);
    position: relative;
    background: white;
}

.hero-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* Video End Overlay */
.video-end-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    animation: fadeIn 0.5s ease forwards;
    text-align: center;
    padding: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.end-product-img {
    height: 50%;
    max-height: 220px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.end-text h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Alert Banner */
.alert-banner {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
    background-size: 200% 100%;
    animation: gradientMove 5s ease infinite;
    padding: 30px 0;
    box-shadow: 0 10px 30px rgba(240, 78, 35, 0.3);
    position: relative;
    z-index: 10;
}

.banner-text {
    margin: 0;
    font-size: 2.2rem;
    color: white;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Sections */
.section-dark {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.section-light {
    padding: 100px 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

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

.content-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content-container p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.floating-image {
    width: 100%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(240, 78, 35, 0.15));
}

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

/* Infographic Layout */
.infographic-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0; /* Changed from 40px to allow overlap */
    margin-top: 50px;
    flex-wrap: wrap;
    position: relative;
}

.info-box {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #f1f5f9;
    text-align: left;
    position: relative;
    z-index: 2;
}

.left-box {
    margin-right: -40px;
    animation: float 6s ease-in-out infinite;
}

.right-box {
    margin-left: -40px;
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

.info-box h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.bottle-center {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.product-bottle {
    max-width: 100%;
    max-height: 550px;
    transform: scale(1.35);
    transform-origin: center center;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.feature-list .icon {
    font-size: 1.5rem;
}

/* Resources */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.resource-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.highlight-card {
    background: linear-gradient(135deg, #fff1f0, #ffe4e0);
    border-color: #ffccc3;
}

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

.resource-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.resource-card p {
    color: #475569; /* Darker gray for better readability on light bg */
    margin-bottom: 25px;
}

.cta-box {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
    color: white;
    padding: 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: var(--bg-darker);
    padding: 60px 0 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.footer-info p {
    color: var(--text-muted);
    max-width: 400px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Compare Section */
.badge-dark {
    background: #1e293b;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.glp-compare h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #0f172a;
}

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

.compare-card {
    padding: 40px;
    border-radius: 24px;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.compare-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.compare-card.negative {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.compare-card.negative h3 {
    color: #475569;
}

.compare-card.positive {
    background: linear-gradient(135deg, #fff1f0, #ffe4e0);
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 10;
}

.compare-card.positive h3 {
    color: var(--primary-dark);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 20;
    box-shadow: 0 4px 10px rgba(240, 78, 35, 0.3);
}

.align-left li {
    justify-content: flex-start;
    color: #334155;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Market Opportunity */
.market-opportunity {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    margin-bottom: 50px;
    text-align: left;
    border: 1px solid #f1f5f9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

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

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    display: block;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 500;
}

.opportunity-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0f172a;
}

.opportunity-text p {
    color: #334155; /* Darker gray for better readability on light bg */
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Video Overlay */
.video-unmute-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-unmute-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: var(--primary);
}

/* Timeline */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 35px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(240, 78, 35, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.time-badge {
    position: absolute;
    top: -15px;
    left: 35px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(240, 78, 35, 0.3);
}

.timeline-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.timeline-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Testimonials */
.bg-gray {
    background-color: #f8fafc;
}

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

.testimonial-card {
    background: white;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: left;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-family: serif;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review {
    font-style: italic;
    color: #475569;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.reviewer {
    font-weight: 700;
    color: var(--primary-dark);
}

/* FAQ Section */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background: var(--bg-darker);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.faq-item h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--text-main);
}
.faq-item p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    color: white;
}
.wa-icon {
    width: 35px;
    height: 35px;
}

/* Custom Audio Player */
.custom-audio-player {
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    margin: 40px auto 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}

.player-icon {
    font-size: 2.5rem;
    background: rgba(240, 78, 35, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
}

.player-text h4 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.player-text p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-pause-btn {
    background: var(--primary);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(240, 78, 35, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.play-pause-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(240, 78, 35, 0.5);
}

.play-icon, .pause-icon {
    width: 22px;
    height: 22px;
    margin-left: 2px; /* Center the play triangle visually */
}
.pause-icon {
    margin-left: 0;
}

.progress-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.time {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 45px;
}

.progress-bar {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(240, 78, 35, 0.5);
}

.progress-bar::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(240, 78, 35, 0.5);
    border: none;
}

/* =============================================
   SECCIONES NUEVAS - MEJORAS LP
   ============================================= */

/* Pathway Boxes (3 vias mejoradas) */
.pathway-box {
    text-align: center;
}
.pathway-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.pathway-third-row {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.center-box {
    max-width: 400px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.5s;
}
.bottle-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
}

/* Clinical Data Section */
.clinical-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}
.clinical-stat {
    background: rgba(240, 78, 35, 0.08);
    border: 1px solid rgba(240, 78, 35, 0.2);
    border-radius: 20px;
    padding: 35px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.clinical-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(240, 78, 35, 0.15);
}
.clinical-number {
    display: block;
    font-size: 3.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}
.clinical-label {
    display: block;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* Clinical Details Cards */
.clinical-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}
.clinical-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: left;
}
.clinical-card h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}
.clinical-list {
    list-style: none;
    padding: 0;
}
.clinical-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
}
.clinical-list li:last-child {
    border-bottom: none;
}
.clinical-list li::before {
    content: "✓ ";
    color: var(--primary);
    font-weight: 700;
}

/* Clinical Regulatory Badges */
.clinical-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.regulatory-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}
.reg-icon {
    font-size: 1.2rem;
}

/* Ingredients Section */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0 40px;
}
.ingredient-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.ingredient-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}
.ingredient-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.ingredient-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-main);
}
.ingredient-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}
.purity-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.purity-item {
    background: rgba(240, 78, 35, 0.05);
    border: 1px solid rgba(240, 78, 35, 0.15);
    border-radius: 16px;
    padding: 25px;
    text-align: left;
}
.purity-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.purity-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* How to Use Section */
.usage-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin: 50px 0 40px;
    flex-wrap: wrap;
}
.usage-step {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.usage-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 1rem;
}
.step-icon {
    font-size: 2.2rem;
    margin: 15px 0 12px;
}
.usage-step h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.usage-step p {
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.5;
}
.usage-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    padding: 0 5px;
    min-width: 30px;
    margin-top: 50px;
    font-weight: 700;
}

/* Dosage Cards */
.dosage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 700px;
    margin: 40px auto 0;
}
.dosage-card {
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
}
.dosage-card.results-phase {
    background: linear-gradient(135deg, #fff1f0, #ffe4e0);
    border: 2px solid var(--primary);
}
.dosage-card.maintenance-phase {
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.dosage-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}
.dosage-card.maintenance-phase .dosage-badge {
    background: #64748b;
}
.dosage-image {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 180px;
    margin: 25px auto 10px;
    border-radius: 12px;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}
.dosage-card:hover .dosage-image {
    transform: scale(1.05) translateY(-5px);
}
.dosage-card h3 {
    font-size: 1.8rem;
    margin: 15px 0 10px;
    color: var(--text-dark);
}
.dosage-card p {
    color: #475569;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.dosage-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 15px;
    font-size: 0.9rem;
    color: #334155;
}
.usage-tips {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: left;
    color: #475569;
}
.usage-tips p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
}
.usage-tips strong {
    color: var(--text-dark);
}

/* Updated Stats Grid */
.updated-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

/* Compensation Plan Grid */
.compensation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0 40px;
}
.comp-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.comp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}
.comp-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.comp-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.comp-highlight {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}
.comp-card p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
}
.comp-advantages {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.adv-item {
    background: linear-gradient(135deg, #fff1f0, #ffe4e0);
    color: var(--primary-dark);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Why ORYGN - Diff Grid */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0 40px;
}
.diff-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}
.diff-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.diff-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}
.diff-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.diff-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-main);
}
.diff-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Light Theme Overrides for diff-card */
.section-light .diff-card {
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.section-light .diff-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.section-light .diff-card h3 {
    color: var(--text-dark);
}
.section-light .diff-card p {
    color: #475569;
}

/* Mission Quote */
.orygn-mission {
    margin-top: 50px;
    padding: 40px;
    background: rgba(240, 78, 35, 0.05);
    border: 1px solid rgba(240, 78, 35, 0.15);
    border-radius: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.orygn-mission p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}
.mission-authors {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: var(--primary);
    font-size: 0.9rem;
}

/* Price tag under CTAs */
.price-tag {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.85;
    font-family: var(--font-body);
}

/* =============================================
   UTILITY CLASSES — Replaces inline styles
   ============================================= */
.price-tag--overlay {
    color: var(--text-dark);
    margin-top: 12px;
}
.price-tag--primary {
    color: var(--primary-dark);
    margin-top: 12px;
}
.price-tag--muted {
    margin-top: 8px;
    color: var(--text-muted);
}
.price-tag--slate {
    color: #475569;
    margin-top: 12px;
}
.subtitle--muted {
    color: var(--text-muted);
}
.badge--primary {
    background: var(--primary);
    color: white;
    border: none;
}
.faq-grid--constrained {
    text-align: left;
    max-width: 800px;
    margin: 40px auto 0;
}
.section--white-bg {
    background: white;
}
.badge--primary-filled {
    background: var(--primary);
    color: white;
}
.section--off-white {
    background-color: #f8fafc;
}
.cta-wrapper {
    margin-top: 50px;
}
.cta-wrapper--sm {
    margin-top: 40px;
}
.subtitle--spaced {
    margin-top: 3rem;
}
.heading--spaced {
    margin-top: 4rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.disclaimer-text {
    font-size: 0.8rem;
    margin-bottom: 15px;
    opacity: 0.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
/* =============================================
   RESPONSIVE - NUEVAS SECCIONES
   ============================================= */
@media (max-width: 992px) {
    .clinical-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .clinical-details-grid {
        grid-template-columns: 1fr;
    }
    .clinical-badges {
        flex-direction: column;
        align-items: center;
    }
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .purity-features {
        grid-template-columns: 1fr;
    }
    .usage-steps {
        flex-direction: column;
        align-items: center;
    }
    .usage-step {
        max-width: 100%;
        width: 100%;
    }
    .usage-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }
    .dosage-grid {
        grid-template-columns: 1fr;
    }
    .compensation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .clinical-stats-grid {
        grid-template-columns: 1fr;
    }
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    .compensation-grid {
        grid-template-columns: 1fr;
    }
    .diff-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .split-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero {
        padding-top: 120px;
        padding-bottom: 50px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .feature-list li {
        justify-content: center;
    }
    nav {
        display: none; /* simple mobile nav hide for demo */
    }
    .infographic-container {
        gap: 40px; /* Restore gap for mobile stacking */
    }
    .left-box {
        margin-right: 0;
    }
    .right-box {
        margin-left: 0;
    }
    .compare-grid {
        grid-template-columns: 1fr;
    }
    .compare-card.positive {
        transform: scale(1);
    }
    
    .popular-tag {
        width: 80%;
        top: -20px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
        padding: 8px 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .market-opportunity {
        padding: 30px 20px;
    }
    .banner-text {
        font-size: 1.5rem;
    }
}

/* =========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}
.reveal-fade {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    will-change: opacity;
}
.reveal-up.is-visible,
.reveal-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   MASTERCLASS PREMIUM SECTION
   ========================================================================= */
.masterclass-premium {
    padding: 100px 0;
    position: relative;
}

.masterclass-card {
    display: flex;
    flex-direction: column; /* Stacked layout */
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    overflow: hidden;
    margin-top: 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.masterclass-visual {
    padding: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(240, 78, 35, 0.05), transparent);
    gap: 20px;
}

.video-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(240, 78, 35, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: aura-pulse 4s infinite alternate ease-in-out;
}

@keyframes aura-pulse {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.video-container {
    position: relative;
    max-width: 900px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.video-header {
    background: #1a1a1a;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.header-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.header-dots span:nth-child(1) { background: #ff5f56; }
.header-dots span:nth-child(2) { background: #ffbd2e; }
.header-dots span:nth-child(3) { background: #27c93f; }

.header-title {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
    letter-spacing: 2px;
}

.masterclass-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.masterclass-info {
    padding: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}

.expert-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.expert-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(240, 78, 35, 0.2);
}

.expert-meta h4 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 5px;
}

.expert-title {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expert-bio {
    margin-bottom: 40px;
}

.expert-bio p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.masterclass-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(240, 78, 35, 0.15);
    border: 1px solid rgba(240, 78, 35, 0.3);
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.highlight-text strong {
    color: white;
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.w-full {
    width: 100%;
}

@media (max-width: 1200px) {
    .masterclass-card {
        grid-template-columns: 1fr;
    }
    .masterclass-info {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .updated-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .masterclass-visual {
        padding: 30px 15px;
    }
    
    .masterclass-info {
        padding: 30px;
    }
    
    .expert-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .video-container {
        max-width: 100%;
    }

    footer {
        padding: 40px 0 16px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 22px;
        margin-bottom: 28px;
    }

    .footer-info {
        width: 100%;
    }

    .footer-info p {
        max-width: 100%;
    }

    .footer-logo {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .footer-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 14px;
    }

    .footer-links a {
        font-size: 0.92rem;
        white-space: normal;
    }

    .footer-bottom {
        padding: 16px 20px 0;
    }

    .disclaimer-text {
        max-width: 100%;
        font-size: 0.78rem;
        line-height: 1.45;
    }
}

@media (max-width: 480px) {
    .updated-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }

    .footer-logo .header-logo {
        height: 30px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .disclaimer-text {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}

/* Utilities */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.opacity-75 { opacity: 0.75; }
.hover\:opacity-100:hover { opacity: 1; }
.mt-2 { margin-top: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mr-4 { margin-right: 1rem; }

/* Custom Additions */
.hero-disclaimer {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.mobile-bottom-cta {
  display: none;
}

@media (max-width: 992px) {
  .mobile-bottom-cta {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 999;
    gap: 10px;
    background: rgba(11, 15, 25, 0.92);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
  }

  .mobile-bottom-cta a {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    font-size: 0.9rem;
  }

  body {
    padding-bottom: 86px;
  }
  
  .whatsapp-float {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .floating-image,
  .left-box,
  .right-box,
  .center-box {
    animation: none !important;
  }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: auto !important;
    top: auto !important;
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 15px 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    transition: bottom 0.5s ease-in-out;
    display: flex;
    justify-content: center;
}
.cookie-banner.show {
    bottom: 0;
}
.cookie-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cookie-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}
.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner {
        padding-bottom: 90px;
    }
}

/* =============================================
   SECCIÓN PÚBLICO IDEAL - ¿PARA QUIÉN ES?
   ============================================= */
.avatar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0 40px;
}
.avatar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.avatar-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(240, 78, 35, 0.15);
}
.avatar-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.avatar-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-main);
}
.avatar-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .avatar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .avatar-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   CALCULADORA INTERACTIVA
   ============================================= */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    max-width: 950px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    text-align: left;
    backdrop-filter: blur(10px);
}
.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.calc-inputs h3, .calc-results h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(240, 78, 35, 0.1);
    padding-bottom: 10px;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.input-group label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
}
.label-with-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.calc-value-display {
    background: linear-gradient(135deg, #fff1f0, #ffe4e0);
    color: var(--primary-dark);
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}
.calc-value-display strong {
    font-size: 1.1rem;
    color: var(--primary);
}

/* Segmented Control iOS-style */
.segmented-control {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.segmented-control input[type="radio"] {
    display: none;
}
.segmented-control label {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    transition: background 0.25s ease, color 0.25s ease;
    margin: 0;
}
.segmented-control input[type="radio"]:checked + label {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Custom Sliders */
.slider-calc {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #cbd5e1;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    margin: 8px 0;
}
.slider-calc::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid white;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(240, 78, 35, 0.4);
    transition: transform 0.15s ease;
}
.slider-calc::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}
.slider-calc::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid white;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(240, 78, 35, 0.4);
    transition: transform 0.15s ease;
}
.slider-calc::-moz-range-thumb:hover {
    transform: scale(1.15);
}
.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: -4px;
}

/* Results section */
.calc-results {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}
.results-grid-calc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.result-box-calc {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: border-color 0.25s ease;
}
.result-box-calc:hover {
    border-color: var(--primary-light);
}
.result-title-calc {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}
.result-highlight-calc {
    display: block;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}
.result-desc-calc {
    display: block;
    font-size: 0.8rem;
    color: #475569;
}
.calc-recommendation-card {
    background: linear-gradient(135deg, #fffcfb, #fff1ec);
    border: 1px solid rgba(240, 78, 35, 0.2);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    box-shadow: inset 0 0 15px rgba(240, 78, 35, 0.02);
}
.rec-badge-calc {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.calc-recommendation-card h4 {
    margin-top: 5px;
    margin-bottom: 8px;
    font-size: 1.15rem;
    color: var(--text-dark);
}
.calc-recommendation-card p {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 12px;
}
.rec-price-calc {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}
.calc-cta-btn {
    padding: 15px !important;
    font-size: 1.1rem !important;
    text-align: center;
}

@media (max-width: 992px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}
@media (max-width: 576px) {
    .results-grid-calc {
        grid-template-columns: 1fr;
    }
}


