:root {
    --pink:    #FF6B9D;
    --pink-light: #FFD6E8;
    --purple:  #C084FC;
    --purple-light: #EDE9FE;
    --blue:    #60A5FA;
    --blue-light: #DBEAFE;
    --teal:    #5EEAD4;
    --teal-light: #CCFBF1;
    --yellow:  #FCD34D;
    --white:   #FFFFFF;
    --off-white: #FFF8FD;
    --text-dark: #2D1B4E;
    --text-mid:  #5B4B78;
    --text-soft: #9580AA;
    --radius-card: 24px;
    --radius-btn:  50px;
    --shadow-soft: 0 8px 32px rgba(192,132,252,0.15);
    --shadow-hover: 0 16px 48px rgba(192,132,252,0.28);
}

*, *::before, *::after { box-sizing: border-box; }

body {
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
}

/* ─── HERO ──────────────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, #FF6B9D 0%, #C084FC 45%, #60A5FA 100%);
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 64px 64px;
    z-index: 9;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 60px; left: -100px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: var(--radius-btn);
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.hero-desc {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.7;
}
.btn-hero-primary {
    background: #fff;
    color: var(--pink);
    border: none;
    border-radius: var(--radius-btn);
    padding: 14px 36px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    color: var(--purple);
}
.btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: var(--radius-btn);
    padding: 12px 28px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.hero-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.hero-img-wrap img {
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
    max-height: 440px;
    width: 100%;
    object-fit: cover;
}
.hero-stats {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.25);
    padding: 22px 0;
    position: relative;
    z-index: 2;
}
.stat-item {
    text-align: center;
    color: #fff;
}
.stat-number {
    font-family: 'Baloo 2', cursive;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 600;
}
.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.3);
    height: 40px;
    align-self: center;
}

/* ─── SECTION BASE ──────────────────────────────── */
.section-pad { padding: 80px 0; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink-light);
    color: var(--pink);
    border-radius: var(--radius-btn);
    padding: 6px 18px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    color: var(--text-dark);
    line-height: 1.25;
}
.section-sub {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 640px;
}

