/* ==========================================================================
   RelaxDent Implant Clinic - Minimalist Apple-Style Design System
   Brand Colors: #0E76BC (Primary Blue), #ABCC37 (Lime), #5EA6DB (Accent Blue)
   Aesthetic: Clean, Spacious, Minimalist Apple-style UI
   ========================================================================== */

:root {
    --primary: #0E76BC;
    --primary-hover: #0c639e;
    --secondary: #ABCC37;
    --secondary-hover: #98b62e;
    --dark-bg: #0B1F33;
    --dark-surface: #102A45;
    
    --text-dark: #2c3138;
    --text-muted: #86868b;
    --text-light: #f5f5f7;
    
    --bg-main: #fbfbfd;
    --bg-alt: #f5f5f7;
    
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Fő Navigációs Sáv (Header Navigation) */
.main-nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-bg);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.98rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: color 0.25s ease;
    position: relative;
    padding: 4px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone-link {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark-bg);
    text-decoration: none;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-phone-link:hover {
    color: var(--primary);
}

.nav-cta-btn {
    padding: 10px 24px !important;
    font-size: 0.95rem !important;
}

@media (max-width: 860px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 580px) {
    .nav-phone-link {
        display: none;
    }
}

/* Tipográfia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    /*letter-spacing: -0.03em;*/
    word-spacing: 0.05em;
    line-height: 1.1;
    color: #2c3138;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; text-align: center; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 1.5rem; font-weight: 400; }

strong { color: var(--text-dark); font-weight: 600; }

