:root {
    --bg: #f7f2ed;
    --bg-soft: #fffaf7;
    --paper: #ffffff;
    --ink: #1f2c35;
    --muted: #66747d;
    --line: rgba(31, 44, 53, 0.12);
    --primary: #2f6f73;
    --primary-dark: #1f565a;
    --primary-soft: #dfeef0;
    --accent: #c98f62;
    --accent-soft: #f4dfd0;
    --white: #ffffff;
    --rose: #e9b7b7;
    --shadow: 0 28px 80px rgba(31, 44, 53, 0.14);
    --shadow-soft: 0 18px 46px rgba(31, 44, 53, 0.09);
    --radius-lg: 36px;
    --radius-md: 24px;
    --radius-sm: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 8%, rgba(201, 143, 98, 0.18), transparent 30%),
        radial-gradient(circle at 92% 18%, rgba(47, 111, 115, 0.16), transparent 32%),
        linear-gradient(180deg, #fbf7f2 0%, var(--bg) 46%, #ffffff 100%);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1160px, calc(100% - 44px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 18px 0;
    background: rgba(250, 247, 242, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(31, 44, 53, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    row-gap: 10px;
    flex-wrap: wrap;
}

.brand {
    flex: 0 0 auto;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 760px;
    gap: 16px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 4px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-links::-webkit-scrollbar {
    display: none;
}

.nav-links a {
    padding: 8px 0;
    transition: color 0.2s ease;
    white-space: nowrap;
}

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

.nav-cta {
    padding: 10px 16px;
    color: var(--white);
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 12px 24px rgba(47, 111, 115, 0.2);
}

.nav-cta:hover {
    color: var(--white);
    background: var(--primary-dark);
}


.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent),
        linear-gradient(135deg, var(--primary), #8bbab4);
    box-shadow: 0 14px 30px rgba(47, 111, 115, 0.26);
    position: relative;
    flex: 0 0 auto;
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50% 50% 50% 12px;
    transform: rotate(-18deg);
}

.hero {
    position: relative;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    padding: 76px 0 96px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 28%, rgba(233, 183, 183, 0.34), transparent 30%),
        radial-gradient(circle at 18% 76%, rgba(47, 111, 115, 0.12), transparent 28%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.78fr);
    align-items: center;
    gap: 64px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--primary-dark);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero h1,
.intro h2,
.types h2,
.note-card h2,
.contact-card h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    color: var(--ink);
    line-height: 1.06;
    letter-spacing: -0.055em;
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(3rem, 7vw, 6.15rem);
}