/* ─── TREATMENT CARDS ───────────────────────────── */
.section-treatments {
    background: #F0EBFF;
    border-radius: 64px;
    margin-top: -120px;
    padding-top: 200px;
    position: relative;
    z-index: 8;
    box-shadow: 0 -16px 48px rgba(130,80,200,0.12);
}
.treat-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 32px 24px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: 2px solid transparent;
}
.treat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--purple-light);
}
.treat-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.treat-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.treat-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0;
}
.icon-bg-pink   { background: #FFE4F0; }
.icon-bg-purple { background: #EDE9FE; }
.icon-bg-blue   { background: #DBEAFE; }
.icon-bg-teal   { background: #CCFBF1; }
.icon-bg-yellow { background: #FEF9C3; }
.icon-bg-green  { background: #D1FAE5; }

/* ─── WHY PEDODONTIST ───────────────────────────── */
.section-why {
    background: linear-gradient(160deg, #EBE3FF 0%, #FFE0F4 100%);
    border-radius: 64px;
    margin-top: -120px;
    padding-top: 200px;
    position: relative;
    z-index: 7;
    box-shadow: 0 -16px 48px rgba(192,100,252,0.12);
}
.why-img {
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(192,132,252,0.22);
    width: 100%;
    object-fit: cover;
}
.feature-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 4px 16px rgba(192,132,252,0.12);
    margin-bottom: 14px;
}
.feature-pill .pill-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.feature-pill strong { color: var(--text-dark); font-size: 0.95rem; display: block; }
.feature-pill span { color: var(--text-soft); font-size: 0.82rem; }

/* ─── FIRST VISIT ───────────────────────────────── */
.section-firstvisit {
    background: #FEF7FF;
    border-radius: 64px;
    margin-top: -120px;
    padding-top: 200px;
    position: relative;
    z-index: 6;
    box-shadow: 0 -16px 48px rgba(255,100,157,0.10);
}
.callout-box {
    background: linear-gradient(135deg, var(--blue-light), var(--teal-light));
    border-left: 5px solid var(--teal);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
}
.callout-box.pink {
    background: linear-gradient(135deg, var(--pink-light), #FFF0F7);
    border-left-color: var(--pink);
}
.callout-box.purple {
    background: linear-gradient(135deg, var(--purple-light), #F5F0FF);
    border-left-color: var(--purple);
}
.age-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    height: 100%;
    border-top: 4px solid var(--pink);
    transition: transform 0.3s;
}
.age-card:hover { transform: translateY(-5px); }
.age-number {
    font-family: 'Baloo 2', cursive;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--pink);
}

/* ─── STEPS / TIMELINE ──────────────────────────── */
.section-steps {
    background: linear-gradient(180deg, #EEE8FF 0%, #E6F0FF 100%);
    border-radius: 64px;
    margin-top: -120px;
    padding-top: 200px;
    position: relative;
    z-index: 5;
    box-shadow: 0 -16px 48px rgba(100,130,255,0.10);
}
.steps-wrap {
    position: relative;
}
.steps-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--pink), var(--purple), var(--blue), var(--teal));
    transform: translateX(-50%);
    border-radius: 4px;
}
@media (max-width: 767px) {
    .steps-wrap::before { left: 28px; transform: none; }
}
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}
.step-item.right {
    flex-direction: row-reverse;
}
@media (max-width: 767px) {
    .step-item, .step-item.right { flex-direction: row; }
}
.step-bubble {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Baloo 2', cursive;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}
.step-content {
    background: #fff;
    border-radius: 20px;
    padding: 22px 26px;
    box-shadow: var(--shadow-soft);
    flex: 1;
}
.step-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; color: var(--text-mid); margin: 0; line-height: 1.6; }

/* ─── CLINIC FEATURES ───────────────────────────── */
.section-clinic {
    background: linear-gradient(135deg, #2DD4BF 0%, #38BDF8 100%);
    border-radius: 64px;
    margin-top: -120px;
    padding-top: 200px;
    position: relative;
    z-index: 4;
    box-shadow: 0 -16px 48px rgba(45,212,191,0.22);
}
.clinic-card {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-card);
    padding: 28px 22px;
    text-align: center;
    color: #fff;
    transition: background 0.3s, transform 0.3s;
    height: 100%;
}
.clinic-card:hover {
    background: rgba(255,255,255,0.32);
    transform: translateY(-6px);
}
.clinic-card .c-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: block;
}
.clinic-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: #fff; }
.clinic-card p { font-size: 0.87rem; opacity: 0.9; margin: 0; line-height: 1.5; }

/* ─── SEDASYON ──────────────────────────────────── */
.section-sedasyon {
    background: #ECF4FF;
    border-radius: 64px;
    margin-top: -120px;
    padding-top: 200px;
    position: relative;
    z-index: 3;
    box-shadow: 0 -16px 48px rgba(56,189,248,0.18);
}
.sedasyon-box {
    background: linear-gradient(135deg, #E8E0FF 0%, #D6EAFF 100%);
    border-radius: 28px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}
.sedasyon-box::after {
    content: '💤';
    position: absolute;
    right: -20px; top: -20px;
    font-size: 120px;
    opacity: 0.08;
    transform: rotate(-15deg);
}
.sedasyon-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}
.sedasyon-dot {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─── FAQ ───────────────────────────────────────── */
.section-faq {
    background: #F4EEFF;
    border-radius: 64px;
    margin-top: -120px;
    padding-top: 200px;
    position: relative;
    z-index: 2;
    box-shadow: 0 -16px 48px rgba(130,80,220,0.10);
}
details.faq-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(168,85,247,0.1);
    margin-bottom: 14px;
    overflow: hidden;
    border-left: 5px solid var(--purple);
    transition: box-shadow 0.3s;
}
details.faq-item[open] {
    box-shadow: 0 8px 28px rgba(192,132,252,0.2);
    border-left-color: var(--pink);
}
details.faq-item summary {
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::before {
    content: '❓';
    font-size: 1.1rem;
}
details.faq-item summary::after {
    content: '\002B';
    margin-left: auto;
    font-size: 1.4rem;
    color: var(--purple);
    font-weight: 800;
    transition: transform 0.3s;
}
details.faq-item[open] summary::after {
    content: '\2212';
    color: var(--pink);
}
.faq-body {
    padding: 0 24px 22px 58px;
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ─── CTA ───────────────────────────────────────── */
.section-cta {
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 55%, #F59E0B 100%);
    padding: 90px 0 90px;
    padding-top: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 64px 64px 0 0;
    margin-top: -120px;
    z-index: 1;
    box-shadow: 0 -16px 48px rgba(168,85,247,0.22);
}
.section-cta::before {
    content: '🦷';
    position: absolute;
    font-size: 200px;
    opacity: 0.07;
    top: 30px; right: -40px;
    transform: rotate(20deg);
}
.section-cta::after {
    content: '⭐';
    position: absolute;
    font-size: 150px;
    opacity: 0.07;
    bottom: -20px; left: -30px;
}
.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.btn-cta-main {
    background: #fff;
    color: var(--pink);
    border: none;
    border-radius: var(--radius-btn);
    padding: 16px 44px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-cta-main:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    color: var(--purple);
}
.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 10px 22px;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.3s;
    margin: 6px;
    backdrop-filter: blur(8px);
}
.contact-pill:hover {
    background: rgba(255,255,255,0.35);
    color: #fff;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    padding: 8px 18px;
    color: rgba(255,255,255,0.95);
    font-size: 0.82rem;
    font-weight: 700;
    margin: 6px;
}

/* ─── MISC ──────────────────────────────────────── */
.rounded-hero { border-radius: 28px; }
.text-pink   { color: var(--pink) !important; }
.text-purple { color: var(--purple) !important; }
.text-teal   { color: var(--teal) !important; }

@media (max-width: 991px) {
    .hero-img-wrap { margin-top: 40px; }
    .steps-wrap::before { display: none; }
    .step-item.right { flex-direction: row; }
    .sedasyon-box { padding: 32px 24px; }
    .section-treatments,
    .section-why,
    .section-firstvisit,
    .section-steps,
    .section-clinic,
    .section-sedasyon,
    .section-faq { border-radius: 40px; margin-top: -40px; padding-top: 110px; }
    .section-cta { border-radius: 40px 40px 0 0; margin-top: -40px; padding-top: 120px; }
    .hero-section { border-radius: 0 0 40px 40px; }
}
@media (max-width: 575px) {
    .section-pad { padding: 56px 0; }
    .hero-section { padding: 60px 0 0; }
    .section-treatments,
    .section-why,
    .section-firstvisit,
    .section-steps,
    .section-clinic,
    .section-sedasyon,
    .section-faq { border-radius: 28px; margin-top: -28px; padding-top: 90px; }
    .section-cta { border-radius: 28px 28px 0 0; margin-top: -28px; padding-top: 100px; }
    .hero-section { border-radius: 0 0 28px 28px; }
}