/* Globális Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 120px 0;
    position: relative;
}

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

/* Gombok (CTAs) */
.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 8px 20px rgba(14, 118, 188, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(14, 118, 188, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

.micro-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.badge-dark {
    display: inline-block;
    padding: 0.45rem 1.25rem;
    background-color: #0B1F33;
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(11, 31, 51, 0.15);
}

/* Navigáció */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(251, 251, 253, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.logo span { color: var(--secondary); }

/* Hero Szekció - Overlay Nélkül, Tiszta 2-Hasábos Elrendezés */
.hero {
    padding: 160px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(94, 166, 219, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(171, 204, 55, 0.08) 0%, transparent 50%);
    color: var(--text-dark);
}

.hero h1 {
    color: var(--text-dark);
}

.hero-tagline {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    word-spacing: 0.05em;
}

.hero-content {
    max-width: 580px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400!important;
}

.hero-img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    background: white;
    height: 480px;
}

.hero-pure-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

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

/* HIGH-IMPACT FULL-WIDTH DARK STATS SECTION */
.stats-section-dark {
    width: 100%;
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #0B1F33 0%, #082846 50%, #0E76BC 100%);
    border-top: 4px solid var(--secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(11, 31, 51, 0.25);
    position: relative;
    z-index: 10;
}

.stats-grid-impact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.stat-item-impact {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 1rem;
}

.stat-icon-glow {
    width: 52px;
    height: 52px;
    background: rgba(94, 166, 219, 0.15);
    border: 1px solid rgba(94, 166, 219, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.stat-icon-glow.lime {
    background: rgba(171, 204, 55, 0.15);
    border-color: rgba(171, 204, 55, 0.4);
    color: var(--secondary);
}

.stat-number-impact {
    font-family: var(--font-main);
    font-size: 2.85rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    letter-spacing: -0.03em;
}

.stat-unit {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
}

.lime-text {
    color: var(--secondary) !important;
}

.stat-title-impact {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.stat-desc-impact {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.45;
}

.stat-divider {
    width: 1px;
    height: 90px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .stats-grid-impact {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    }
}

/* Orvosi figyelmeztetés (A Statisztika alatt) */
.warning-section-below-stats {
    padding: 80px 0;
    background-color: var(--bg-body);
}

.warning-card {
    background: white;
    border-left: 4px solid var(--accent);
    padding: 28px 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.warning-card p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.65;
}

.warning-icon {
    font-size: 1.85rem;
    line-height: 1;
    flex-shrink: 0;
}

/* Közös Grid/Flex elrendezések */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-layout.reverse {
    direction: rtl;
}
.split-layout.reverse > * {
    direction: ltr;
}

@media (max-width: 992px) {
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    .split-layout.reverse { direction: ltr; }
    section { padding: 80px 0; }
}

/* Probléma szekció */
.problem-section { background-color: white; }

.check-list {
    list-style: none;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.check-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: bold;
}

/* Halogatás szekció */
.consequences-section {
    background-color: var(--bg-alt);
}

.consequences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 3.5rem;
}

.consequence-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.danger-num-apple {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(14, 118, 188, 0.15);
    margin-bottom: 12px;
    line-height: 1;
}

.consequence-card h3 {
    color: #d9381e;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.consequence-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.good-news-banner {
    max-width: 860px;
    margin: 3.5rem auto 0 auto;
    text-align: center;
}

.good-news-banner p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Szakértelem / Orvos - Overlay Nélküli Tiszta Elrendezés */
.expert-section-clean {
    padding: 120px 0;
    background-color: var(--bg-alt);
}

.doctor-photo-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: var(--shadow-lg);
    background: white;
    margin-bottom: 20px;
}

.doc-pure-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.doctor-badge-overlay {
    position: absolute;
    bottom: -18px;
    left: 24px;
    background: #fff;
    color: var(--secondary);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 10;
    white-space: nowrap;
}

.doctor-floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Orvos Szekció - Custom Background szajseb_7.jpg (Desktop: Háttérkép, Mobil: Külön képelem) */
.expert-section-custom {
    position: relative;
    padding: 130px 0;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: #f5f5f7 url('assets/szajseb_7.jpg') center/cover no-repeat;
    color: var(--text-dark);
}

.expert-container-custom {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: flex-end;
    width: 100%;
    min-height: 480px;
}

.expert-left-custom {
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding-bottom: 20px;
}

.doctor-floating-badge {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-top: 260px;
}

.expert-mobile-visual {
    display: none;
}

.expert-content-custom {
    color: var(--text-dark);
}

.expert-quote-custom {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.25rem;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 600;
}

.expert-lead-text-custom {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 2.5rem;
}

.expert-lead-text-custom strong {
    color: var(--text-dark);
}

.credentials-custom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cred-item-custom {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.cred-item-custom strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

/* Orvos B-Opció Kártyás Elrendezés (Apple Boxed Card) */
.expert-boxed-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 1100px;
    margin: 0 auto;
}

.expert-card-left {
    position: relative;
    background-color: #e9ecef;
    min-height: 480px;
}

.expert-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expert-card-right {
    padding: 60px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-watermark {
    position: absolute;
    top: 20px;
    left: 35px;
    font-family: Georgia, serif;
    font-size: 7.5rem;
    line-height: 0.8;
    color: rgba(94, 166, 219, 0.22);
    pointer-events: none;
    user-select: none;
}

.expert-card-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.15rem;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 1.25rem;
    font-style: italic;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.expert-card-doctor-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.expert-card-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.expert-card-divider {
    height: 1px;
    background-color: #e5e5e5;
    margin-bottom: 1.75rem;
}

.expert-card-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.expert-card-cred-item h4 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 6px;
    font-weight: 600;
}

.expert-card-cred-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .expert-boxed-card {
        grid-template-columns: 1fr;
    }
    .expert-card-left {
        height: 380px;
        min-height: 380px;
    }
    .expert-card-right {
        padding: 40px 24px;
    }
    .expert-card-credentials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.expert-content-clean {
    color: var(--text-dark);
}

.expert-quote-clean {
    font-size: 1.75rem;
    line-height: 1.35;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
}

.expert-lead-text-clean {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 2.5rem;
}

.credentials-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cred-item-clean {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
}

.cred-item-clean strong {
    display: block;
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 6px;
}

/* Megoldás (Solution Section) - 2 Column Clean Unboxed Layout */
.solution-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    margin-top: 4rem;
    margin-bottom: 5rem;
}

.tech-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
}

.tech-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.tech-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(11, 31, 51, 0.9) 0%, rgba(11, 31, 51, 0) 100%);
    color: var(--text-light);
    padding: 2.5rem 1.5rem 1.25rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.solution-features-clean {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.feature-item-clean {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon-clean {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background-color: rgba(14, 118, 188, 0.08);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-text-clean h3 {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}

.feature-text-clean p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Quiz Widget - Sötét Háttérrel (Mint a statisztika szekció) */
.quiz-standalone-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0B1F33 0%, #082846 50%, #0E76BC 100%);
    border-top: 4px solid var(--secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(11, 31, 51, 0.25);
    color: var(--text-light);
}

.quiz-card-dark {
    max-width: 860px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.quiz-step {
    display: none !important;
}

.quiz-step.active {
    display: block !important;
    animation: fadeIn 0.4s ease-in-out;
}

.quiz-tag-lime {
    display: inline-block;
    padding: 0.4rem 1.25rem;
    background-color: rgba(171, 204, 55, 0.2);
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.step-counter-lime {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.quiz-opt-dark {
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.75rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.quiz-opt-dark:hover {
    border-color: var(--secondary);
    background-color: rgba(171, 204, 55, 0.2);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Vélemények */
.testimonial-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
}

.testimonial-box::before {
    content: '"';
    font-size: 8rem;
    color: rgba(171, 204, 55, 0.15);
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

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

/* Placeholder Before/After slider */
.ba-slider {
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 0 auto 40px;
    background: #eee;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
    border: 2px dashed #ccc;
}

/* Folyamat */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 4rem;
}

.step-item {
    position: relative;
    padding-top: 40px;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(94, 166, 219, 0.15);
    line-height: 0.8;
    z-index: -1;
}

/* FAQ 2-Hasábos Elrendezés */
.faq-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 3rem;
    align-items: start;
}

@media (max-width: 992px) {
    .faq-grid-2col {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.faq-category {
    margin: 3rem 0 1.5rem;
    color: var(--primary);
    font-size: 1.25rem;
    border-bottom: 2px solid rgba(14, 118, 188, 0.1);
    padding-bottom: 8px;
}

details {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

details[open] {
    box-shadow: var(--shadow-md);
}

summary {
    padding: 24px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker { display: none; }

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
    color: var(--secondary);
}

.faq-content {
    padding: 0 24px 24px;
    color: var(--text-muted);
}

/* Űrlap / Kapcsolat 2-Hasábos Elrendezés */
.contact-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0a4f7d 100%);
    color: white;
    padding: 120px 0;
}

.contact-container-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-col h2 {
    text-align: left;
    color: white;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-trust-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.trust-bullet-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.trust-bullet-icon {
    font-size: 1.35rem;
    line-height: 1;
    flex-shrink: 0;
}

.form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* Biztonság és Kényelem Szekció - Zöld Átmenet */
.safety-comfort-section {
    background: linear-gradient(135deg, #35a453 0%, #0F2816 100%);
    border-top: 4px solid var(--secondary);
    padding: 100px 0;
    color: var(--text-light);
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.2);
}

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

.safety-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
}

.safety-card:hover {
    transform: translateY(-5px);
    border-color: rgba(171, 204, 55, 0.4);
    background: rgba(255, 255, 255, 0.07);
}

.safety-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(171, 204, 55, 0.15);
    border: 1px solid rgba(171, 204, 55, 0.3);
    color: var(--secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.safety-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.safety-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.025rem;
    line-height: 1.6;
    margin: 0;
}

/* Páciensvélemények Horizontal Slider */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-alt);
    position: relative;
}

.google-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    margin-top: 1rem;
    font-size: 0.95rem;
    border: 1px solid rgba(0,0,0,0.06);
}

.rating-score {
    font-weight: 800;
    color: var(--text-dark);
}

.rating-stars {
    color: #ffb400;
    letter-spacing: 2px;
}

.rating-count {
    color: var(--text-muted);
}

.reviews-slider-wrapper {
    position: relative;
    margin-top: 3rem;
    display: flex;
    align-items: center;
}

.reviews-slider-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-lg);
    padding: 10px 4px;
}

.reviews-slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 24px;
}

.review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: white;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.review-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #35a453 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2px 0;
}

.review-stars {
    color: #ffb400;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.review-platform-icon {
    width: 20px;
    height: 20px;
}

.review-text {
    font-size: 0.975rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    font-style: normal;
}

.reviews-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.reviews-nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.reviews-nav-btn.prev {
    left: -20px;
}

.reviews-nav-btn.next {
    right: -20px;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 600px) {
    .review-card {
        flex: 0 0 100%;
    }
    .reviews-nav-btn.prev { left: 0; }
    .reviews-nav-btn.next { right: 0; }
}

/* Clinic & Patient Masonry Gallery */
.gallery-masonry-section {
    padding: 0 0 100px 0;
    background-color: var(--bg-alt);
}

.masonry-grid {
    column-count: 5;
    column-gap: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masonry-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .masonry-grid {
        column-count: 2;
        column-gap: 16px;
    }
    .masonry-item {
        margin-bottom: 16px;
    }
}

/* Függőleges 2-Hasábos Idővonal (Vertical Timeline Workflow) */
.vertical-timeline-section {
    padding: 100px 0;
    background: #ffffff;
}

.vertical-timeline {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-line {
    position: absolute;
    left: 379px;
    top: 24px;
    bottom: 24px;
    width: 3px;
    background: #cbd5e1;
    z-index: 1;
}

.timeline-row {
    display: grid;
    grid-template-columns: 360px 40px 1fr;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.timeline-left {
    text-align: right;
    padding-right: 20px;
    padding-top: 6px;
}

.timeline-step-num {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: #eff6ff;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 6px;
}

.timeline-right h3 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin: 0 0 15px 0;
}

.timeline-left-img {
    margin-top: 16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-left-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.timeline-row:hover .timeline-left-img img {
    transform: scale(1.05);
}

.timeline-row:hover .timeline-left-img {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

.timeline-center {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 3px var(--primary);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-row:hover .timeline-dot {
    transform: scale(1.25);
    background: #0284c7;
    box-shadow: 0 0 0 4px #38bdf8;
}

.timeline-right {
    padding: 0 32px;
}


.timeline-right p {
    font-size: 1rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 14px;
}

.timeline-right p:last-child {
    margin-bottom: 0;
}

/* FAQ Szekció Háttér */
.faq-section {
    background-color: #F5F5F7 !important;
}

/* Mobil beállítások (768px alatt) */
@media (max-width: 768px) {
    .timeline-line {
        left: 15px;
    }

    .timeline-row {
        grid-template-columns: 32px 1fr;
        grid-template-areas:
            "dot left"
            "dot right";
        gap: 12px;
    }

    .timeline-left {
        grid-area: left;
        text-align: left;
        padding-right: 0;
        padding-top: 0;
        margin-bottom: 4px;
    }

    .timeline-center {
        grid-area: dot;
        justify-content: flex-start;
        padding-top: 4px;
    }

    .timeline-right {
        grid-area: right;
        padding: 20px 22px;
    }
}

/* Site Footer */
.site-footer {
    background-color: #071524;
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: white !important;
    font-size: 1.6rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

.footer-col-title {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.footer-contact-value {
    display: inline-block;
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.2s ease;
}

.footer-contact-value:hover {
    color: var(--secondary);
}

.footer-subtext {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.footer-address {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (max-width: 992px) {
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

.form-group {
    margin-bottom: 24px;
}

.form-control {
    width: 100%;
    padding: 18px 24px;
    border: 1px solid #e1e4e8;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s;
    background: var(--bg-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 118, 188, 0.1);
    background: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
}

.checkbox-group input {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.submit-btn {
    width: 100%;
    font-size: 1.1rem;
}

.trust-badges {
    margin-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Animációk osztályai */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   Mobil Reszponzív Finomítások (max-width: 992px & 768px)
   (Desktop változat 100%-ban érintetlen marad)
   ========================================================================== */

@media (max-width: 992px) {
    /* 1. Hero: Kép előbb, szöveg utána mobilon */
    .hero {
        padding: 90px 0 50px;
    }

    .hero .split-layout {
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content .btn-group {
        justify-content: center;
    }

    .hero-img-card {
        height: 300px;
    }

    /* 2. Statisztikák: Ikonok a szöveg mellett mobilon */
    .stats-container-impact {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item-impact {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 30px;
        justify-content: flex-start;
    }

    .stat-icon-glow {
        flex-shrink: 0;
    }

    .stat-content-impact {
        text-align: left;
    }

    /* 3. All-on-4 Infók: Lead szöveg -> Kép -> Előnyök */
    .solution-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .solution-visual {
        order: 1;
    }

    .solution-features-clean {
        order: 2;
    }

    /* 6. Form: Egymás alatt a lead szöveg és a form */
    .contact-container-2col {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .contact-info-col {
        text-align: center;
    }

    .contact-trust-bullets {
        align-items: center;
        text-align: left;
    }
}

@media (max-width: 768px) {
    /* 4. Páciens vélemények: Nyilak nem takarnak rá a szövegre */
    .reviews-slider-wrapper {
        padding: 0 45px;
    }

    .reviews-nav-btn.prev {
        left: 0;
    }

    .reviews-nav-btn.next {
        right: 0;
    }

    /* 5. Galéria: Mobilon 2 hasábos Masonry grid */
    .gallery-masonry-section .masonry-grid {
        column-count: 2 !important;
        column-gap: 12px !important;
    }

    .gallery-masonry-section .masonry-item {
        margin-bottom: 12px !important;
    }

    /* 7. Footer: Középre igazítva mobilon */
    .site-footer {
        text-align: center;
    }

    .footer-top-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
}

/* Lightbox Modal Képnézegető (Globális) */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 31, 51, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-modal.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 12px;
    font-size: 0.95rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 2.2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 100001;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 100001;
}

.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
    left: 28px;
}

.lightbox-next {
    right: 28px;
}

.masonry-item {
    cursor: pointer;
}

@media (max-width: 768px) {
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; font-size: 1.8rem; }
    .lightbox-nav { width: 44px; height: 44px; font-size: 1.6rem; }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 530px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
    border-radius: 20px;
    padding: 24px;
    z-index: 999999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
}

.cookie-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-btn-group {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}

.cookie-btn {
    padding: 10px 14px;
    font-size: 0.825rem;
    font-weight: 600;
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.cookie-btn-reject {
    border-color: #d1d1d6;
    color: #48484a;
}

.cookie-btn-reject:hover {
    background-color: #f2f2f7;
    color: var(--text-dark);
}

@media (max-width: 576px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
}

/* Cookie Preferences Drawer & Categories */
.cookie-categories {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin: 14px 0;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    max-height: 260px;
    overflow-y: auto;
}

.cookie-categories.open {
    display: flex;
}

.cookie-cat-item {
    background: rgba(0, 0, 0, 0.03);
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.cookie-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.cookie-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
}

.cookie-badge-required {
    font-size: 0.725rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.cookie-cat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Inline Consultation Slots */
.slots-inline-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.slot-inline-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.slot-inline-date {
    font-weight: 700;
    color: var(--text-dark);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.slot-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.slot-card-full {
    opacity: 0.8;
    background: #fafafa;
}

.slot-date-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slot-calendar-icon {
    font-size: 1.5rem;
}

.slot-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.slot-status-wrap {
    margin: 4px 0;
}

.slot-badge {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Green: >= 5 slots */
.slot-badge-available {
    color: #fff;
}

/* Urgent Amber: 1..4 slots */
.slot-badge-urgent {
    color: #fff;
}

/* Full Red: 0 slots */
.slot-badge-full {
    color: #ffacac;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.2); }
    70% { box-shadow: 0 0 0 8px rgba(234, 88, 12, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}

.slot-action {
    margin-top: 4px;
}

.slot-action .btn {
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.9rem;
}

.btn-disabled {
    background: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: not-allowed;
    border: none;
}

/* Nemzetközi Bizalom & Videó Szekció (Fehér háttér) */
.video-testimonial-section {
    padding: 100px 0;
    background: #ffffff;
}

.video-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.video-section-title {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    line-height: 1.25;
}

.video-lead-p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.video-sub-p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.6;
    margin: 0;
}

.video-wrapper-card {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background: #000;
}

.video-wrapper-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .video-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

/* Különálló További Páciens Történetek Szekció (Törtfehér / Szürke Háttér) */
.video-gallery-section {
    padding: 90px 0;
    background: #f4f6f8;
    border-top: 1px solid #e1e4e8;
    border-bottom: 1px solid #e1e4e8;
}

.video-subgrid-title {
    margin-bottom: 30px;
    text-align: center;
}

.video-subgrid-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-thumb-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumb-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.video-thumb-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
}

.video-thumb-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-thumb-info {
    padding: 16px 20px;
}

.video-thumb-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.35;
}

.video-thumb-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

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

/* ==========================================================================
   Science Drawer (Miért terhelhető azonnal az implantátum?)
   ========================================================================== */
.science-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary);
    color: var(--primary);
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(14, 118, 188, 0.12);
    cursor: pointer;
    transition: all 0.3s ease;
}

.science-toggle-btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 118, 188, 0.25);
}

.science-toggle-btn .toggle-icon {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.science-toggle-btn.open .toggle-icon {
    transform: rotate(180deg);
}

/* Science Drawer Container with Smooth Expand */
.science-drawer-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, padding 0.4s ease;
    background: #f8fafc;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

.science-drawer-wrapper.open {
    max-height: 20000px; /* Bőséges magasság, hogy mobilon se vágódjon le semmi a hosszú szövegből */
    opacity: 1;
    padding: 80px 0;
    border-top-color: #e2e8f0;
    border-bottom-color: #e2e8f0;
}

.science-main-title {
    font-size: 2.3rem;
    line-height: 1.25;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
}

.science-lead-desc {
    max-width: 820px;
    margin: 0 auto 3.5rem auto;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Stability Cards Grid */
.stability-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 50px;
}

.stability-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.stability-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.stability-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.stability-type-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.stability-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2px 0 0 0;
}

.stability-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.stability-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stability-bullets li {
    font-size: 0.95rem;
    color: #475569;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.stability-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 800;
}

/* Dip Explanation Section (Teljes képernyő szélességű fehér háttérrel rendelkező külön szekció) */
.dip-full-width-section {
    background: #ffffff;
    padding: 75px 0;
    margin-top: 60px;
    margin-bottom: 60px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.dip-card-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.dip-text-col h3 {
    font-size: 1.6rem;
    margin-top: 10px;
    margin-bottom: 16px;
}

.dip-text-col p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 14px;
}

.dip-highlight-box {
    background: #eff6ff;
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    font-size: 0.95rem;
    color: #1e3a8a;
    line-height: 1.55;
    margin-top: 20px;
}

.stability-graph-card {
    background: #0f172a;
    color: white;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.25);
    border: 1px solid #1e293b;
}

.stability-graph-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #f8fafc;
    text-align: center;
}

.stability-graph-subtitle {
    font-size: 0.78rem;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 16px;
    display: block;
}

.stability-svg-chart {
    width: 100%;
    height: auto;
    display: block;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #334155;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #cbd5e1;
    font-weight: 600;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.legend-total { background: #f59e0b; }
.legend-primary { background: #abcc37; }
.legend-secondary { background: #38bdf8; border: 1px stroke #38bdf8; }

.graph-caption {
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: 12px;
    margin-bottom: 0;
    line-height: 1.4;
    text-align: center;
}

/* Minimalista Tudományos Szekció (Kártyák, keretek és ikonok nélkül) */
.minimal-science-stacked {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.minimal-science-item {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.minimal-science-item h3 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.35;
}

.minimal-science-item p {
    font-size: 1.02rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 14px;
}

.minimal-science-item p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .minimal-science-stacked {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* Különálló Tévhitek Szekció (Full szélességű fehér háttér, 2-hasábos Tévhit vs Valóság sávok) */
.myths-full-width-section {
    background: #ffffff;
    padding: 75px 0;
    margin-top: 60px;
    margin-bottom: 20px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.myths-main-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 36px;
}

.myth-comparison-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 980px;
    margin: 0 auto;
}

.myth-comparison-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    align-items: center;
}

.myth-col-false {
    background: transparent;
    padding: 8px 36px 8px 0;
    text-align: right;
    border-right: 3px solid #cbd5e1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.myth-col-badge {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #dc2626;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: #fef2f2;
    border-radius: 8px;
    border: 1px solid #fee2e2;
}

.myth-col-false h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
    text-align: right;
}

.myth-col-true {
    background: transparent;
    padding: 8px 0 8px 36px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reality-col-badge {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #059669;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: #ecfdf5;
    border-radius: 8px;
    border: 1px solid #d1fae5;
}

.myth-col-true p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .myth-comparison-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .myth-col-false {
        border-right: none;
        border-bottom: 3px solid #cbd5e1;
        padding: 0 0 20px 0;
        text-align: left;
        align-items: flex-start;
    }
    
    .myth-col-false h4 {
        text-align: left;
    }

    .myth-col-true {
        padding: 0;
    }
}

/* Záró Kiemelt Blokkminta (Amiért ez a megközelítés számít) */
.science-closing-choice-box {
    background: #0f172a;
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin-top: 48px;
    margin-bottom: 10px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
    border: 1px solid #1e293b;
}

.science-closing-choice-box h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 12px;
}

.science-closing-choice-box p {
    font-size: 1.02rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
}

/* Kontroll Időpontok Lista (2., 6., 12. hét) */
.control-timeline-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0;
}

.control-timeline-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
}

.control-week-badge {
    background: var(--primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    min-width: 68px;
    text-align: center;
}

.control-timeline-text {
    font-size: 0.94rem;
    color: #334155;
    line-height: 1.5;
}

.myth-header {
    background: #fef2f2;
    padding: 16px 20px;
    border-bottom: 1px solid #fee2e2;
}

.myth-header span {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #dc2626;
    letter-spacing: 0.05em;
}

.myth-header h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #991b1b;
    margin: 4px 0 0 0;
    line-height: 1.35;
}

.myth-body {
    padding: 20px;
    font-size: 0.92rem;
    color: #334155;
    line-height: 1.55;
}

@media (max-width: 992px) {
    .stability-cards-grid,
    .dip-card-grid,
    .bridge-science-grid,
    .myths-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Egyedi Visszajelző Köszönet Modal / Popup
   ========================================================================== */
.feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 31, 51, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.feedback-modal.active {
    opacity: 1;
    visibility: visible;
}

.feedback-modal-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    transform: scale(0.92);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feedback-modal.active .feedback-modal-card {
    transform: scale(1);
}

.feedback-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s ease;
}

.feedback-modal-close:hover {
    color: #0f172a;
}

.feedback-modal-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.feedback-modal-title {
    font-size: 1.6rem;
    color: var(--dark-bg);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.feedback-modal-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}
