/* ===============================================
   Delta Flows Website Styles - v3.0 COMPLETE
   Homepage + /demo + /whatsapp pages
   Primary: #0F4C81 | Secondary: #00D4FF | WhatsApp: #25D366
   =============================================== */

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

:root {
    --primary-blue: #0F4C81;
    --secondary-cyan: #00D4FF;
    --whatsapp-green: #25D366;
    --dark-gray: #2C3E50;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --text-color: #333333;
    --warning-red: #FF6B6B;
}

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

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

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    font-size: 32px;
    line-height: 1;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ===== HEADER/NAVIGATION ===== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-simple {
    position: relative;
}

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

.logo-img {
    height: 50px;
    width: auto;
}

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

.nav-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-cyan);
}

.lang-toggle {
    background: none;
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: var(--light-gray);
}

.lang-option {
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.lang-option.active {
    opacity: 1;
    font-weight: 600;
}

.lang-divider {
    color: var(--primary-blue);
}

/* ===== HERO SECTION (Homepage) ===== */
.hero {
    background: linear-gradient(135deg, #0F4C81 0%, #1a5fa0 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.hero-hook {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--warning-red);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.95;
    font-weight: 500;
}

.hero-results {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.result-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.05rem;
    backdrop-filter: blur(10px);
}

.hero-warning {
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFE66D;
    margin-bottom: 35px;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-cyan);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background: #00bfea;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: var(--white);
    font-size: 1.15rem;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

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

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

.btn-whatsapp-cta {
    background: var(--whatsapp-green);
    color: var(--white);
    padding: 16px 35px;
    font-size: 1.1rem;
}

.btn-whatsapp-cta:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-calendar-cta {
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px 35px;
    font-size: 1.1rem;
}

.btn-calendar-cta:hover {
    background: #0d3e6b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 76, 129, 0.3);
}

.btn-primary-large {
    background: var(--primary-blue);
    color: var(--white);
    padding: 18px 50px;
    font-size: 1.2rem;
}

.btn-primary-large:hover {
    background: #0d3e6b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.3);
}

/* ===== PAIN POINTS SECTION ===== */
.pain-points {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.section-title-small {
    font-size: 2rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.pain-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
}

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

.pain-card h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.pain-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

.pain-cost {
    margin-top: 15px;
    font-weight: 600;
    color: var(--warning-red);
    font-size: 1.1rem;
}

/* ===== MID-PAGE CTAs ===== */
.mid-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.mid-cta-urgent {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.mid-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.mid-cta-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.mid-cta-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.mid-cta-text {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 35px;
    line-height: 1.6;
}

.mid-cta-badge {
    display: inline-block;
    background: var(--warning-red);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.mid-cta-urgency-text {
    font-size: 1.15rem;
    color: var(--dark-gray);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mid-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-divider {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0 10px;
}

.mid-cta-guarantee {
    font-size: 1rem;
    color: var(--dark-gray);
    font-style: italic;
    margin-top: 20px;
}

/* ===== SECTORS (Vertical Segmentation) ===== */
.sectors {
    padding: 80px 0;
    background: var(--white);
}

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

.sector-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.sector-card:hover {
    border-color: var(--secondary-cyan);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

.sector-featured {
    border: 3px solid var(--secondary-cyan);
    background: linear-gradient(135deg, #f0f9ff, #ffffff);
    position: relative;
}

.sector-featured::before {
    content: "⭐ Más demanda";
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-cyan);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
}

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

.sector-card h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.sector-pains {
    margin-bottom: 20px;
}

.sector-pain {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.sector-pain strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.sector-result {
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
    font-weight: 600;
    color: var(--whatsapp-green);
    font-size: 1.05rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.how-col h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.how-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--secondary-cyan);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.how-step p {
    line-height: 1.6;
    color: var(--dark-gray);
}

/* ===== MOCKUPS SECTION ===== */
.mockups-section {
    margin-top: 60px;
    padding: 50px;
    background: var(--white);
    border-radius: 16px;
}

.mockups-title {
    font-size: 2rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.mockups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    justify-items: center;
}

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

.mockup-phone {
    width: 280px;
    height: 560px;
    border: 12px solid #333;
    border-radius: 36px;
    background: #000;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin: 0 auto 20px;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    padding: 20px;
}

.mockup-caption {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-style: italic;
}

/* WhatsApp Mockup */
.whatsapp-mockup {
    background: #ECE5DD;
    padding: 20px 10px;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 8px;
    max-width: 70%;
    font-size: 14px;
    line-height: 1.4;
    clear: both;
}

.chat-in {
    background: #fff;
    color: #000;
    float: left;
    border-bottom-left-radius: 4px;
}

.chat-out {
    background: #DCF8C6;
    color: #000;
    float: right;
    border-bottom-right-radius: 4px;
}

/* Calendar Mockup */
.calendar-mockup {
    padding: 30px 20px;
}

.calendar-event {
    background: linear-gradient(135deg, #f0f9ff, #ffffff);
    border-left: 4px solid var(--secondary-cyan);
    padding: 20px;
    border-radius: 8px;
}

.event-time {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 8px;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-patient {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.event-status {
    color: var(--whatsapp-green);
    font-weight: 600;
    font-size: 1rem;
}

/* Telegram Mockup */
.telegram-mockup {
    padding: 30px 20px;
    background: #F4F4F5;
}

.telegram-alert {
    background: #FFF3CD;
    border-left: 4px solid #FFC107;
    padding: 20px;
    border-radius: 8px;
}

.alert-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.alert-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #333;
}

.alert-time {
    font-size: 0.85rem;
    color: #666;
}

/* ===== CASE STUDIES ===== */
.cases {
    padding: 80px 0;
    background: var(--white);
}

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

.case-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--secondary-cyan);
}

.case-flag {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.case-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.case-section {
    margin-bottom: 20px;
}

.case-section strong {
    color: var(--primary-blue);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.case-section p {
    line-height: 1.7;
    color: var(--dark-gray);
}

/* ===== PRICING ===== */
.pricing {
    padding: 80px 0;
    background: var(--light-gray);
}

.pricing-intro {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-intro p {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.pricing-summary {
    max-width: 800px;
    margin: 0 auto 30px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pricing-item {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.pricing-item strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    font-style: italic;
    color: var(--dark-gray);
    margin-top: 30px;
    font-size: 1.05rem;
}

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

.tier-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    position: relative;
}

.tier-card:hover {
    border-color: var(--secondary-cyan);
    transform: translateY(-5px);
}

.tier-featured {
    border: 3px solid var(--secondary-cyan);
    background: linear-gradient(135deg, #f0f9ff, #ffffff);
}

.tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-cyan);
    color: var(--primary-blue);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.tier-card h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    text-align: center;
}

.tier-features {
    list-style: none;
}

.tier-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 1.05rem;
}

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

/* ===== WHAT'S INCLUDED ===== */
.included {
    padding: 80px 0;
    background: var(--white);
}

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

.included-col h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.included-yes h3 {
    color: var(--whatsapp-green);
}

.included-no h3 {
    color: var(--warning-red);
}

.included-list {
    list-style: none;
}

.included-list li {
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    line-height: 1.6;
}

.included-yes .included-list li {
    background: #f0fff4;
    border-left: 4px solid var(--whatsapp-green);
}

.included-no .included-list li {
    background: #fff5f5;
    border-left: 4px solid var(--warning-red);
}

/* ===== INTEGRATIONS ===== */
.integrations {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.integrations-text {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.integrations-logos {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.integration-badge {
    background: var(--white);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ===== ABOUT / TRUST ===== */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-intro p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--dark-gray);
    font-weight: 500;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1000px;
    margin: 40px auto;
}

.trust-item {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.trust-item h4 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-item p {
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.7;
    text-align: left;
}

.trust-stats-box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 60px auto 50px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-cyan);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-detail {
    display: block;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.about-closing {
    max-width: 850px;
    margin: 50px auto 0;
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    border-left: 5px solid var(--secondary-cyan);
}

.about-closing p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--primary-blue);
    font-weight: 600;
    font-style: italic;
}

/* ===== COMPARISON TABLE ===== */
.comparison {
    padding: 80px 0;
    background: var(--light-gray);
}

.comparison-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 50px auto 0;
}

.comparison-col {
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.comparison-header {
    padding: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.comparison-without .comparison-header {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
}

.comparison-with .comparison-header {
    background: linear-gradient(135deg, #f0fff4 0%, #d4f4dd 100%);
}

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

.comparison-col h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.comparison-without h3 {
    color: var(--warning-red);
}

.comparison-with h3 {
    color: var(--whatsapp-green);
}

.comparison-list {
    list-style: none;
    padding: 30px;
    background: var(--white);
}

.comparison-list li {
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.comparison-list li strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.comparison-without .comparison-list li {
    background: #fff8f8;
    border-left: 4px solid var(--warning-red);
}

.comparison-without .comparison-list li strong {
    color: var(--warning-red);
}

.comparison-with .comparison-list li {
    background: #f7fff9;
    border-left: 4px solid var(--whatsapp-green);
}

.comparison-with .comparison-list li strong {
    color: var(--whatsapp-green);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--secondary-cyan);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-benefits {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.benefit-badge {
    background: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-options {
    margin-bottom: 60px;
}

.btn-whatsapp-large {
    background: var(--whatsapp-green);
    color: var(--white);
    font-size: 1.3rem;
    padding: 20px 50px;
}

.btn-whatsapp-large:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.calendly-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.footer-simple {
    background: var(--dark-gray);
    padding: 30px 0;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-info p {
    margin: 10px 0;
    opacity: 0.9;
}


/* ======================================
   DEMO PAGE STYLES
   ====================================== */

.demo-page {
    background: var(--light-gray);
}

.demo-hero {
    background: linear-gradient(135deg, #0F4C81 0%, #1a5fa0 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.demo-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.demo-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Pre-qualification Form */
.demo-form-section {
    padding: 80px 0;
    background: var(--white);
}

.demo-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 2rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 40px;
}

.prequalification-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.05rem;
}

.form-group select {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-color);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.form-group select:focus {
    outline: none;
    border-color: var(--secondary-cyan);
}

.form-submit-btn {
    margin-top: 20px;
    width: 100%;
}

.form-success {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    border: 3px solid var(--whatsapp-green);
}

.success-icon {
    font-size: 4rem;
    color: var(--whatsapp-green);
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.form-success p {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.calendly-embed-demo {
    margin-top: 40px;
}

/* Demo Trust Signals */
.demo-trust {
    padding: 60px 0;
    background: var(--light-gray);
}

.demo-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.demo-trust-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
}

.trust-icon-mini {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.demo-trust-item p {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1rem;
}

/* Demo Pricing */
.demo-pricing {
    padding: 60px 0;
    background: var(--white);
}

.demo-pricing-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
}

.pricing-line {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.pricing-line strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.demo-pricing-note {
    text-align: center;
    font-style: italic;
    color: var(--dark-gray);
    margin-top: 25px;
    font-size: 0.95rem;
}

/* Demo Process */
.demo-how {
    padding: 60px 0;
    background: var(--light-gray);
}

.demo-process {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.demo-process-step {
    text-align: center;
    flex: 0 0 auto;
}

.process-num {
    width: 50px;
    height: 50px;
    background: var(--secondary-cyan);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.demo-process-step p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    max-width: 150px;
}

.demo-process-arrow {
    font-size: 2rem;
    color: var(--secondary-cyan);
    margin: 0 10px;
}

/* ======================================
   WHATSAPP PAGE STYLES
   ====================================== */

.whatsapp-page {
    background: var(--light-gray);
}

.whatsapp-hero {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.whatsapp-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.whatsapp-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-promise {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.promise-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.whatsapp-cta-primary {
    margin-bottom: 20px;
}

.btn-whatsapp-hero {
    background: var(--white);
    color: var(--whatsapp-green);
    font-size: 1.4rem;
    padding: 24px 60px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    font-weight: 700;
}

.btn-whatsapp-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.cta-subtext {
    font-size: 1.05rem;
    margin-top: 15px;
    opacity: 0.95;
}

/* Trust Mini */
.whatsapp-trust-mini {
    padding: 50px 0;
    background: var(--white);
}

.trust-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-mini-item {
    text-align: center;
}

.trust-mini-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--whatsapp-green);
    margin-bottom: 10px;
}

.trust-mini-label {
    display: block;
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Problem Section */
.whatsapp-problem {
    padding: 60px 0;
    background: var(--light-gray);
}

.problem-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.problem-item-simple {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.problem-item-simple p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* How It Works Simple */
.whatsapp-how {
    padding: 80px 0;
    background: var(--white);
}

.how-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.how-simple-step {
    text-align: center;
}

.step-number-large {
    width: 70px;
    height: 70px;
    background: var(--secondary-cyan);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.how-simple-step h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.how-simple-step p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Mockups WhatsApp Page */
.mockups-section-wa {
    margin-top: 60px;
    padding: 50px;
    background: var(--light-gray);
    border-radius: 16px;
}

.mockups-title-wa {
    font-size: 2rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.mockups-grid-wa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    justify-items: center;
}

.mockup-item-wa {
    text-align: center;
}

.mockup-phone-wa {
    width: 280px;
    height: 560px;
    border: 12px solid #333;
    border-radius: 36px;
    background: #000;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin: 0 auto 20px;
}

.mockup-screen-wa {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    padding: 20px;
}

.mockup-caption-wa {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.whatsapp-mockup-wa {
    background: #ECE5DD;
    padding: 20px 10px;
}

.chat-bubble-wa {
    padding: 12px 16px;
    border-radius: 18px;
    margin: 8px;
    max-width: 70%;
    font-size: 14px;
    line-height: 1.4;
    clear: both;
}

.chat-in-wa {
    background: #fff;
    color: #000;
    float: left;
    border-bottom-left-radius: 4px;
}

.chat-out-wa {
    background: #DCF8C6;
    color: #000;
    float: right;
    border-bottom-right-radius: 4px;
}

.calendar-mockup-wa {
    padding: 30px 20px;
}

.calendar-event-wa {
    background: linear-gradient(135deg, #f0f9ff, #ffffff);
    border-left: 4px solid var(--secondary-cyan);
    padding: 20px;
    border-radius: 8px;
}

.event-time-wa {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 8px;
}

.event-title-wa {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-patient-wa {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.event-status-wa {
    color: var(--whatsapp-green);
    font-weight: 600;
    font-size: 1rem;
}

.telegram-mockup-wa {
    padding: 30px 20px;
    background: #F4F4F5;
}

.telegram-alert-wa {
    background: #FFF3CD;
    border-left: 4px solid #FFC107;
    padding: 20px;
    border-radius: 8px;
}

.alert-icon-wa {
    font-size: 2rem;
    margin-bottom: 10px;
}

.alert-text-wa {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #333;
}

.alert-time-wa {
    font-size: 0.85rem;
    color: #666;
}

.mockups-note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: #999;
    font-size: 0.9rem;
}

/* Sectors Simple */
.whatsapp-sectors {
    padding: 60px 0;
    background: var(--light-gray);
}

.sectors-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sector-simple {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.sector-icon-simple {
    font-size: 3rem;
    margin-bottom: 15px;
}

.sector-simple h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.sector-simple p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Testimonial Single */
.whatsapp-testimonial {
    padding: 60px 0;
    background: var(--white);
}

.testimonial-single {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 50px;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-cyan);
}

.testimonial-quote-large {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author-large {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* Pricing Simple */
.whatsapp-pricing {
    padding: 60px 0;
    background: var(--light-gray);
}

.pricing-simple {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.pricing-simple p {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-simple-note {
    font-size: 1rem;
    color: var(--dark-gray);
    font-style: italic;
}

/* Final CTA */
.whatsapp-cta-final {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.cta-final-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-final-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-primary {
    margin-bottom: 30px;
}

.btn-whatsapp-final {
    background: var(--whatsapp-green);
    color: var(--white);
    font-size: 1.3rem;
    padding: 20px 50px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-final:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.cta-divider-large {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin: 30px 0;
    font-weight: 500;
}

.cta-final-secondary {
    margin-bottom: 60px;
}

.btn-calendar-secondary {
    background: var(--primary-blue);
    color: var(--white);
    font-size: 1.1rem;
    padding: 16px 40px;
}

.btn-calendar-secondary:hover {
    background: #0d3e6b;
    transform: translateY(-2px);
}

.calendly-section-wa {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .hero {
        padding: 60px 0 50px;
    }
    
    .hero-hook {
        font-size: 1.2rem;
    }
    
    .hero-title,
    .whatsapp-title,
    .demo-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-warning {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-small {
        font-size: 1.6rem;
    }
    
    .mid-cta-title {
        font-size: 1.6rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        font-size: 28px;
    }
    
    .trust-stats-box {
        gap: 40px;
    }
    
    .about-intro p,
    .about-closing p {
        font-size: 1.1rem;
    }
    
    .comparison-table,
    .sectors-grid,
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
    
    .mockup-phone,
    .mockup-phone-wa {
        width: 240px;
        height: 480px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .btn-whatsapp-hero,
    .btn-whatsapp-final {
        font-size: 1.2rem;
        padding: 18px 40px;
    }
    
    .demo-form-wrapper {
        padding: 30px;
    }
    
    .demo-process {
        flex-direction: column;
    }
    
    .demo-process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .pain-grid,
    .solution-steps,
    .cases-grid,
    .services-grid,
    .trust-bar,
    .pricing-tiers {
        grid-template-columns: 1fr;
    }
    
    .hero-results,
    .whatsapp-promise {
        flex-direction: column;
        align-items: center;
    }
    
    .result-badge,
    .promise-badge {
        width: 100%;
        text-align: center;
    }
}

/* ======================================
   ANIMATIONS & UTILITIES
   ====================================== */

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--secondary-cyan);
    color: var(--primary-blue);
}

/* Focus styles for accessibility */
button:focus,
a:focus,
select:focus {
    outline: 2px solid var(--secondary-cyan);
    outline-offset: 2px;
}


/* ======================================
   ADDITIONAL WHATSAPP PAGE STYLES
   ====================================== */

/* Outcomes Badges (Hero) */
.whatsapp-outcomes {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.outcome-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

/* Secondary CTA in Hero */
.whatsapp-cta-secondary-hero {
    margin-top: 20px;
}

.btn-link-secondary {
    color: var(--white);
    text-decoration: underline;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.btn-link-secondary:hover {
    opacity: 0.8;
}

/* Sectors Simple Label */
.whatsapp-sectors-simple {
    padding: 30px 0;
    background: var(--white);
    text-align: center;
}

.sectors-label {
    font-size: 1.15rem;
    color: var(--dark-gray);
}

.sectors-label strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* How Subtitle */
.how-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Sectors Detailed Grid */
.whatsapp-sectors-detailed {
    padding: 80px 0;
    background: var(--light-gray);
}

.sectors-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.sector-detailed {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.sector-icon-large {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.sector-detailed h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.sector-problems {
    list-style: none;
    margin-bottom: 25px;
}

.sector-problems li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    color: var(--dark-gray);
}

.sector-problems li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.3rem;
}

.sector-result {
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
    font-weight: 600;
    color: var(--whatsapp-green);
    font-size: 1.05rem;
    text-align: center;
}

/* Testimonials Simple */
.whatsapp-testimonials {
    padding: 60px 0;
    background: var(--white);
}

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

.testimonial-card-simple {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-cyan);
}

.testimonial-quote-simple {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author-simple {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

/* Cases Simple */
.whatsapp-cases {
    padding: 60px 0;
    background: var(--light-gray);
}

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

.case-card-simple {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.case-flag-large {
    font-size: 3rem;
    margin-bottom: 15px;
    text-align: center;
}

.case-card-simple h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.case-section-simple {
    margin-bottom: 20px;
}

.case-section-simple strong {
    color: var(--primary-blue);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.case-section-simple p {
    line-height: 1.6;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* Includes Section - NEW */
.whatsapp-includes {
    padding: 60px 0;
    background: var(--white);
}

.includes-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 50px;
    border-radius: 12px;
}

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

.includes-list li {
    padding: 18px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

.includes-list li:last-child {
    border-bottom: none;
}

.include-icon {
    color: var(--whatsapp-green);
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.includes-note {
    font-size: 1rem;
    color: var(--dark-gray);
    font-style: italic;
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #ddd;
}

/* CTA Final Microcopy */
.cta-final-microcopy {
    font-size: 1.05rem;
    color: var(--dark-gray);
    margin-top: 15px;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .whatsapp-outcomes {
        flex-direction: column;
        align-items: center;
    }
    
    .outcome-badge {
        width: 100%;
        text-align: center;
    }
    
    .sectors-detailed-grid,
    .testimonials-grid-simple,
    .cases-simple-grid {
        grid-template-columns: 1fr;
    }
    
    .includes-box {
        padding: 30px;
    }
}


/* ======================================
   ADDITIONAL STYLES FOR UPDATES
   ====================================== */

/* Hero Countries Line */
.hero-countries {
    font-size: 1.1rem;
    margin-top: 20px;
    opacity: 0.9;
    font-weight: 500;
}

/* Trust Stats with Icons */
.stat-icon {
    display: block;
    font-size: 3rem;
    margin-bottom: 15px;
}

.trust-stat .stat-label {
    font-size: 1rem;
    line-height: 1.5;
}

/* WhatsApp Countries Line */
.whatsapp-countries {
    font-size: 1.1rem;
    margin: 25px 0 35px;
    opacity: 0.95;
}

.whatsapp-countries strong {
    font-weight: 700;
}

/* Calendly Promise (Demo page) */
.calendly-promise {
    background: #f0f9ff;
    border-left: 4px solid var(--secondary-cyan);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.calendly-promise .promise-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--primary-blue);
    font-weight: 500;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-countries,
    .whatsapp-countries {
        font-size: 1rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .calendly-promise .promise-text {
        font-size: 1rem;
    }
}


/* ======================================
   ADDITIONAL STYLES - PREGUNTAS Y PRECIOS
   ====================================== */

/* Hero Mini Block (Homepage) */
.hero-mini-block {
    padding: 50px 0;
    background: var(--light-gray);
    text-align: center;
}

.mini-block-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    border-left: 5px solid var(--secondary-cyan);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.mini-block-title {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.mini-block-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

/* Demo - What You See & Problems Sections */
.demo-what-you-see,
.demo-problems {
    padding: 60px 0;
    background: var(--white);
}

.demo-problems {
    background: var(--light-gray);
}

.demo-bullets {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 40px auto 0;
}

.demo-bullet {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--whatsapp-green);
}

.demo-problems .demo-bullet {
    background: var(--white);
    border-left-color: var(--warning-red);
}

.bullet-icon {
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.demo-bullet p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin: 0;
}

.demo-what-you-see .bullet-icon {
    color: var(--whatsapp-green);
}

.demo-problems .bullet-icon {
    color: var(--warning-red);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mini-block-content {
        padding: 30px 20px;
    }
    
    .mini-block-title {
        font-size: 1.5rem;
    }
    
    .mini-block-text {
        font-size: 1.05rem;
    }
    
    .demo-bullet {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
}


/* ======================================
   "NO SOLO AGENDA" SECTION (Homepage)
   ====================================== */

.not-just-booking {
    padding: 50px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-top: 3px solid var(--secondary-cyan);
    border-bottom: 3px solid var(--secondary-cyan);
}

.not-just-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.not-just-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.not-just-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    font-weight: 500;
}

/* ======================================
   DEMO PAGE - NEW BLOCKS
   ====================================== */

.demo-what-you-see,
.demo-problems {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 5px solid var(--secondary-cyan);
}

.demo-section-title {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.demo-what-list,
.demo-problems-list {
    list-style: none;
    margin: 0;
}

.demo-what-list li,
.demo-problems-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.demo-what-list li {
    border-bottom: 1px solid #ddd;
}

.demo-what-list li:last-child,
.demo-problems-list li:last-child {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .not-just-title {
        font-size: 1.6rem;
    }
    
    .not-just-text {
        font-size: 1.05rem;
    }
    
    .demo-section-title {
        font-size: 1.4rem;
    }
    
    .demo-what-list li,
    .demo-problems-list li {
        font-size: 1rem;
    }
}


/* ======================================
   LOGO CLICKABLE
   ====================================== */

.logo a {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo a:focus {
    outline: 2px solid var(--secondary-cyan);
    outline-offset: 4px;
    border-radius: 4px;
}


/* ======================================
   FIX: CALENDLY WHITE RECTANGLE
   ====================================== */

/* Ensure Calendly section takes no space when hidden */
.calendly-section-wa {
    transition: all 0.3s ease;
}

.calendly-section-wa[style*="display: none"] {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Prevent Calendly widget from reserving space before load */
.calendly-inline-widget {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.calendly-inline-widget:empty {
    display: none !important;
    height: 0 !important;
}

/* Ensure no white space at bottom of pages */
.whatsapp-cta-final {
    margin-bottom: 0;
}

.footer-simple {
    margin-top: 0;
}


/* ======================================
   NEW ELEMENTS FROM ASSESSMENT CHANGES
   ====================================== */

/* WhatsApp page - Key differentiator message */
.whatsapp-key-message {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(0, 204, 204, 0.08));
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    margin: 1.5rem 0;
    text-align: left;
}

/* Demo page - Traffic control line */
.demo-traffic-control {
    font-size: 0.9rem;
    color: #666;
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.demo-traffic-control a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.demo-traffic-control a:hover {
    text-decoration: underline;
}

/* Demo page - Countries line */
.demo-countries-line {
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.5rem;
}

/* Demo page - Promise line after form */
.demo-promise-line {
    font-size: 0.95rem;
    color: #555;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 204, 204, 0.05));
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    text-align: center;
    border: 1px dashed rgba(0, 102, 204, 0.3);
}


/* ======================================
   COUNTRY SELECTOR & PRICING STYLES
   ====================================== */

/* Pricing Wrapper */
.pricing-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* INDEX PAGE - Country Selector Tabs */
.country-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.country-tab {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.country-tab:hover {
    border-color: #0F4C81;
    background: rgba(15, 76, 129, 0.05);
}

.country-tab.active {
    background: #0F4C81;
    color: #ffffff;
    border-color: #0F4C81;
}

/* WHATSAPP & DEMO PAGE - Discrete Country Links */
.country-selector-discrete {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 15px;
    color: #555;
}

.country-link {
    background: none;
    border: 2px solid transparent;
    color: #0F4C81;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin: 0 2px;
}

.country-link:hover {
    background: rgba(15, 76, 129, 0.1);
}

.country-link.active {
    font-weight: 700;
    background: #0F4C81;
    color: #ffffff;
    border-color: #0F4C81;
}

.country-divider {
    color: #ccc;
    margin: 0 5px;
}

/* Early-Adopter Offer Block - INDEX (LARGE) */
.pricing-early-adopter {
    background: linear-gradient(135deg, #e8f4fc 0%, #e0f7f7 100%);
    border: 3px solid #0F4C81;
    border-radius: 16px;
    padding: 30px;
    margin: 25px auto;
    max-width: 650px;
    text-align: center;
    position: relative;
}

.early-badge {
    background: #0F4C81;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.early-limit {
    font-size: 16px;
    color: #e63946;
    font-weight: 700;
    margin-bottom: 15px;
}

.early-price {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.price-early {
    font-size: 32px;
    font-weight: 800;
    color: #0F4C81;
}

.price-standard-crossed,
.price-crossed {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
    font-size: 18px;
}

.price-saving {
    color: #2a9d8f;
    font-weight: 700;
    margin-left: 10px;
    font-size: 16px;
}

.early-monthly {
    font-size: 18px;
    color: #444;
    margin-bottom: 15px;
}

.early-condition {
    font-size: 14px;
    color: #666;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
    padding-top: 15px;
    border-top: 1px dashed #ccc;
}

/* Standard Pricing Block - INDEX */
.pricing-standard {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 20px auto;
    max-width: 650px;
}

.pricing-standard-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

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

.pricing-item {
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid #e0e0e0;
}

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

.pricing-detail {
    color: #777;
    font-size: 14px;
}

/* WHATSAPP & DEMO PAGE - Compact Pricing */
.pricing-early-adopter-compact {
    background: linear-gradient(135deg, #e8f4fc 0%, #e0f7f7 100%);
    border: 2px solid #0F4C81;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.early-badge-small {
    font-size: 14px;
    font-weight: 700;
    color: #0F4C81;
    margin-bottom: 10px;
    background: rgba(15, 76, 129, 0.1);
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
}

.early-price-compact {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.early-price-compact strong {
    font-size: 24px;
    color: #0F4C81;
    font-weight: 800;
}

.early-condition-compact {
    font-size: 13px;
    color: #666;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
}

.pricing-standard-compact {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.standard-title-compact {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    font-weight: 600;
}

.standard-price-compact {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
}

/* DEMO PAGE - Pricing linked to form */
.demo-pricing-link-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    background: #fff3cd;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ffc107;
}

.demo-early-adopter {
    background: linear-gradient(135deg, #e8f4fc 0%, #e0f7f7 100%);
    border: 2px solid #0F4C81;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.early-badge-demo {
    font-size: 14px;
    font-weight: 700;
    color: #0F4C81;
    margin-bottom: 10px;
    background: rgba(15, 76, 129, 0.1);
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
}

.early-price-demo {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.early-price-demo strong {
    font-size: 24px;
    color: #0F4C81;
    font-weight: 800;
}

.early-condition-demo {
    font-size: 13px;
    color: #666;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
}

.demo-standard-title {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .country-selector {
        flex-direction: column;
        align-items: center;
    }
    
    .country-tab {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }
    
    .pricing-early-adopter {
        padding: 20px 15px;
        margin: 20px 10px;
    }
    
    .price-early {
        font-size: 26px;
    }
    
    .pricing-wrapper {
        padding: 20px 15px;
        margin: 0 10px;
    }
}


/* Additional pricing line styles */
.pricing-line {
    padding: 8px 0;
    font-size: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

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

/* ======================================
   GUARANTEE SECTIONS
   ====================================== */

/* INDEX - Full Guarantee Box */
.guarantee-box {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.08), rgba(0, 102, 204, 0.08));
    border: 2px solid #2a9d8f;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    text-align: center;
}

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

.guarantee-title {
    color: #2a9d8f;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.guarantee-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.guarantee-condition {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* WHATSAPP - Short Guarantee */
.guarantee-short {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-short-text {
    font-size: 0.85rem;
    color: #2a9d8f;
    margin: 0;
    text-align: center;
}

.guarantee-link {
    color: var(--primary-blue);
    font-size: 0.85rem;
    text-decoration: underline;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    transition: all 0.2s;
}

.guarantee-link:hover {
    color: var(--secondary-cyan);
    background: rgba(0, 102, 204, 0.05);
    border-radius: 4px;
}

/* WHATSAPP - Guarantee Conditions Section */
.guarantee-conditions-section {
    background: #f8f9fa;
    padding: 1rem 0;
}

.guarantee-conditions-text {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin: 0;
}

/* DEMO - Guarantee Box */
.guarantee-box-demo {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.06), rgba(0, 102, 204, 0.06));
    border: 1px solid rgba(42, 157, 143, 0.4);
    border-radius: 10px;
    padding: 1.25rem;
    margin-top: 1.5rem;
    text-align: center;
}

.guarantee-box-demo .guarantee-icon {
    font-size: 1.5rem;
}

.guarantee-box-demo .guarantee-title {
    font-size: 1rem;
}

.guarantee-box-demo .guarantee-text {
    font-size: 0.9rem;
}

.guarantee-box-demo .guarantee-condition {
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .guarantee-box {
        padding: 1.25rem 1rem;
    }
    
    .guarantee-short {
        font-size: 0.8rem;
    }
}


/* Footer brand text (alternative to logo) */
.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 1rem;
}

/* ======================================
   FOOTER LEGAL LINKS
   ====================================== */

.footer-legal {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-legal a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

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

.footer-divider {
    color: rgba(255,255,255,0.4);
    margin: 0 0.5rem;
}

.footer-legal-simple {
    margin-top: 0.75rem;
    font-size: 0.8rem;
}

.footer-legal-simple a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-legal-simple a:hover {
    color: white;
}

.footer-legal-simple span {
    color: rgba(255,255,255,0.4);
    margin: 0 0.35rem;
}

/* ======================================
   SECTION DISCLAIMER (Case Studies)
   ====================================== */

.section-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

/* ======================================
   TRUST MINI BLOCK (WhatsApp page)
   ====================================== */

.trust-mini {
    background: #f8f9fa;
    padding: 1.5rem 0;
}

.trust-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.trust-mini-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.trust-mini-icon {
    font-size: 1.5rem;
}

.trust-mini-content {
    display: flex;
    flex-direction: column;
}

.trust-mini-content strong {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.trust-mini-content span {
    color: #666;
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .trust-mini-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-mini-item {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .trust-mini-content {
        text-align: left;
    }
}

/* ======================================
   GUARANTEE CONDITIONS DETAILED
   ====================================== */

.guarantee-conditions-section {
    background: #f8f9fa;
    padding: 2rem 0;
}

.guarantee-conditions-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.guarantee-conditions-list {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-condition-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.guarantee-condition-item strong {
    color: var(--primary-blue);
}

/* Guarantee mini conditions (demo page) */
.guarantee-conditions-mini {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(42, 157, 143, 0.2);
}

.guarantee-condition-item-mini {
    font-size: 0.8rem;
    color: #555;
    margin: 0.25rem 0;
}

/* ======================================
   DEMO FORM OPTIONAL FIELD
   ====================================== */

.form-group-optional label {
    color: #666;
}

.form-group-optional input {
    border-style: dashed;
}

.field-hint {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.25rem;
    font-style: italic;
}

/* ======================================
   DEMO TRUST SIGNALS ENHANCED
   ====================================== */

.demo-trust-item .trust-title {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.demo-trust-item .trust-benefit {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}


/* ======================================
   LEGAL PAGES STYLES
   ====================================== */

.legal-page {
    padding: 4rem 0;
    background: #fafafa;
    min-height: calc(100vh - 200px);
}

.legal-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    text-align: center;
}

.legal-updated {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-content h2 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-cyan);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

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

.legal-content p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    line-height: 1.7;
    color: #444;
    margin-bottom: 0.5rem;
}

.legal-info-list {
    list-style: none;
    padding-left: 0;
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.legal-info-list li {
    padding: 0.25rem 0;
}

/* Cookie table */
.cookie-table {
    overflow-x: auto;
    margin: 1rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 2rem 0;
    }
    
    .legal-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-title {
        font-size: 1.5rem;
    }
    
    .legal-content h2 {
        font-size: 1.15rem;
    }
}

