﻿/* ===================================================
   Gabinet Diagnostyczny EEG - Oczami Elektroradiologa
   Trendy 2025/2026: Aurora gradient · Glassmorphism · Scroll-reveal
   Uzupelnia css/main.css (Material Design 4)
   =================================================== */

/* ─── ZMIENNE ─────────────────────────────────────── */
:root {
    --eeg-primary:      #0077b6;
    --eeg-primary-dark: #023e8a;
    --eeg-secondary:    #00b4d8;
    --eeg-accent:       #00b894;
    --eeg-warn:         #e17055;
    --eeg-shadow:       0 4px 20px rgba(0, 119, 182, 0.15);
    --eeg-shadow-lg:    0 8px 36px rgba(0, 119, 182, 0.22);
    --eeg-shadow-xl:    0 16px 56px rgba(0, 119, 182, 0.28);
    --eeg-radius:       18px;
    --eeg-radius-sm:    12px;
    --eeg-transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --eeg-glass-bg:     rgba(255, 255, 255, 0.65);
    --eeg-glass-border: rgba(0, 119, 182, 0.18);
}

/* ─── ANIMACJE KEYFRAMES ─────────────────────────── */
@keyframes eeg-gradient-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes eeg-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(40px, -30px) scale(1.08); }
    66%       { transform: translate(-25px, 35px) scale(0.94); }
}
@keyframes eeg-orb-float-r {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(-35px, 25px) scale(1.06); }
    70%       { transform: translate(20px, -40px) scale(0.92); }
}
@keyframes eeg-wave-draw {
    from { stroke-dashoffset: 2000; }
    to   { stroke-dashoffset: 0; }
}
@keyframes eeg-reveal-up {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes eeg-pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0.4); }
    70%  { box-shadow: 0 0 0 14px rgba(0, 119, 182, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0); }
}

/* ─── SCROLL REVEAL ──────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
                transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── HERO (AURORA ANIMATED) ────────────────────── */
.eeg-hero {
    min-height: 72vh;
    background: linear-gradient(-45deg, #023e8a, #0077b6, #005f99, #00b4d8, #0090c3, #023e8a);
    background-size: 400% 400%;
    animation: eeg-gradient-shift 10s ease infinite;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 110px 24px 90px;
    position: relative; overflow: hidden;
}
.eeg-hero::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0;
    height: 80px;
    background: var(--md-sys-color-background);
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* Aurora orbs */
.eeg-aurora {
    position: absolute; inset: 0;
    overflow: hidden; pointer-events: none; z-index: 0;
}
.eeg-orb {
    position: absolute; border-radius: 50%;
    filter: blur(70px); opacity: 0.28;
}
.eeg-orb-1 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, #48cae4, #00b4d8);
    top: -120px; left: -80px;
    animation: eeg-orb-float 14s ease-in-out infinite;
}
.eeg-orb-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #90e0ef, #00b4d8);
    top: 30%; right: -60px;
    animation: eeg-orb-float-r 11s ease-in-out infinite;
}
.eeg-orb-3 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, #caf0f8, #48cae4);
    bottom: 40px; left: 35%;
    animation: eeg-orb-float 17s ease-in-out infinite reverse;
}

/* Animated EEG wave in hero */
.eeg-hero-wave {
    position: absolute; inset: 0;
    opacity: 0.12; pointer-events: none; z-index: 0;
}
.eeg-hero-wave polyline {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: eeg-wave-draw 3.5s ease forwards 0.5s;
}

.eeg-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff; padding: 7px 20px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 500;
    margin-bottom: 28px; position: relative; z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

.eeg-hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 800; color: #fff;
    line-height: 1.15; margin-bottom: 22px;
    position: relative; z-index: 1;
    text-shadow: 0 2px 24px rgba(0,0,0,0.25);
    letter-spacing: -0.5px;
}
.eeg-hero-title span {
    color: transparent;
    background: linear-gradient(90deg, #90e0ef, #caf0f8);
    -webkit-background-clip: text;
    background-clip: text;
}

.eeg-hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255,255,255,0.9); max-width: 640px;
    margin: 0 auto 38px; line-height: 1.75;
    position: relative; z-index: 1;
}

.eeg-hero-cta {
    display: flex; gap: 14px; flex-wrap: wrap;
    justify-content: center;
    position: relative; z-index: 1; margin-bottom: 56px;
}

.eeg-btn-primary {
    display: inline-flex; align-items: center; gap: 9px;
    background: #fff; color: var(--eeg-primary-dark);
    padding: 15px 30px; border-radius: 50px;
    font-size: 1rem; font-weight: 700;
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
    transition: var(--eeg-transition); text-decoration: none;
}
.eeg-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.3);
    color: var(--eeg-primary-dark);
}

.eeg-btn-secondary {
    display: inline-flex; align-items: center; gap: 9px;
    border: 2px solid rgba(255,255,255,0.65); color: #fff;
    padding: 13px 28px; border-radius: 50px;
    font-size: 1rem; font-weight: 600;
    transition: var(--eeg-transition); text-decoration: none;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
}
.eeg-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff; color: #fff;
    transform: translateY(-2px);
}

