/* =========================================================================
   ZAHNERSATZ MÖNCHENGLADBACH – MAIN STYLESHEET
   Dr. Simone Jansen-Schick | v1.0.0
   ========================================================================= */

/* ---- CSS Variables ---- */
:root {
    --primary: #08A2C2;
    --primary-dark: #067a93;
    --secondary: #40BFB5;
    --black: #000000;
    --white: #FFFFFF;
    --off-white: #F7FAFA;
    --gray-light: #E8F4F6;
    --gray-medium: #6B7B8D;
    --gray-dark: #2A2A2A;
    --gradient: linear-gradient(135deg, #08A2C2 0%, #40BFB5 100%);
    --gradient-dark: linear-gradient(135deg, #067a93 0%, #2d8a82 100%);
    --shadow-sm: 0 2px 8px rgba(8, 162, 194, 0.08);
    --shadow-md: 0 8px 30px rgba(8, 162, 194, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- Prose (for Impressum/Datenschutz pages) ---- */
.prose h2 { margin-top: 32px; margin-bottom: 12px; font-size: 1.4rem; }
.prose h3 { margin-top: 24px; margin-bottom: 8px; font-size: 1.15rem; }
.prose p { margin-bottom: 16px; color: var(--gray-medium); font-size: 0.95rem; line-height: 1.8; }
.prose ul, .prose ol { margin-bottom: 16px; padding-left: 24px; color: var(--gray-medium); }
.prose a { color: var(--primary); text-decoration: underline; }

/* =========================================================================
   LAYOUT
   ========================================================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--off-white); }
.section-gradient { background: var(--gradient); color: var(--white); }
.text-center { text-align: center; }
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
.overline {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--primary); margin-bottom: 16px; display: block;
}
.section-dark .overline { color: var(--secondary); }

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 24px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 20px; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; line-height: 1.3; margin-bottom: 12px; }

.lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.8;
    color: var(--gray-medium); max-width: 680px;
}
.section-dark .lead { color: rgba(255,255,255,0.7); }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 36px; border-radius: 60px;
    font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600;
    cursor: pointer; border: none; transition: var(--transition); white-space: nowrap;
}
.btn-primary {
    background: var(--gradient); color: var(--white);
    box-shadow: 0 4px 20px rgba(8, 162, 194, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 35px rgba(8, 162, 194, 0.5); }
.btn-white { background: var(--white); color: var(--black); box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 35px rgba(0,0,0,0.15); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-icon { width: 20px; height: 20px; }

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: var(--transition); background: transparent;
}
.nav.scrolled {
    background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(20px);
    padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo, .nav-logo img, .footer-logo a, .footer-logo img,
.custom-logo-link, .custom-logo-link img, .custom-logo {
    background: transparent !important; border: none !important;
    outline: none !important; box-shadow: none !important;
    padding: 0 !important; margin: 0;
}
.nav-logo img, .custom-logo { height: 45px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--white); font-size: 0.9rem; font-weight: 500; opacity: 0.8; transition: var(--transition); }
.nav-links a:hover { opacity: 1; color: var(--secondary); }
.nav-cta { padding: 12px 28px !important; font-size: 0.85rem !important; }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-mobile-toggle span { display: block; width: 28px; height: 2px; background: var(--white); margin: 6px 0; transition: var(--transition); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: var(--black); color: var(--white); overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(8, 162, 194, 0.15) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.hero::after {
    content: ''; position: absolute; bottom: -30%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(64, 191, 181, 0.1) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-content { padding: 140px 0 40px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(8, 162, 194, 0.15); border: 1px solid rgba(8, 162, 194, 0.3);
    padding: 8px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--secondary); margin-bottom: 28px;
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 span { display: block; }
.hero .lead { color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(135deg, rgba(8,162,194,0.2), rgba(64,191,181,0.2)); }
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.image-placeholder {
    width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(8,162,194,0.15), rgba(64,191,181,0.1));
    color: rgba(255,255,255,0.3); font-size: 0.85rem; text-align: center; padding: 20px; gap: 12px;
}
.image-placeholder svg { width: 48px; height: 48px; opacity: 0.3; }
.hero-stat {
    position: absolute; bottom: 24px; left: -30px;
    background: var(--white); color: var(--black);
    padding: 20px 28px; border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 3;
}
.hero-stat-number {
    font-size: 2rem; font-weight: 800; line-height: 1;
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat-label { font-size: 0.8rem; color: var(--gray-medium); font-weight: 500; }

/* =========================================================================
   TRUST BAR
   ========================================================================= */
.trust-bar { background: var(--white); padding: 40px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.trust-items { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 500; color: var(--gray-medium); }
.trust-icon {
    width: 44px; height: 44px; background: var(--gray-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; color: var(--primary); }

/* =========================================================================
   PAIN POINTS
   ========================================================================= */
.pain-section { background: var(--off-white); }
.pain-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.pain-card {
    background: var(--white); padding: 36px 28px; border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06); transition: var(--transition); position: relative; overflow: hidden;
}
.pain-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient); opacity: 0; transition: var(--transition);
}
.pain-card:hover::before { opacity: 1; }
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain-card-icon { font-size: 2.2rem; margin-bottom: 16px; }
.pain-card h3 { font-size: 1.1rem; }
.pain-card p { font-size: 0.95rem; color: var(--gray-medium); line-height: 1.7; }
.pain-quote {
    font-style: italic; color: var(--gray-medium); font-size: 1rem; line-height: 1.8;
    position: relative; padding-left: 20px; border-left: 3px solid var(--primary);
}

/* =========================================================================
   SOLUTION / DOPPELKRONEN
   ========================================================================= */
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.solution-image-wrapper { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1; background: linear-gradient(135deg, var(--gray-light), rgba(8,162,194,0.08)); }
.solution-image-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; }
.solution-steps { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.solution-step { display: flex; gap: 20px; align-items: flex-start; }
.solution-step-number {
    width: 52px; height: 52px; min-width: 52px; background: var(--gradient);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 700; color: var(--white);
}
.solution-step h3 { margin-bottom: 6px; font-size: 1.15rem; }
.solution-step p { color: var(--gray-medium); font-size: 0.95rem; }

/* =========================================================================
   BENEFITS
   ========================================================================= */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.benefit-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 40px 28px; transition: var(--transition); text-align: center;
}
.benefit-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(64, 191, 181, 0.3); transform: translateY(-4px); }
.benefit-icon {
    width: 64px; height: 64px; background: var(--gradient); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.benefit-icon svg { width: 30px; height: 30px; color: var(--white); }
.benefit-card h3 { color: var(--white); margin-bottom: 12px; }
.benefit-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

/* =========================================================================
   COMPARISON TABLE
   ========================================================================= */
.comparison-table-wrapper { margin-top: 48px; overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius); overflow: visible; box-shadow: var(--shadow-md); margin-top: 28px; }
.comparison-table thead th { background: var(--black); color: var(--white); padding: 20px 24px; font-weight: 600; font-size: 0.95rem; text-align: left; }
.comparison-table thead th:first-child { width: 35%; border-radius: var(--radius) 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
.comparison-table thead th.highlight { background: var(--primary); position: relative; }
.comparison-table thead th.highlight::before {
    content: '★ EMPFOHLEN'; position: absolute; top: -26px; left: 50%; transform: translateX(-50%);
    background: var(--secondary); color: var(--black); font-size: 0.65rem; font-weight: 700;
    padding: 5px 16px; border-radius: 8px 8px 0 0; letter-spacing: 1px;
}
.comparison-table tbody td { padding: 18px 24px; font-size: 0.9rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) { background: rgba(8, 162, 194, 0.03); }
.comparison-table td.highlight-col { background: rgba(8, 162, 194, 0.06); font-weight: 500; }
.check-icon { color: var(--secondary); font-weight: 700; font-size: 1.1rem; }
.cross-icon { color: #E74C3C; font-weight: 700; font-size: 1.1rem; }
.neutral-icon { color: var(--gray-medium); }

/* =========================================================================
   PROCESS / TIMELINE
   ========================================================================= */
.process-timeline { margin-top: 56px; position: relative; }
.process-timeline::before {
    content: ''; position: absolute; left: 32px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary)); opacity: 0.2;
}
.process-step { display: flex; gap: 32px; align-items: flex-start; margin-bottom: 40px; position: relative; }
.process-step:last-child { margin-bottom: 0; }
.process-step-marker {
    width: 64px; height: 64px; min-width: 64px; background: var(--white);
    border: 3px solid var(--primary); border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 1.3rem;
    font-weight: 800; color: var(--primary); z-index: 2; transition: var(--transition);
}
.process-step:hover .process-step-marker { background: var(--gradient); color: var(--white); border-color: transparent; }
.process-step-content {
    flex: 1; background: var(--white); padding: 28px 32px; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04); transition: var(--transition);
}
.process-step:hover .process-step-content { box-shadow: var(--shadow-md); }
.process-step-content h3 { font-size: 1.15rem; margin-bottom: 8px; }
.process-step-content p { color: var(--gray-medium); font-size: 0.95rem; }