.hero-subtitle {
    max-width: 690px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(1.06rem, 1.5vw, 1.25rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    font-family: inherit;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 18px 34px rgba(47, 111, 115, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 24px 48px rgba(47, 111, 115, 0.34);
}

.btn-secondary {
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.hero-visual {
    position: relative;
}

.hero-video {
    width: 100%;
    min-height: 590px;
    object-fit: cover;
    border-radius: 44px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    font-family: inherit;
    color: var(--white);
    background: #25D366;
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(37, 211, 102, 0.34);
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 22px -18px -18px 22px;
    z-index: -1;
    border-radius: 44px;
    background: linear-gradient(135deg, var(--accent-soft), var(--primary-soft));
}

.hero-badge {
    position: absolute;
    left: -22px;
    bottom: -26px;
    width: min(330px, calc(100% - 36px));
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.hero-badge span,
.hero-badge strong {
    display: block;
}

.hero-badge span {
    color: var(--muted);
    font-weight: 700;
    font-size: 0.88rem;
}

.hero-badge strong {
    margin-top: 6px;
    font-size: 1.22rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.intro {
    padding: 34px 0 82px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    gap: 58px;
    align-items: start;
}

.intro h2,
.types h2 {
    font-size: clamp(2.35rem, 4.4vw, 4.35rem);
}

.intro p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.intro p + p {
    margin-top: 18px;
}

.types {
    padding: 92px 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 18%, rgba(255, 255, 255, 0.82) 82%, rgba(255, 255, 255, 0) 100%);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 38px;
}

.section-heading p:last-child {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.groups {
    display: grid;
    gap: 24px;
}

.anxiety-group {
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow-soft);
}

.group-heading {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: start;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.group-number {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--primary-dark);
    background: var(--primary-soft);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.group-heading h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.group-heading p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.type-card {
    min-height: 168px;
    padding: 22px;
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
        radial-gradient(circle at 90% 10%, rgba(201, 143, 98, 0.16), transparent 34%);
    border: 1px solid rgba(31, 44, 53, 0.08);
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.type-card:nth-child(n) {
    transform: none;
    transition-delay: 0s;
}

.type-card.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.type-card.is-visible:hover {
    transition-delay: 0s;
}

.type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(31, 44, 53, 0.12);
}

.type-card h4 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.type-card p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.note {
    padding: 30px 0;
}

.note-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr auto;
    gap: 32px;
    align-items: center;
    padding: clamp(30px, 5vw, 58px);
    border-radius: 42px;
    background:
        radial-gradient(circle at 92% 16%, rgba(255, 255, 255, 0.34), transparent 28%),
        linear-gradient(135deg, #20303a, #2f6f73);
    box-shadow: var(--shadow);
    color: var(--white);
}

.note-card h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.note-card p {
    color: rgba(255, 255, 255, 0.78);
}

.note-card .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.note-card p:not(.eyebrow) {
    margin: 0;
    font-size: 1.05rem;
}

.note-card .btn {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: none;
}

.contact {
    padding: 90px 0 110px;
}

.contact-card {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 46px;
    align-items: start;
    padding: clamp(30px, 5vw, 58px);
    border-radius: 42px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.contact-card p {
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 14px;
    padding: 24px;
    border-radius: 30px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 700;
    font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(31, 44, 53, 0.12);
    border-radius: 16px;
    padding: 15px 16px;
    color: var(--ink);
    background: var(--white);
    outline: none;
    font: inherit;
    transition: border 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(31, 44, 53, 0.38);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(47, 111, 115, 0.52);
    box-shadow: 0 0 0 4px rgba(47, 111, 115, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.form-note {
    margin: 0;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(47, 111, 115, 0.08);
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.site-footer {
    padding: 44px 0 34px;
    background: #fffaf6;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: start;
}

.footer-grid p {
    max-width: 560px;
    margin: 18px 0 0;
    color: var(--muted);
}

.footer-grid strong {
    display: block;
    margin-bottom: 10px;
}

.footer-grid a:not(.brand) {
    display: block;
    color: var(--muted);
    font-weight: 700;
}

.footer-grid a:not(.brand):hover {
    color: var(--primary-dark);
}

.copyright {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.9rem;
}

.copyright p {
    margin: 0;
}

.symptoms {
    padding: 92px 0;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 38px;
}

.symptom-card {
    min-height: 140px;
    padding: 22px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.64)), radial-gradient(circle at 90% 10%, rgba(201, 143, 98, 0.16), transparent 34%);
    border: 1px solid rgba(31, 44, 53, 0.08);
}

.symptom-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-weight: 900;
    margin-bottom: 12px;
}

.symptoms-cta {
    margin-top: 48px;
    text-align: center;
    padding: 28px;
    background: var(--primary-soft);
    border-radius: var(--radius-md);
}

.symptoms-cta p {
    margin: 0 0 18px;
    color: var(--ink);
}

.protocol {
    padding: 92px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 18%, rgba(255, 255, 255, 0.82) 82%, rgba(255, 255, 255, 0) 100%);
}

.protocol-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 38px;
}

.protocol-step {
    padding: 28px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.protocol-step .step-number {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--primary);
    color: var(--white);
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.protocol-step h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    line-height: 1.3;
}

.protocol-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.process {
    padding: 92px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 38px;
}

.process-step {
    text-align: center;
    padding: 24px;
}

.process-step .step-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.process-step h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.process-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 1040px) {
    .hero-grid,
    .intro-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 58px;
    }

    .hero-video,
    .hero-visual img {
        min-height: 460px;
    }

    .type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .note-card {
        grid-template-columns: 1fr;
    }

    .note-card .btn {
        width: fit-content;
    }

    .symptoms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .protocol-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .type-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn,
    .nav-links a,
    .nav-cta {
        transition: none;
    }
}

.article-tag {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--primary-dark);
    background: var(--primary-soft);
    font-size: 0.78rem;
    font-weight: 800;
}

.video-section {
    padding: 92px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 18%, rgba(255, 255, 255, 0.82) 82%, rgba(255, 255, 255, 0) 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 48px;
    align-items: center;
}

.video-frame {
    border-radius: 38px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: #101820;
}

.video-frame video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.note-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn-light {
    color: var(--primary-dark);
    background: var(--white);
    box-shadow: none;
}

.btn-outline-light {
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: none;
}

.children {
    padding: 92px 0;
}

.children-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.children h2 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--ink);
    line-height: 1.06;
    letter-spacing: -0.055em;
    font-size: clamp(2.35rem, 4.4vw, 4.35rem);
    margin: 0 0 22px;
}