.eeg-hero-stats {
    display: flex; gap: 40px; flex-wrap: wrap;
    justify-content: center; position: relative; z-index: 1;
}
.eeg-stat { text-align: center; color: rgba(255,255,255,0.92); }
.eeg-stat .num {
    font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1;
    text-shadow: 0 0 20px rgba(144, 224, 239, 0.5);
}
.eeg-stat .lbl { font-size: 0.78rem; margin-top: 5px; opacity: 0.82; }
.eeg-stat-div {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.3), transparent);
    align-self: stretch;
}

/* ─── SEKCJA NAWIGACYJNA ─────────────────────────── */
.eeg-subnav {
    display: flex; gap: 10px; flex-wrap: wrap;
    justify-content: center;
    padding: 16px 24px;
    background: rgba(0, 55, 100, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 180, 216, 0.25);
    position: sticky; top: 66px; z-index: 900;
}
.eeg-subnav a {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 18px; border-radius: 50px;
    font-size: 0.86rem; font-weight: 500;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: var(--eeg-transition);
    border: 1.5px solid transparent;
}
.eeg-subnav a:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}
.eeg-subnav a.active {
    background: var(--eeg-secondary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 2px 12px rgba(0, 180, 216, 0.45);
}

/* ─── SEKCJA NIEBIESKA ───────────────────────────── */
.eeg-section-blue {
    background: linear-gradient(160deg, #f0f8ff 0%, #e3f4fc 50%, #ebf7fd 100%);
}
.eeg-section-deep {
    background: linear-gradient(135deg, #0a3a6e 0%, #0077b6 60%, #005f8a 100%);
    color: #fff;
}

/* ─── GRADIENT TYTUŁY ────────────────────────────── */
.eeg-gradient-title {
    background: linear-gradient(135deg, var(--eeg-primary-dark) 0%, var(--eeg-primary) 50%, var(--eeg-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    display: inline-block;
}

/* ─── GLASSMORPHISM KARTY ────────────────────────── */
.eeg-glass-card {
    background: var(--eeg-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--eeg-glass-border);
    border-radius: var(--eeg-radius);
    box-shadow: 0 8px 32px rgba(0, 119, 182, 0.12),
                inset 0 1px 0 rgba(255,255,255,0.8);
    transition: var(--eeg-transition);
}
.eeg-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 119, 182, 0.2),
                inset 0 1px 0 rgba(255,255,255,0.9);
    border-color: rgba(0, 119, 182, 0.3);
}
.eeg-glass-card .eeg-ind-icon { color: var(--eeg-primary); }
.eeg-glass-card .eeg-ind-title { color: var(--eeg-primary-dark); }

/* ─── KARTY WSKAZAŃ ──────────────────────────────── */
.eeg-ind-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 119, 182, 0.15);
    border-top: 4px solid var(--eeg-primary);
    border-radius: var(--eeg-radius);
    padding: 30px 26px;
    box-shadow: var(--eeg-shadow);
    transition: var(--eeg-transition);
    display: flex; flex-direction: column;
}
.eeg-ind-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--eeg-shadow-xl);
    border-top-color: var(--eeg-secondary);
    background: rgba(255,255,255,0.9);
}
.eeg-ind-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,119,182,0.12), rgba(0,180,216,0.08));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--eeg-primary);
    margin-bottom: 18px;
    border: 1px solid rgba(0,119,182,0.15);
}
.eeg-ind-title {
    font-size: 1.05rem; font-weight: 700;
    color: var(--eeg-primary-dark); margin-bottom: 10px;
}
.eeg-ind-text {
    color: var(--md-sys-color-on-surface-variant);
    font-size: 0.93rem; line-height: 1.7; flex: 1;
}

/* ─── KARTY ZABURZEŃ ─────────────────────────────── */
.eeg-disorder {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--eeg-radius);
    border: 1px solid rgba(0, 119, 182, 0.15);
    border-top: 4px solid var(--eeg-primary);
    padding: 34px;
    margin-bottom: 24px;
    box-shadow: var(--eeg-shadow);
    transition: var(--eeg-transition);
}
.eeg-disorder:hover {
    box-shadow: var(--eeg-shadow-xl);
    border-top-color: var(--eeg-secondary);
    transform: translateY(-2px);
}
.eeg-disorder-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.eeg-disorder-icon {
    width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--eeg-primary) 0%, var(--eeg-secondary) 100%);
    color: #fff; font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,119,182,0.35);
}
.eeg-disorder-title { font-size: 1.4rem; font-weight: 700; color: var(--eeg-primary-dark); }
.eeg-disorder p { color: var(--md-sys-color-on-surface-variant); line-height: 1.75; font-size: 1rem; }
.eeg-disorder ul { list-style: none; padding: 0; margin: 12px 0 20px; }
.eeg-disorder ul li {
    display: flex; align-items: baseline; gap: 10px;
    color: var(--md-sys-color-on-surface-variant); font-size: 0.95rem;
    padding: 5px 0; line-height: 1.5;
}
.eeg-disorder ul li::before {
    content: '';
    width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--eeg-primary), var(--eeg-secondary));
    margin-top: 1px;
}
.eeg-symp-label {
    font-weight: 700; color: var(--eeg-primary);
    margin: 16px 0 8px; display: flex; align-items: center; gap: 8px;
    font-size: 0.97rem;
}