/* =========================================================================
   DOCTOR
   ========================================================================= */
.doctor-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.doctor-image-wrapper {
    border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(8,162,194,0.1), rgba(64,191,181,0.05)); position: relative;
}
.doctor-image-wrapper img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.doctor-info { padding: 20px 0; }
.doctor-credentials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.credential-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gray-light); padding: 10px 18px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 500; color: var(--gray-dark);
}
.credential-tag svg { width: 16px; height: 16px; color: var(--primary); }

/* =========================================================================
   REVIEWS
   ========================================================================= */
.reviews-header { display: flex; align-items: flex-end; justify-content: flex-start; margin-bottom: 48px; gap: 60px; flex-wrap: wrap; }
.google-rating { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.google-stars { color: #FBBC04; font-size: 1.3rem; letter-spacing: 2px; }
.google-score { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.google-label { font-size: 0.85rem; color: var(--gray-medium); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
    background: var(--white); padding: 32px; border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06); transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-stars { color: #FBBC04; font-size: 1rem; margin-bottom: 16px; }
.review-text { font-size: 0.95rem; line-height: 1.7; color: var(--gray-dark); margin-bottom: 20px; font-style: italic; }
.review-author { font-size: 0.85rem; font-weight: 600; color: var(--gray-medium); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-list { margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-question {
    width: 100%; background: none; border: none; padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center; cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 600;
    color: var(--white); text-align: left; gap: 20px; transition: var(--transition);
}
.faq-question:hover { color: var(--secondary); }
.faq-toggle {
    width: 36px; height: 36px; min-width: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.1); display: flex; align-items: center;
    justify-content: center; transition: var(--transition);
}
.faq-toggle svg { width: 18px; height: 18px; color: var(--white); transition: var(--transition); }
.faq-item.active .faq-toggle { background: var(--gradient); }
.faq-item.active .faq-toggle svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer-inner { padding-bottom: 24px; font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.6); }

/* =========================================================================
   CTA SECTION
   ========================================================================= */
.cta-section { position: relative; overflow: hidden; }
.cta-section::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; background: rgba(255,255,255,0.05); border-radius: 50%;
}
.cta-content { text-align: center; max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.cta-content h2 { color: var(--white); }
.cta-content .lead { color: rgba(255,255,255,0.8); margin: 0 auto 40px; }
.cta-steps { display: flex; justify-content: center; gap: 40px; margin-bottom: 48px; }
.cta-step { text-align: center; }
.cta-step-number {
    width: 48px; height: 48px; background: rgba(255,255,255,0.15); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; margin: 0 auto 12px;
}
.cta-step-label { font-size: 0.85rem; font-weight: 500; opacity: 0.9; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--black); color: rgba(255,255,255,0.5); padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 20px; }
.footer-logo img, .footer-logo .custom-logo { height: 40px; background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; }
.footer-text { font-size: 0.9rem; line-height: 1.8; }
.footer h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--secondary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.footer-social a:hover { background: var(--gradient); }
.footer-social svg { width: 18px; height: 18px; color: var(--white); }

/* =========================================================================
   STICKY MOBILE CTA
   ========================================================================= */
.mobile-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--black); padding: 16px 24px; z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.mobile-cta .btn { width: 100%; justify-content: center; }

/* =========================================================================
   ANIMATIONS
   ========================================================================= */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =========================================================================
   BOOKING EMBED
   ========================================================================= */
.booking-embed {
    max-width: 1000px;
    margin: 40px auto 0;
    width: 100%;
}
.booking-iframe-wrapper {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 800px;
}
.booking-iframe-wrapper iframe,
iframe.booking-iframe,
iframe#bookingFrame,
.booking-iframe {
    width: 100% !important;
    height: 850px !important;
    min-height: 850px !important;
    border: none !important;
    display: block !important;
    background: var(--white);
    margin: 0 auto;
}
.booking-fallback {
    padding: 60px 40px;
    text-align: center;
    background: var(--white);
    color: var(--gray-dark);
}
.booking-fallback p {
    margin-bottom: 24px;
    font-size: 1rem;
    color: var(--gray-medium);
}
.booking-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}
.booking-note-sep {
    margin: 0 8px;
    opacity: 0.4;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { padding: 100px 0 20px; }
    .hero-image { max-width: 450px; margin: 0 auto; }
    .solution-grid, .doctor-grid { grid-template-columns: 1fr; gap: 40px; }
    .solution-image-wrapper { max-height: 450px; aspect-ratio: auto; }
    .doctor-image-wrapper { max-height: 500px; aspect-ratio: auto; }
    .benefits-grid, .pain-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(0,0,0,0.97); flex-direction: column; padding: 24px; gap: 20px;
    }
    .nav-links.open { display: flex; }
    .nav-mobile-toggle { display: block; }
    .hero { min-height: auto; padding: 100px 0 60px; }
    .hero-content { padding: 20px 0 0; }
    .hero-image { display: none; }
    .hero-stat { position: relative; left: 0; bottom: 0; display: inline-block; margin-top: 32px; }
    .pain-cards, .benefits-grid, .reviews-grid { grid-template-columns: 1fr; }
    .comparison-table-wrapper { margin-top: 32px; margin-left: -12px; margin-right: -12px; }
    .comparison-table { font-size: 0.8rem; border-radius: 8px; margin-top: 20px; }
    .comparison-table thead th { padding: 14px 12px; font-size: 0.75rem; }
    .comparison-table thead th.highlight::before { font-size: 0.55rem; padding: 3px 10px; top: -22px; }
    .comparison-table tbody td { padding: 12px; }
    .comparison-table thead th:first-child { width: 28%; }
    .solution-grid { gap: 32px; }
    .solution-image-wrapper { max-height: 350px; aspect-ratio: auto; }
    .doctor-image-wrapper { max-height: 400px; aspect-ratio: auto; }
    .process-timeline::before { left: 22px; }
    .process-step { gap: 20px; }
    .process-step-marker { width: 44px; height: 44px; min-width: 44px; font-size: 1rem; }
    .process-step-content { padding: 20px 24px; }
    .cta-steps { flex-direction: column; gap: 20px; }
    .trust-items { gap: 20px; }
    .trust-item { font-size: 0.8rem; }
    .reviews-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .mobile-cta { display: block; }
    body { padding-bottom: 80px; }
    .hero-buttons .btn-outline { display: none; }
    .booking-embed { margin-top: 28px; }
    .booking-iframe-wrapper { border-radius: 12px; height: 700px; }
    .booking-iframe-wrapper iframe,
    iframe.booking-iframe,
    iframe#bookingFrame,
    .booking-iframe {
        height: 750px !important;
        min-height: 750px !important;
    }
    .booking-note-sep { display: none; }
    .booking-note {
        display: flex; flex-direction: column;
        align-items: center; gap: 8px;
    }
    .cta-content h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    .btn { padding: 16px 28px; font-size: 0.9rem; }
    .hero { padding: 90px 0 50px; }
    .hero-badge { font-size: 0.7rem; padding: 6px 14px; }
    .trust-items { flex-direction: column; align-items: flex-start; gap: 16px; }
    .pain-card { padding: 28px 20px; }
    .benefit-card { padding: 28px 20px; }
    .comparison-table { font-size: 0.75rem; }
    .comparison-table thead th { padding: 12px 8px; font-size: 0.7rem; }
    .comparison-table tbody td { padding: 10px 8px; font-size: 0.75rem; }
    .comparison-table thead th.highlight::before { font-size: 0.5rem; padding: 2px 8px; top: -20px; }
    .process-step-content h3 { font-size: 1rem; }
    .solution-image-wrapper { max-height: 280px; }
    .doctor-image-wrapper { max-height: 350px; }
    .booking-iframe-wrapper { border-radius: 8px; height: 600px; }
    .booking-iframe-wrapper iframe,
    iframe.booking-iframe,
    iframe#bookingFrame,
    .booking-iframe {
        height: 650px !important;
        min-height: 650px !important;
    }
    .cta-steps { gap: 16px; }
    .cta-step-number { width: 40px; height: 40px; font-size: 0.95rem; }
    .cta-step-label { font-size: 0.8rem; }
    .section { padding: 56px 0; }
    .credential-tag { font-size: 0.78rem; padding: 8px 14px; }
}

/* =========================================================================
   WORDPRESS OVERRIDES
   ========================================================================= */
/* Remove WordPress admin bar offset when logged in */
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) {
    .admin-bar .nav { top: 46px; }
}

/* Force transparent background on all logo variants */
.nav-logo, .nav-logo img,
.footer-logo a, .footer-logo a img,
.custom-logo-link, .custom-logo-link img,
.custom-logo, a.nav-logo img {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Remove WP default image borders/outlines */
.nav a img, .footer a img,
a img, .nav-inner a img {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: none !important;
}