.children p {
    color: var(--muted);
    font-size: 1.05rem;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.pill-list span {
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--primary-dark);
    background: var(--primary-soft);
    font-weight: 800;
    font-size: 0.9rem;
}

.children-card {
    padding: clamp(28px, 4vw, 44px);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.children-card h3 {
    margin: 0 0 14px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.children-card p {
    margin: 0 0 24px;
}

.quiz {
    padding: 92px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 18%, rgba(255, 255, 255, 0.82) 82%, rgba(255, 255, 255, 0) 100%);
}

.quiz-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
    padding: clamp(28px, 5vw, 56px);
    border-radius: 42px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.quiz h2 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--ink);
    line-height: 1.06;
    letter-spacing: -0.055em;
    font-size: clamp(2.2rem, 4vw, 4rem);
    margin: 0 0 18px;
}

.quiz p {
    color: var(--muted);
    font-size: 1.05rem;
}

.quiz-form {
    display: grid;
    gap: 18px;
}

.quiz-question {
    margin: 0;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--bg-soft);
}

.quiz-question legend {
    padding: 0;
    margin-bottom: 14px;
    font-weight: 800;
    color: var(--ink);
}

.quiz-question label {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
    cursor: pointer;
}

.quiz-result {
    padding: 22px;
    border-radius: var(--radius-md);
    background: var(--primary-soft);
    color: var(--ink);
}

.quiz-result h3 {
    margin: 0 0 8px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.8rem;
    letter-spacing: -0.035em;
}

.quiz-result p {
    margin: 0 0 18px;
}

.blog-preview,
.events-preview {
    padding: 92px 0;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 38px;
}

.event-card {
    padding: 28px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.event-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.event-card p {
    margin: 0;
    color: var(--muted);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.contact-methods strong {
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
}

.contact-methods p {
    margin: 0 0 12px;
}

.contact-form select {
    width: 100%;
    border: 1px solid rgba(31, 44, 53, 0.12);
    border-radius: 16px;
    padding: 15px 16px;
    color: var(--ink);
    background: var(--white);
    outline: none;
    font: inherit;
}

.booking-message {
    padding: 18px;
    border-radius: var(--radius-md);
    background: var(--primary-soft);
    color: var(--ink);
}

.booking-message p {
    margin: 0 0 14px;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 900px;
}

.faq-item {
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-item summary {
    padding: 22px 26px;
    cursor: pointer;
    font-weight: 800;
    color: var(--ink);
    list-style-position: inside;
}

.faq-item p {
    margin: 0;
    padding: 0 26px 22px;
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.88);
}

.check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.check-list li::before {
    content: "✓";
    color: var(--white);
    font-weight: 900;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 22px;
    border-radius: 999px;
    color: var(--white);
    background: #25D366;
    box-shadow: 0 18px 44px rgba(37, 211, 102, 0.34);
    font-weight: 900;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 56px rgba(37, 211, 102, 0.42);
}

@media (max-width: 760px) {
    .nav {
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }

    .nav-cta {
        flex: 0 0 auto;
    }

    .hero-visual::before {
        inset: 18px -10px -10px 18px;
    }

    .hero-video,
    .hero-visual img {
        min-height: 360px;
        border-radius: 32px;
    }

    .hero-badge {
        left: 18px;
        bottom: -20px;
    }

    .video-grid,
    .quiz-card,
    .children-grid {
        grid-template-columns: 1fr;
    }

    .intro,
    .types,
    .contact,
    .symptoms,
    .protocol,
    .process,
    .video-section,
    .children,
    .quiz,
    .blog-preview,
    .events-preview {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .group-heading {
        grid-template-columns: 1fr;
    }

    .type-grid,
    .event-grid,
    .protocol-steps,
    .process-steps,
    .symptoms-grid {
        grid-template-columns: 1fr;
    }

    .note-card,
    .contact-card,
    .quiz-card {
        border-radius: 30px;
    }

    .contact-form {
        padding: 16px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 52px;
        padding: 0 16px;
    }
}