/* ─── LISTA USŁUG ─────────────────────────────────── */
.eeg-service {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--eeg-radius-sm);
    padding: 22px 26px;
    border: 1px solid rgba(0, 119, 182, 0.14);
    border-top: 3px solid var(--eeg-primary);
    display: flex; align-items: flex-start; gap: 18px;
    box-shadow: var(--eeg-shadow); margin-bottom: 14px;
    transition: var(--eeg-transition);
}
.eeg-service:hover {
    transform: translateY(-3px);
    box-shadow: var(--eeg-shadow-lg);
    border-top-color: var(--eeg-secondary);
    background: rgba(255,255,255,0.92);
}
.eeg-service-icon {
    font-size: 1.5rem; color: var(--eeg-primary); flex-shrink: 0;
    width: 30px; text-align: center; margin-top: 2px;
}
.eeg-service-title { font-weight: 700; color: var(--eeg-primary-dark); margin-bottom: 4px; font-size: 1.05rem; }
.eeg-service-desc { color: var(--md-sys-color-on-surface-variant); font-size: 0.92rem; line-height: 1.6; }

/* ─── FAQ AKORDEON ────────────────────────────────── */
.eeg-faq {
    margin-bottom: 10px; border-radius: var(--eeg-radius-sm); overflow: hidden;
    box-shadow: var(--eeg-shadow);
    border: 1px solid rgba(0, 119, 182, 0.12);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.eeg-faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; cursor: pointer; gap: 16px;
    background: transparent;
    transition: var(--eeg-transition);
}
.eeg-faq-q:hover { background: rgba(0, 119, 182, 0.05); }
.eeg-faq.open { border-color: rgba(0, 119, 182, 0.3); }
.eeg-faq.open .eeg-faq-q {
    background: linear-gradient(135deg, rgba(0,55,100,0.95) 0%, rgba(0,119,182,0.92) 100%);
}
.eeg-faq-qt {
    display: flex; align-items: center; gap: 12px;
    font-weight: 600; color: var(--eeg-primary-dark); font-size: 0.97rem;
}
.eeg-faq.open .eeg-faq-qt { color: #fff; }
.eeg-faq-chevron { color: var(--eeg-primary); transition: transform 0.3s; flex-shrink: 0; }
.eeg-faq.open .eeg-faq-chevron { transform: rotate(180deg); color: #fff; }
.eeg-faq-a {
    max-height: 0; overflow: hidden; padding: 0 24px;
    background: rgba(240, 248, 255, 0.8);
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.eeg-faq.open .eeg-faq-a { max-height: 500px; padding: 18px 24px 24px; }
.eeg-faq-a p { color: #1a3a5c; line-height: 1.8; font-size: 0.97rem; margin: 0; }

/* ─── KONTAKT ─────────────────────────────────────── */
.eeg-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px; align-items: start;
}
@media (max-width: 720px) { .eeg-contact-grid { grid-template-columns: 1fr; } }

.eeg-contact-item {
    display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
}
.eeg-contact-item:last-child { margin-bottom: 0; }
.eeg-contact-ico {
    width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--eeg-primary) 0%, var(--eeg-secondary) 100%);
    color: #fff; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(0,119,182,0.3);
    animation: eeg-pulse-ring 3s ease-out infinite;
}

/* ─── CTA BOX ─────────────────────────────────────── */
.eeg-cta {
    background: linear-gradient(-45deg, #023e8a, #0077b6, #005f8a, #00b4d8);
    background-size: 300% 300%;
    animation: eeg-gradient-shift 8s ease infinite;
    border-radius: var(--eeg-radius); padding: 56px 40px;
    text-align: center; color: #fff;
    box-shadow: var(--eeg-shadow-xl); position: relative; overflow: hidden;
}
.eeg-cta::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 320px; height: 320px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.eeg-cta::after {
    content: ''; position: absolute; bottom: -60px; left: -60px;
    width: 260px; height: 260px; border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
.eeg-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 14px;
    position: relative; font-weight: 800;
}
.eeg-cta p { opacity: 0.9; margin-bottom: 30px; font-size: 1.05rem; position: relative; line-height: 1.7; }
.eeg-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── TESTIMONIALS ────────────────────────────────── */
.eeg-testimonial {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 119, 182, 0.14);
    border-radius: var(--eeg-radius); padding: 30px;
    box-shadow: var(--eeg-shadow);
    position: relative;
    transition: var(--eeg-transition);
}
.eeg-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--eeg-shadow-lg);
    border-color: rgba(0, 119, 182, 0.28);
}
.eeg-testimonial::before {
    content: '"'; position: absolute; top: 10px; right: 18px;
    font-size: 5.5rem;
    color: rgba(0, 119, 182, 0.1);
    font-family: Georgia, serif; line-height: 1;
}
.eeg-stars { color: #f59e0b; margin-bottom: 12px; font-size: 0.95rem; }
.eeg-testimonial-text {
    font-style: italic;
    color: #1a3a5c;
    line-height: 1.75; margin-bottom: 20px; font-size: 0.97rem;
}
.eeg-author { display: flex; align-items: center; gap: 12px; }
.eeg-author-av {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--eeg-primary), var(--eeg-secondary));
    color: #fff; font-weight: 700; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(0,119,182,0.3);
}
.eeg-author-name { font-weight: 700; color: var(--eeg-primary-dark); font-size: 0.93rem; }

/* ─── PAGE HERO (podstrony) ───────────────────────── */
.eeg-page-hero {
    background: linear-gradient(-45deg, #023e8a, #0050a0, #0077b6, #005f99);
    background-size: 300% 300%;
    animation: eeg-gradient-shift 9s ease infinite;
    padding: 88px 24px 56px; text-align: center; color: #fff;
    position: relative; overflow: hidden;
}
.eeg-page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0,180,216,0.2) 0%, transparent 60%);
}
.eeg-page-hero h1 {
    font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin-bottom: 14px;
    font-weight: 800; color: #fff;
    position: relative; z-index: 1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.eeg-page-hero p {
    font-size: 1.05rem; color: rgba(255,255,255,0.9);
    max-width: 640px; margin: 0 auto; line-height: 1.75;
    position: relative; z-index: 1;
}

/* ─── CALL STRIP ──────────────────────────────────── */
.eeg-call-strip {
    background: linear-gradient(90deg, #012a6e 0%, #0077b6 100%);
    padding: 10px 16px;
    display: flex;
    justify-content: center;
    margin-top: 56px;
    position: relative;
    z-index: 10;
}
.eeg-call-btn {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    background: rgba(255,255,255,0.18);
    padding: 10px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.45);
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 0.95rem;
    transition: var(--eeg-transition);
    letter-spacing: 0.2px;
}
.eeg-call-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: #fff;
    transform: translateY(-1px);
    color: #fff;
}

/* ─── FEATURED KAFELEK (polecane.html) ───────────── */
.eeg-featured-banner {
    background: linear-gradient(-45deg, #023e8a, #0077b6, #005f8a, #00b4d8);
    background-size: 300% 300%;
    animation: eeg-gradient-shift 10s ease infinite;
    border-radius: var(--eeg-radius);
    padding: 44px 40px;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: var(--eeg-shadow-xl);
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
}
.eeg-featured-banner::before {
    content: '🧠';
    position: absolute;
    right: -10px; top: -20px;
    font-size: 10rem;
    opacity: 0.07;
    pointer-events: none;
}
.eeg-featured-banner::after {
    content: '';
    position: absolute; bottom: -50px; left: -50px;
    width: 260px; height: 260px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.eeg-featured-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.32);
    color: #fff; padding: 4px 14px; border-radius: 20px;
    font-size: 0.76rem; font-weight: 700; letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}
.eeg-featured-content { flex: 1 1 340px; position: relative; z-index: 1; }
.eeg-featured-content h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800; color: #fff; margin-bottom: 12px;
}
.eeg-featured-content p {
    font-size: 0.97rem; color: rgba(255,255,255,0.9);
    line-height: 1.7; margin-bottom: 22px; max-width: 520px;
}
.eeg-featured-stats {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 24px;
}
.eeg-featured-stat {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    padding: 8px 14px;
    border-radius: 10px; font-size: 0.85rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}
.eeg-featured-buttons {
    display: flex; gap: 12px; flex-wrap: wrap;
    position: relative; z-index: 1;
}


/* ─── CALL STRIP: ukryj na desktopie/tablecie ─────── */
@media (min-width: 601px) {
    .eeg-call-strip { display: none; }
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 860px) {
    .eeg-forwho { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 600px) {
    .eeg-hero { padding: 24px 18px 60px; }
    .eeg-hero-title { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
    .eeg-hero-sub { font-size: 0.95rem; line-height: 1.65; }
    .eeg-badge { font-size: 0.78rem; }
    .eeg-hero-cta { flex-direction: column; align-items: center; gap: 10px; }
    .eeg-hero-cta .btn { width: 100%; max-width: 300px; text-align: center; justify-content: center; }
    .eeg-hero-stats { gap: 14px; flex-wrap: wrap; justify-content: center; }
    .eeg-stat .num { font-size: 1.3rem; }
    .eeg-stat-div { display: none; }
    h2.section-title { font-size: clamp(1.3rem, 5.5vw, 1.7rem); }
    .section-subtitle { font-size: 0.9rem; }
    .eeg-trust-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 18px 16px; }
    .eeg-trust-num { font-size: 1.4rem; }
    .eeg-for-card { padding: 22px 18px; }
    .eeg-for-emoji { font-size: 2.2rem; }
    .eeg-concern { padding: 18px 16px; }
    .eeg-concern-q { font-size: 0.92rem; }
    .eeg-concern-a { font-size: 0.88rem; }
    .eeg-cta h2 { font-size: 1.5rem; }
    .eeg-cta p { font-size: 0.93rem; }
    .eeg-cta-btns { flex-direction: column; gap: 10px; }
    .eeg-cta-btns a { width: 100%; justify-content: center; }
    .eeg-sticky-book { padding: 12px 48px 12px 18px; gap: 10px; }
    .eeg-sticky-book span { font-size: 0.88rem; }
    .eeg-stat-div { display: none; }
    .eeg-disorder { padding: 22px; }
    .eeg-cta { padding: 38px 22px; }
    .eeg-subnav { top: 56px; gap: 6px; padding: 10px 12px; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; }
    .eeg-subnav a { padding: 7px 12px; font-size: 0.8rem; flex-shrink: 0; }
    .eeg-featured-banner { padding: 30px 22px; }
    .eeg-page-hero { padding: 32px 18px 36px; }
    .eeg-cta { padding: 38px 22px; }
    .eeg-orb { display: none; }
    .eeg-forwho { grid-template-columns: 1fr; gap: 14px; }
    .eeg-steps { gap: 20px; }
    .eeg-step { gap: 14px; }
    .eeg-step-num { width: 40px; height: 40px; font-size: 1rem; flex-shrink: 0; }
    .eeg-concerns-grid { grid-template-columns: 1fr; }
    .eeg-prep-grid { grid-template-columns: 1fr; }
}

/* ─── DARK MODE TWEAKS ───────────────────────────── */
[data-theme="dark"] .eeg-glass-card,
[data-theme="dark"] .eeg-ind-card,
[data-theme="dark"] .eeg-disorder,
[data-theme="dark"] .eeg-service,
[data-theme="dark"] .eeg-faq,
[data-theme="dark"] .eeg-testimonial {
    background: rgba(2, 30, 60, 0.55);
    border-color: rgba(0, 180, 216, 0.2);
}
[data-theme="dark"] .eeg-section-blue {
    background: linear-gradient(160deg, #051a2e 0%, #0a2a4a 50%, #06192b 100%);
}
[data-theme="dark"] .eeg-faq-a {
    background: rgba(0, 20, 45, 0.6);
}
[data-theme="dark"] .eeg-faq-a p,
[data-theme="dark"] .eeg-testimonial-text {
    color: rgba(200, 230, 255, 0.85);
}
[data-theme="dark"] .eeg-ind-title,
[data-theme="dark"] .eeg-disorder-title,
[data-theme="dark"] .eeg-service-title,
[data-theme="dark"] .eeg-author-name {
    color: #90d8f0;
}
[data-theme="dark"] .eeg-subnav {
    background: rgba(0, 15, 35, 0.97);
    border-bottom-color: rgba(0, 180, 216, 0.18);
}

/* ─── ELEGANT TYPOGRAPHY ─────────────────────────── */
.eeg-hero-title, .eeg-step-label, .eeg-for-title,
.eeg-disorder-title, .eeg-ind-title, .eeg-service-title,
.eeg-trust-num, .eeg-checklist-title, .eeg-concern-q,
.eeg-featured-content h3, .eeg-cta h2,
.eeg-page-hero h1, .eeg-author-name,
h2.section-title, h2.eeg-gradient-title {
    font-family: 'Plus Jakarta Sans', 'Roboto', sans-serif;
    letter-spacing: -0.2px;
}
/* Gradient text niet zichtbaar op donkere achtergrond */
.eeg-cta .eeg-gradient-title {
    -webkit-background-clip: unset;
    background-clip: unset;
    background: none;
    color: #fff !important;
}
/* Stars color fix */
.eeg-stars { color: #f59e0b; font-size: 1.05rem; letter-spacing: 2px; }

/* ═══════════════════════════════════════════════════
   NOWE KOMPONENTY – PATIENT JOURNEY
   ═══════════════════════════════════════════════════ */

/* ─── QUICKFACTS BAR ─────────────────────────────── */
.eeg-quickfacts {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center; align-items: center;
    padding: 18px 24px;
    background: rgba(1, 42, 110, 0.97);
    border-bottom: 1px solid rgba(0,180,216,0.2);
}
.eeg-quickfact {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.93);
    padding: 7px 16px; border-radius: 50px;
    font-size: 0.84rem; font-weight: 500;
    transition: var(--eeg-transition);
}
.eeg-quickfact i { color: #4ade80; font-size: 0.82rem; flex-shrink: 0; }
.eeg-quickfact:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.3); }

/* ─── TRUST STRIP ────────────────────────────────── */
.eeg-trust-strip {
    display: flex; flex-wrap: wrap; gap: 0;
    justify-content: center; align-items: stretch;
    background: linear-gradient(90deg, #012a6e 0%, #0077b6 50%, #0090c3 100%);
}
.eeg-trust-item {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; text-align: center;
    padding: 22px 32px; flex: 1 1 160px;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.eeg-trust-item:last-child { border-right: none; }
.eeg-trust-num {
    font-size: 2rem; font-weight: 800; color: #fff; line-height: 1;
    text-shadow: 0 0 20px rgba(144,224,239,0.5);
}
.eeg-trust-lbl {
    font-size: 0.76rem; color: rgba(255,255,255,0.78);
    margin-top: 5px; line-height: 1.4; max-width: 110px;
}
@media (max-width: 640px) {
    .eeg-trust-strip { flex-direction: row; }
    .eeg-trust-item { padding: 16px 18px; border-right: 1px solid rgba(255,255,255,0.1); border-bottom: none; }
}

/* ─── STEPS TIMELINE ─────────────────────────────── */
.eeg-steps-wrap {
    max-width: 1050px; margin: 0 auto;
    position: relative;
}
.eeg-steps {
    display: flex; align-items: flex-start;
    justify-content: center; flex-wrap: nowrap;
    gap: 0;
}
.eeg-step {
    flex: 1 1 0; text-align: center;
    padding: 0 8px; position: relative;
    min-width: 0;
}
/* Connector line between steps */
.eeg-step:not(:last-child)::after {
    content: '';
    position: absolute; top: 27px; left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 3px;
    background: linear-gradient(90deg, var(--eeg-primary), var(--eeg-secondary));
    opacity: 0.4;
    border-radius: 2px;
}
.eeg-step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--eeg-primary-dark), var(--eeg-secondary));
    color: #fff; font-size: 1.25rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 6px 20px rgba(0,119,182,0.4);
    position: relative; z-index: 1;
    transition: var(--eeg-transition);
}
.eeg-step:hover .eeg-step-num {
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(0,119,182,0.55);
}
.eeg-step-icon {
    font-size: 1.2rem; color: #fff;
}
.eeg-step-label {
    font-weight: 700; color: var(--eeg-primary-dark);
    font-size: 0.9rem; margin-bottom: 6px; line-height: 1.3;
}
.eeg-step-desc {
    font-size: 0.78rem;
    color: var(--md-sys-color-on-surface-variant);
    line-height: 1.55;
}
@media (max-width: 700px) {
    .eeg-steps { flex-direction: column; align-items: center; gap: 0; }
    .eeg-step { display: flex; align-items: flex-start; gap: 16px; text-align: left; padding: 0 0 24px 0; width: 100%; max-width: 420px; }
    .eeg-step:not(:last-child)::after {
        top: 56px; left: 27px; right: auto;
        width: 3px; height: calc(100% - 56px);
        background: linear-gradient(180deg, var(--eeg-primary), var(--eeg-secondary));
    }
    .eeg-step-num { flex-shrink: 0; margin: 0; }
    .eeg-step-content { padding-top: 8px; }
}

/* ─── FOR-WHO CARDS ──────────────────────────────── */
.eeg-forwho {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 980px; margin: 0 auto;
}
.eeg-for-card {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0,119,182,0.14);
    border-top: 3px solid var(--eeg-primary);
    border-radius: 20px; padding: 30px 24px;
    text-align: center; box-shadow: var(--eeg-shadow);
    transition: var(--eeg-transition); cursor: default;
}
.eeg-for-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--eeg-shadow-xl);
    border-top-color: var(--eeg-secondary);
    background: rgba(255,255,255,0.92);
}
.eeg-for-emoji { font-size: 2.6rem; display: block; margin-bottom: 12px; line-height: 1; }
.eeg-for-title { font-weight: 700; color: var(--eeg-primary-dark); font-size: 0.95rem; margin-bottom: 8px; line-height: 1.35; }
.eeg-for-text { font-size: 0.82rem; color: var(--md-sys-color-on-surface-variant); line-height: 1.6; }

/* ─── PREPARATION CHECKLIST ──────────────────────── */
.eeg-prep-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; max-width: 920px; margin: 0 auto;
}
@media (max-width: 680px) { .eeg-prep-grid { grid-template-columns: 1fr; } }

.eeg-checklist-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0,184,148,0.2);
    border-radius: var(--eeg-radius); padding: 26px;
    box-shadow: var(--eeg-shadow);
}
.eeg-checklist-card.dont {
    border-color: rgba(225,112,85,0.2);
}
.eeg-checklist-title {
    font-size: 1rem; font-weight: 800; margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0,119,182,0.1);
}
.eeg-checklist-card.dont .eeg-checklist-title {
    border-bottom-color: rgba(225,112,85,0.15);
}
.eeg-checklist-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem; line-height: 1.5; color: #1a3a5c;
}
.eeg-checklist-item:last-child { border-bottom: none; padding-bottom: 0; }
.eeg-ci-ico {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; margin-top: 1px;
}
.eeg-ci-ico.ok { background: rgba(0,184,148,0.12); color: var(--eeg-accent); }
.eeg-ci-ico.no { background: rgba(225,112,85,0.12); color: var(--eeg-warn); }

/* ─── CONCERN CARDS (pre-emptive FAQ) ───────────── */
.eeg-concerns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px; max-width: 1100px; margin: 0 auto;
}
.eeg-concern {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0,119,182,0.12);
    border-radius: var(--eeg-radius); padding: 22px;
    box-shadow: var(--eeg-shadow); transition: var(--eeg-transition);
    display: flex; flex-direction: column; gap: 10px;
}
.eeg-concern:hover { transform: translateY(-3px); box-shadow: var(--eeg-shadow-lg); border-color: rgba(0,119,182,0.25); }
.eeg-concern-q {
    display: flex; align-items: flex-start; gap: 10px;
    font-weight: 700; color: var(--eeg-primary-dark); font-size: 0.95rem;
}
.eeg-concern-q i { color: var(--eeg-secondary); flex-shrink: 0; margin-top: 3px; font-size: 1rem; }
.eeg-concern-a {
    font-size: 0.88rem; color: var(--md-sys-color-on-surface-variant);
    line-height: 1.65; margin: 0;
    padding-left: 26px;
}
.eeg-concern-a strong { color: var(--eeg-primary-dark); }

/* ─── STICKY BOOKING BAR ─────────────────────────── */
.eeg-sticky-book {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
    background: linear-gradient(90deg, #012a6e, #0077b6);
    display: flex; align-items: center; justify-content: center;
    gap: 16px; padding: 12px 20px; flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.eeg-sticky-book.visible { transform: translateY(0); }
.eeg-sticky-book span {
    color: rgba(255,255,255,0.88); font-size: 0.9rem;
    display: flex; align-items: center; gap: 8px;
}
.eeg-sticky-book a {
    color: #fff; font-weight: 700; text-decoration: none;
    background: rgba(255,255,255,0.18); border: 1.5px solid rgba(255,255,255,0.4);
    padding: 9px 20px; border-radius: 50px; font-size: 0.92rem;
    display: inline-flex; align-items: center; gap: 7px;
    transition: var(--eeg-transition);
}
.eeg-sticky-book a:hover { background: rgba(255,255,255,0.3); transform: translateY(-1px); }
.eeg-sticky-book a.wa { background: rgba(37,211,102,0.22); border-color: rgba(37,211,102,0.5); }
.eeg-sticky-close {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: rgba(255,255,255,0.6);
    cursor: pointer; font-size: 1.1rem; padding: 4px;
    transition: color 0.2s;
}
.eeg-sticky-close:hover { color: #fff; }
@media (max-width: 560px) {
    .eeg-sticky-book span { display: none; }
    .eeg-sticky-book { padding: 10px 44px 10px 16px; }
}

/* ─── DEMO MODE ───────────────────────────────────── */
.eeg-demo-badge {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.eeg-demo-alert {
    padding: 0 24px;
    margin-top: -34px;
    position: relative;
    z-index: 5;
}

.eeg-demo-alert-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    padding: 24px 28px;
    border-radius: var(--eeg-radius);
    background: linear-gradient(135deg, #fff8e6 0%, #ffffff 55%, #eaf8ff 100%);
    border: 1px solid rgba(225, 112, 85, 0.28);
    box-shadow: 0 14px 42px rgba(2, 62, 138, 0.14);
}

.eeg-demo-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #e17055, #d63031);
    box-shadow: 0 8px 22px rgba(214, 48, 49, 0.24);
}

.eeg-demo-alert h2 {
    color: #6b2c12;
    font-size: 1.2rem;
    margin: 0 0 6px;
}

.eeg-demo-alert p {
    color: #5a463d;
    line-height: 1.7;
    margin: 0;
}

.eeg-sticky-book {
    background: linear-gradient(135deg, rgba(1, 44, 70, 0.96), rgba(0, 119, 182, 0.95));
}

.eeg-sticky-book a {
    min-width: 90px;
    justify-content: center;
}

@media (max-width: 640px) {
    .eeg-demo-alert {
        padding: 0 16px;
        margin-top: -24px;
    }

    .eeg-demo-alert-inner {
        grid-template-columns: 1fr;
        padding: 22px;
    }
}

/* ─── DARK MODE dla nowych komponentów ───────────── */
[data-theme="dark"] .eeg-for-card,
[data-theme="dark"] .eeg-checklist-card,
[data-theme="dark"] .eeg-concern {
    background: rgba(2, 30, 60, 0.6);
    border-color: rgba(0, 180, 216, 0.18);
}
[data-theme="dark"] .eeg-checklist-item,
[data-theme="dark"] .eeg-for-text { color: rgba(200,230,255,0.82); }
[data-theme="dark"] .eeg-concern-a { color: rgba(180,220,255,0.8); }
[data-theme="dark"] .eeg-step-label { color: #90d8f0; }
[data-theme="dark"] .eeg-step-desc { color: rgba(180,210,240,0.7); }
[data-theme="dark"] .eeg-for-title,
[data-theme="dark"] .eeg-concern-q { color: #90d8f0; }

/* ─── DEMO HERO POLISH ───────────────────────────── */
:root {
    --eeg-primary: #0f766e;
    --eeg-primary-dark: #123c37;
    --eeg-secondary: #14b8a6;
    --eeg-accent: #d97706;
    --eeg-warn: #be123c;
    --eeg-radius: 8px;
    --eeg-radius-sm: 6px;
    --eeg-shadow: 0 10px 30px rgba(18, 60, 55, 0.12);
    --eeg-shadow-lg: 0 16px 42px rgba(18, 60, 55, 0.18);
    --eeg-shadow-xl: 0 24px 60px rgba(18, 60, 55, 0.24);
}

.eeg-hero {
    min-height: auto;
    align-items: stretch;
    justify-content: center;
    text-align: left;
    padding: 116px 24px 92px;
    background:
        linear-gradient(120deg, rgba(7, 31, 28, 0.96) 0%, rgba(18, 60, 55, 0.93) 46%, rgba(119, 73, 33, 0.88) 100%);
    animation: none;
    isolation: isolate;
}

.eeg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: 0.22;
    pointer-events: none;
}

.eeg-hero::after {
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
    clip-path: none;
}

.eeg-aurora,
.eeg-orb,
.eeg-hero-wave {
    display: none;
}

.eeg-hero-grid {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 44px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eeg-hero-copy {
    max-width: 690px;
}

.eeg-badge,
.eeg-demo-badge,
.eeg-btn-primary,
.eeg-btn-secondary,
.eeg-sticky-book a,
.eeg-subnav a,
.eeg-quickfact,
.btn {
    border-radius: 8px;
    letter-spacing: 0;
}

.eeg-demo-badge {
    width: fit-content;
    margin-bottom: 22px;
    color: #fff8e8;
    background: rgba(217, 119, 6, 0.24);
    border-color: rgba(255, 214, 150, 0.58);
}

.eeg-hero-title {
    max-width: 720px;
    font-size: 3.05rem;
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.eeg-hero-title span {
    background: linear-gradient(90deg, #f8d58b, #8df2dc);
    -webkit-background-clip: text;
    background-clip: text;
}

.eeg-hero-sub {
    max-width: 650px;
    margin: 0 0 30px;
    color: rgba(255, 252, 242, 0.9);
}

.eeg-hero-cta {
    justify-content: flex-start;
    margin-bottom: 34px;
}

.eeg-hero .btn-filled {
    background: #f8d58b;
    color: #1e2f2b;
    border: 1px solid rgba(248, 213, 139, 0.72);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.eeg-hero .btn-outlined {
    color: #fff8e8;
    border: 1px solid rgba(255, 248, 232, 0.58);
    background: rgba(255, 255, 255, 0.08);
}

.eeg-hero-stats {
    justify-content: flex-start;
    gap: 26px;
}

.eeg-stat .num {
    color: #f8d58b;
    text-shadow: none;
}

.eeg-stat .lbl {
    color: rgba(255, 252, 242, 0.78);
}

.eeg-hero-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 248, 232, 0.34);
    background: #fffaf0;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.eeg-hero-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.eeg-hero-visual figcaption {
    margin: 0;
    padding: 16px 18px;
    color: #263b35;
    background: linear-gradient(135deg, #fff8e8 0%, #eefaf7 100%);
    font-size: 0.92rem;
    line-height: 1.55;
}

.eeg-demo-alert-inner {
    background: linear-gradient(135deg, #fff8e8 0%, #ffffff 58%, #eefaf7 100%);
    border-color: rgba(217, 119, 6, 0.34);
    box-shadow: 0 18px 48px rgba(18, 60, 55, 0.14);
}

.eeg-demo-icon {
    border-radius: 8px;
    background: linear-gradient(135deg, #d97706, #be123c);
}

.eeg-section-blue {
    background: linear-gradient(160deg, #f6fbf8 0%, #eefaf7 54%, #fff8e8 100%);
}

.eeg-gradient-title {
    background: linear-gradient(135deg, #123c37 0%, #0f766e 54%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.eeg-roadmap-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(18, 60, 55, 0.12);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--eeg-shadow);
    transition: var(--eeg-transition);
}

.eeg-roadmap-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--eeg-shadow-lg);
}

.eeg-roadmap-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0f766e, #d97706);
}

.eeg-roadmap-card .eeg-stars {
    color: #0f766e;
    letter-spacing: 0;
}

.eeg-roadmap-text {
    color: #2c4b45;
    font-size: 0.95rem;
    font-style: normal;
    line-height: 1.75;
    margin-bottom: 22px;
}

.eeg-for-card,
.eeg-checklist-card,
.eeg-concern,
.eeg-testimonial,
.eeg-cta {
    border-radius: 8px;
}

.eeg-sticky-book {
    background: linear-gradient(135deg, rgba(18, 60, 55, 0.97), rgba(119, 73, 33, 0.94));
}

@media (max-width: 900px) {
    .eeg-hero {
        padding: 96px 18px 78px;
    }

    .eeg-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .eeg-hero-copy {
        max-width: none;
    }

    .eeg-hero-title {
        font-size: 2.35rem;
    }

    .eeg-hero-visual img {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 560px) {
    .eeg-hero {
        padding: 86px 16px 70px;
    }

    .eeg-hero-title {
        font-size: 2rem;
    }

    .eeg-hero-sub {
        font-size: 1rem;
    }

    .eeg-hero-cta,
    .eeg-hero-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .eeg-stat-div {
        display: none;
    }

    .eeg-hero .btn {
        justify-content: center;
        width: 100%;
    }
}

[data-theme="dark"] .eeg-roadmap-card {
    background: rgba(10, 36, 33, 0.76);
    border-color: rgba(141, 242, 220, 0.18);
}
