/* =============================================================
   main.css — Nicoleta Adam · Ghid de stil personal
   Fonturi: Playfair Display (titluri) + Lato (text)
   Paleta: Blush #F5EDE8 · Roz praf #E8C8BB · Caramel #C49A8A
           Taupe #8B6B5E · Espresso #3D2B25 · Fond #F9F4F2
   ============================================================= */

/* ===========================
   1. VARIABILE CSS
   =========================== */
:root {
    /* ── Paleta generală site ───────────────────────────────────────────── */
    --blush:          #F5EDE8;   /* roz pal foarte deschis */
    --rose:           #E8C8BB;   /* roz praf */
    --caramel:        #C49A8A;   /* caramel mediu */
    --caramel-light:  #D4B09E;   /* caramel deschis — hover */
    --taupe:          #8B6B5E;   /* taupe mediu */
    --text-muted:     #7A5C50;   /* taupe accesibil — contrast 5.3:1 pe --h-cream */
    --espresso:       #3D2B25;   /* espresso — text principal, fundal footer */
    --fond:           #F9F4F2;   /* fond neutru */
    --petal:          #f0e8e0;   /* roz pal cald */
    --sand:           #e8d0c4;   /* nisip rozat */

    /* ── Paleta Hero — tonuri rich, dark ───────────────────────────────── */
    --h-dark:         #2C1810;   /* brun foarte închis */
    --h-mahogany:     #4A2218;   /* mahon */
    --h-burgundy:     #8B2635;   /* burgundy brand */
    --h-gold:         #C4956A;   /* auriu cald */
    --h-mocha:        #A07860;   /* mocha */
    --h-cream:        #F5EDE3;   /* cremă — fundal principal */
    --h-latte:        #EDD9B8;   /* latte */
    --h-warm-white:   #FFF7E9;   /* alb cald */
    --h-ivory:        #fdf8f5;   /* ivoire */

    /* ── Culori funcționale ─────────────────────────────────────────────── */
    --h-check:          #aa605f;   /* icon check pc-differentiator */
    --h-umber:          #5a3e38;   /* brun mediu — text pagina privacy */
    --h-mocha-light:    #a08070;   /* mocha deschis — text secondary privacy */
    --border-light:     #e8d8d0;   /* bordură delimitator subtilă */
    --whatsapp:         #0f6130;   /* verde WhatsApp accesibil — contrast 6.9:1 cu text alb */
    --whatsapp-hover:   #0a4e26;   /* verde WhatsApp hover */

    /* ── Canale RGB — pentru rgba() cu opacitate variabilă ─────────────── */
    /* Utilizare: rgba(var(--h-burgundy-rgb), 0.15) */
    --h-burgundy-rgb:   139, 38, 53;
    --h-mahogany-rgb:   74, 34, 24;
    --h-gold-rgb:       196, 149, 106;
    --h-dark-rgb:       44, 24, 16;
    --h-cream-rgb:      245, 237, 227;
    --h-milk-rgb:       255, 252, 248;
    --h-warm-white-rgb: 255, 247, 233;
    --espresso-rgb:     61, 43, 37;

    /* ── Tipografie ─────────────────────────────────────────────────────── */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', Arial, sans-serif;

    /* ── Layout ─────────────────────────────────────────────────────────── */
    --container: 1100px;
    --pad-section: 5rem;
    --radius: 8px;
    --transition: 0.25s ease;
}

/* ===========================
   2. RESET + BAZA
   =========================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::selection {
    background-color: var(--h-burgundy);
    color: var(--fond);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--espresso);
    background-color: var(--h-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* ===========================
   3. TIPOGRAFIE
   =========================== */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--espresso);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
}

p {
    max-width: 65ch;
}

/* ===========================
   4. CONTAINER
   =========================== */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* ===========================
   5. BUTOANE
   =========================== */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--espresso);
    color: var(--fond);
}

.btn-primary:hover {
    background-color: var(--taupe);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--espresso-rgb), 0.25);
}

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

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

/* ===========================
   6. NAVIGARE (sticky)
   =========================== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--petal);
    padding: 0.55rem 0;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 10px 10px;
}

.nav__brand {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--h-dark);
    flex-shrink: 0;
}

.nav__brand img {
    height: 38px;
    width: auto;
}

@media (max-width: 768px) {
    .nav__brand img {
        height: 28px;
    }
}

/* Linkuri secțiuni — împinse la dreapta pe desktop */
.nav__links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.nav__link {
    padding: 0.35rem 0.75rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition),
        background var(--transition), backdrop-filter var(--transition);
    white-space: nowrap;
}

.nav__link:hover {
    color: var(--h-dark);
    border-color: rgba(var(--h-gold-rgb), 0.35);
    background: rgba(var(--h-gold-rgb), 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav__link.is-active {
    color: var(--h-burgundy);
    border-color: rgba(var(--h-burgundy-rgb), 0.2);
    background: rgba(var(--h-burgundy-rgb), 0.04);
}

/* CTA din meniu — ascuns (butonul e în hero) */
.nav__links-cta {
    display: none;
}

.nav__cta-desktop {
    display: none;
}

/* Grup dreapta: hamburger */
.nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ===========================
   HAMBURGER — 3 linii → X
   =========================== */
.nav__toggle {
    display: none;
    /* ascuns pe desktop */
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    height: 2px;
    background-color: var(--h-dark);
    border-radius: 2px;
    transform-origin: center;
    transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

/* Când nav are clasa .nav--open → animație în X */
.nav--open .nav__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav--open .nav__toggle span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav--open .nav__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   7. HERO — liquid glass, modern
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(145deg, var(--h-dark) 0%, var(--h-mahogany) 50%, var(--h-burgundy) 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Orb decorativ fundal — blur luminos */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--h-gold-rgb), 0.18) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--h-burgundy-rgb), 0.25) 0%, transparent 70%);
    bottom: -80px;
    left: 10%;
    pointer-events: none;
}

/* Overlay întunecat peste imagine hero */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(var(--h-dark-rgb), 0.82) 0%,
            rgba(var(--h-mahogany-rgb), 0.72) 50%,
            rgba(var(--h-burgundy-rgb), 0.68) 100%);
    pointer-events: none;
}

/* Grid: text stânga + glass card dreapta */
.hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
    width: 100%;
}

.hero__left,
.hero__right {
    min-width: 0;
}

.hero__label {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--h-gold);
    font-weight: 700;
    margin-bottom: 1.4rem;
    display: block;
}

.hero__title {
    font-style: italic;
    color: var(--h-cream);
    margin-bottom: 1.4rem;
    line-height: 1.15;
    text-shadow: 0 4px 24px rgba(var(--h-dark-rgb), 0.5);
}

.hero__subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--h-latte);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.85;
    font-weight: 300;
}

/* Buton special pe hero dark */
.btn-hero {
    display: inline-block;
    padding: 1rem 2.4rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: var(--h-cream);
    color: var(--h-dark);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn-hero:hover {
    background: var(--h-latte);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(var(--h-dark-rgb), 0.4);
}

/* ---- Glass card dreapta ---- */
.hero__glass {
    background: rgba(var(--h-cream-rgb), 0.06);
    backdrop-filter: blur(32px) saturate(150%);
    -webkit-backdrop-filter: blur(32px) saturate(150%);
    border: 1px solid rgba(var(--h-cream-rgb), 0.14);
    border-radius: 24px;
    padding: 2.4rem;
    box-shadow:
        0 24px 64px rgba(var(--h-dark-rgb), 0.5),
        inset 0 1px 0 rgba(var(--h-cream-rgb), 0.12),
        inset 0 -1px 0 rgba(var(--h-dark-rgb), 0.15);
}

.hero__glass-bar {
    width: 36px;
    height: 2px;
    background: var(--h-gold);
    margin-bottom: 1.4rem;
    border-radius: 2px;
}

.hero__quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--h-cream);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: none;
}

/* Mini carduri 2×2 */
.hero__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.hero__card {
    background: rgba(var(--h-cream-rgb), 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--h-cream-rgb), 0.11);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    transition: background var(--transition), border-color var(--transition);
}

.hero__card:hover {
    background: rgba(var(--h-cream-rgb), 0.12);
    border-color: rgba(var(--h-gold-rgb), 0.35);
}

.hero__card-icon {
    font-size: 0.7rem;
    color: var(--h-gold);
    flex-shrink: 0;
    line-height: 1;
    align-self: flex-start;
    margin-top: 0.22rem;
}

.hero__card-text {
    font-size: 0.8rem;
    color: var(--h-latte);
    font-weight: 600;
    line-height: 1.45;
}

/* ===========================
   8. ELEMENTE COMUNE SECȚIUNI
   =========================== */
.section {
    padding: var(--pad-section) 0;
}

.section--fond {
    background-color: var(--h-cream);
}

.section--blush {
    background-color: var(--h-cream);
}

.section--rose {
    background-color: var(--h-cream);
}

.section--dark {
    background-color: var(--espresso);
    color: var(--fond);
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Etichetă mică deasupra titlului (ex: "PROGRAMUL INCLUDE") */
.section__label {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: block;
}

.section__title {
    font-style: italic;
    color: inherit;
}

.section__subtitle {
    color: var(--taupe);
    font-size: 1.05rem;
    margin-top: 0.8rem;
    margin-inline: auto;
    line-height: 1.8;
}

/* ===========================
   9. DESPRE PROIECT — glass
   =========================== */
.about-project {
    background: var(--h-cream);
    padding: var(--pad-section) 0;
}

.about-project__card {
    max-width: 760px;
    margin-inline: auto;
    background: rgba(var(--h-milk-rgb), 0.5);
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    border: 1px solid rgba(var(--h-gold-rgb), 0.25);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow:
        0 8px 40px rgba(var(--h-dark-rgb), 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.about-project__bar {
    width: 36px;
    height: 2px;
    background: var(--h-gold);
    border-radius: 2px;
    margin-bottom: 1.2rem;
}

.about-project__label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-project__title {
    font-style: italic;
    color: var(--h-dark);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.about-project__text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.95;
    font-weight: 300;
    max-width: 100%;
}

@media (max-width: 768px) {
    .about-project__card {
        padding: 2rem 1.5rem;
    }
}

/* ===========================
   9b. ABOUT — citat + descriere
   =========================== */
.about__inner {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.about__quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    color: var(--espresso);
    margin-bottom: 1.75rem;
    line-height: 1.5;
    max-width: 100%;
}

.about__body {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.95;
    font-weight: 300;
    max-width: 100%;
}

.about__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

.about__img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(var(--h-gold-rgb), 0.2);
    display: block;
}

.about__image-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 1.5rem;
}

@media (max-width: 480px) {
    .about__images {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   10. LECȚII — accordion <details>
   =========================== */

.lessons__list {
    max-width: 800px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lesson-item {
    background: rgba(var(--h-milk-rgb), 0.6);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    border: 1px solid rgba(var(--h-gold-rgb), 0.22);
    border-radius: 14px;
    overflow: hidden;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.lesson-item:hover {
    background: rgba(var(--h-milk-rgb), 0.85);
    border-color: rgba(var(--h-burgundy-rgb), 0.2);
    box-shadow: 0 4px 20px rgba(var(--h-dark-rgb), 0.07);
}

.lesson-item[open] {
    background: rgba(var(--h-milk-rgb), 0.85);
    border-color: rgba(var(--h-burgundy-rgb), 0.25);
}

.lesson-item summary {
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--h-burgundy);
    list-style: none;
    user-select: none;
}

.lesson-item summary::-webkit-details-marker {
    display: none;
}

.lesson-item summary::after {
    content: '+';
    margin-left: auto;
    font-size: 1.4rem;
    color: var(--h-gold);
    font-weight: 300;
    line-height: 1;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.lesson-item[open] summary::after {
    transform: rotate(45deg);
}

.lesson__nr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: rgba(var(--h-burgundy-rgb), 0.08);
    border: 1px solid rgba(var(--h-burgundy-rgb), 0.2);
    color: var(--h-burgundy);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.lesson__body {
    padding: 0 1.4rem 1.2rem 4.3rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ===========================
   11. FORMAT — 3 carduri glass
   =========================== */
.format-section {
    background: var(--h-cream);
}

.format-section__header {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 3rem;
}

.format-section__bar {
    width: 36px;
    height: 2px;
    background: var(--h-gold);
    border-radius: 2px;
    margin: 0 auto 1.2rem;
}

.format-section__label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.format-section__title {
    font-style: italic;
    color: var(--h-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.format-section__intro {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
    max-width: 100%;
}

.format__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.format__card {
    background: rgba(var(--h-milk-rgb), 0.55);
    backdrop-filter: blur(24px) saturate(130%);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    border: 1px solid rgba(var(--h-gold-rgb), 0.22);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.format__card:hover {
    background: rgba(var(--h-milk-rgb), 0.85);
    border-color: rgba(var(--h-burgundy-rgb), 0.22);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(var(--h-dark-rgb), 0.09);
}

.format__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(var(--h-burgundy-rgb), 0.07);
    border: 1px solid rgba(var(--h-burgundy-rgb), 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem;
    transition: background var(--transition);
}

.format__card:hover .format__icon-wrap {
    background: rgba(var(--h-burgundy-rgb), 0.12);
}

.format__icon-wrap i {
    font-size: 1.3rem;
    color: var(--h-burgundy);
}

.format__card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--h-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
}

.format__card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    font-weight: 300;
    max-width: 100%;
}

.format-section__footer {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    font-family: var(--font-heading);
    max-width: 620px;
    margin-inline: auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .format__grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   12. PENTRU CINE — liquid glass
   =========================== */

/* Fundal cu orbe de culoare — conținute în secțiune, nu ies afară */
.pentru-cine {
    background: var(--h-cream);
}

.pentru-cine__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.pentru-cine__bar {
    width: 48px;
    height: 3px;
    background: var(--h-burgundy);
    border-radius: 2px;
    margin: 0 auto 1rem;
}

.pentru-cine__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--h-burgundy);
    margin-bottom: 0.75rem;
}

.pentru-cine__title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: var(--h-dark);
    margin: 0;
}

/* Grid: înălțimi egale pe ambele coloane */
.pentru-cine__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.pentru-cine__left {
    display: flex;
    flex-direction: column;
}

.pentru-cine__right {
    display: flex;
    flex-direction: column;
}

/* ---- Stânga: lista — itemi egali cu grid ---- */
.pc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: grid;
    grid-auto-rows: 1fr;
    gap: 0.65rem;
}

.pc-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50px;
    padding: 0.9rem 1.4rem;
    color: var(--h-mahogany);
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 4px 20px rgba(var(--h-burgundy-rgb), 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pc-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50%;
    background: var(--h-burgundy);
}

.pc-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 28px rgba(var(--h-burgundy-rgb), 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* ---- Dreapta: card — liquid glass, umple înălțimea coloanei ---- */
.pc-differentiator {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--h-latte);
    border: 1px solid rgba(var(--h-gold-rgb), 0.25);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(var(--h-dark-rgb), 0.12);
}

.pc-differentiator__header {
    background: rgba(var(--h-burgundy-rgb), 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.75rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.pc-differentiator__header h3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--h-cream);
    margin: 0 0 0.5rem;
}

.pc-differentiator__header p {
    font-size: 0.875rem;
    color: var(--h-cream);
    margin: 0;
    line-height: 1.6;
}

/* Lista crește să umple spațiul rămas */
.pc-diff-list {
    list-style: none;
    padding: 1.5rem 2rem;
    margin: 0;
    background: rgba(255, 255, 255, 0.64);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    justify-content: center;
}

.pc-diff-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: var(--h-dark);
    font-size: 0.95rem;
    line-height: 1.55;
}

.pc-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: var(--h-check);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(var(--h-burgundy-rgb), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

.pc-check i {
    color: var(--h-cream);
    font-size: 0.58rem;
}

/* Footer: fundal opac, lipit jos */
.pc-differentiator__footer {
    background: rgba(var(--h-warm-white-rgb), 0.698);
    border-top: 1px solid rgba(var(--h-gold-rgb), 0.35);
    padding: 1.15rem 2rem;
    font-size: 0.875rem;
    color: var(--h-mahogany);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    flex-shrink: 0;
    align-self: stretch;
}

/* ===========================
   13. REZULTATE — liquid glass pe dark
   =========================== */
.results {
    background: linear-gradient(160deg, var(--h-cream) 0%, var(--h-latte) 50%, #f0dfd0 100%);
    position: relative;
    overflow: hidden;
}

/* Orbe pastel */
.results__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.results__orb--1 {
    width: 500px;
    height: 500px;
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(var(--h-burgundy-rgb), 0.10) 0%, transparent 65%);
}

.results__orb--2 {
    width: 380px;
    height: 380px;
    bottom: -60px;
    left: -60px;
    background: radial-gradient(circle, rgba(var(--h-gold-rgb), 0.14) 0%, transparent 65%);
}

.results__inner {
    position: relative;
    z-index: 1;
}

.results__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.results__bar {
    width: 48px;
    height: 2px;
    background: var(--h-burgundy);
    border-radius: 2px;
    margin: 0 auto 1rem;
}

.results__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--h-burgundy);
    margin-bottom: 0.75rem;
}

.results__title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: var(--h-dark);
    margin: 0 0 1rem;
}

.results__intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: auto;
    margin-right: auto;
}

/* Grid 4 carduri */
.results__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.result__card {
    background: rgba(var(--h-milk-rgb), 0.55);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 1.75rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 6px 28px rgba(var(--h-burgundy-rgb), 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.result__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(var(--h-burgundy-rgb), 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.result__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(var(--h-burgundy-rgb), 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(var(--h-burgundy-rgb), 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result__icon-wrap i {
    color: var(--h-burgundy);
    font-size: 1.1rem;
}

.result__body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.result__card-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--h-dark);
    margin: 0;
    line-height: 1.3;
}

.result__card-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Nota finală */
.results__note-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    background: rgba(var(--h-milk-rgb), 0.6);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50px;
    padding: 1.1rem 2rem;
    max-width: 680px;
    margin-inline: auto;
    box-shadow: 0 4px 20px rgba(var(--h-burgundy-rgb), 0.08);
}

.results__note-icon {
    color: var(--h-burgundy);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.results__note {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--h-dark);
    margin: 0;
    line-height: 1.5;
}

/* ===========================
   14. PREȚ / CTA — glass modern
   =========================== */
.pricing-section {
    background: var(--h-cream);
    position: relative;
    overflow: hidden;
    padding: var(--pad-section) 0;
}


.pricing-section__inner {
    position: relative;
    z-index: 1;
}

.pricing-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-section__bar {
    width: 48px;
    height: 2px;
    background: var(--h-burgundy);
    border-radius: 2px;
    margin: 0 auto 1rem;
}

.pricing-section__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--h-burgundy);
    margin-bottom: 0.75rem;
}

.pricing-section__title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: var(--h-dark);
    margin: 0;
}

/* Card principal */
.pricing__card {
    max-width: 560px;
    margin-inline: auto;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-top: 1px solid #fff;
    border-radius: 28px;
    padding: 3rem 2.75rem;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(var(--h-burgundy-rgb), 0.10),
        0 4px 16px rgba(var(--h-dark-rgb), 0.06),
        inset 0 1px 0 #fff;
}

.pricing__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--h-burgundy-rgb), 0.08);
    border: 1px solid rgba(var(--h-burgundy-rgb), 0.18);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--h-burgundy);
    margin-bottom: 1.25rem;
}

.pricing__badge i {
    font-size: 0.7rem;
}

.pricing__course-name {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--h-mahogany);
    margin: 0 0 1.75rem;
}

/* Preț */
.pricing__amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 2rem;
}

.price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.price-current {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--h-burgundy);
    line-height: 1;
}

.price-currency {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--h-burgundy);
    font-weight: 400;
    opacity: 0.75;
}

/* Features */
.pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    text-align: left;
    border-top: 1px solid rgba(var(--h-burgundy-rgb), 0.1);
    border-bottom: 1px solid rgba(var(--h-burgundy-rgb), 0.1);
    padding: 1.5rem 0;
}

.pricing__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--h-mahogany);
}

.pricing__features li i {
    color: var(--h-burgundy);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* CTA buton */
.pricing__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--h-burgundy) 0%, #6d1e2a 100%);
    color: var(--h-cream);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 28px rgba(var(--h-burgundy-rgb), 0.35);
}

.pricing__cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(var(--h-burgundy-rgb), 0.45);
}

.pricing__cta-btn i {
    font-size: 0.9rem;
}

/* Trust badges */
.pricing__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing__trust span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.pricing__trust i {
    color: var(--h-burgundy);
    font-size: 0.72rem;
}

/* Motto */
.pricing__motto-wrap {
    text-align: center;
    margin-top: 3rem;
    max-width: 580px;
    margin-inline: auto;
}

.pricing__motto-main {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--h-mahogany);
    line-height: 1.65;
    margin: 0 0 1rem;
}

.pricing__motto-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   15. INSTRUCTOR — redesign modern glass
   =========================== */
.instructor-section {
    background: var(--h-cream);
    padding: var(--pad-section) 0;
    position: relative;
    overflow: hidden;
}


.instructor-section__inner {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ---- Coloana stânga ---- */
.instructor-section__left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.instructor-section__photo-wrap {
    position: relative;
}

.instructor-section__photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 60px rgba(var(--h-dark-rgb), 0.18);
}

/* Badge plutitor pe colțul pozei */
.instructor-section__photo-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 0.55rem 1.1rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--h-burgundy);
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(var(--h-dark-rgb), 0.12);
}

.instructor-section__photo-badge i {
    color: var(--h-gold);
    font-size: 0.72rem;
}

/* Taguri orizontale sub titlu */
.instructor-section__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 2rem;
}

.instructor-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 0.25rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--h-mahogany);
    white-space: nowrap;
}

.instructor-tag i {
    color: var(--h-burgundy);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* ---- Coloana dreapta ---- */
.instructor-section__right {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 1.5rem;
}

.instructor-section__tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.instructor-section__bar {
    width: 32px;
    height: 2px;
    background: var(--h-burgundy);
    border-radius: 2px;
    flex-shrink: 0;
}

.instructor-section__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--h-burgundy);
    display: block;
    margin-bottom: 0.6rem;
}

.instructor-section__name {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--h-dark);
    margin: 0 0 1.1rem;
    line-height: 1.15;
}

.instructor-section__bio {
    font-size: 0.97rem;
    color: var(--h-mahogany);
    line-height: 1.9;
    margin: 0 0 2rem;
}

.instructor-section__divider {
    width: 40px;
    height: 2px;
    background: var(--h-gold);
    border-radius: 2px;
    margin: 0.5rem 0 1.25rem;
}


/* Highlights glass */
.instructor-section__highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.instructor-highlight {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(18px) saturate(155%);
    -webkit-backdrop-filter: blur(18px) saturate(155%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    font-size: 0.92rem;
    color: var(--h-dark);
    font-weight: 500;
    box-shadow: 0 3px 14px rgba(var(--h-dark-rgb), 0.06);
}

.instructor-highlight i {
    color: var(--h-burgundy);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* ===========================
   16. TESTIMONIALE — modern glass carousel
   =========================== */
.testimonials-section {
    background: var(--h-cream);
    padding: var(--pad-section) 0 0;
    overflow: hidden;
}

.testimonials-section__header {
    text-align: center;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials-section__bar {
    width: 48px;
    height: 2px;
    background: var(--h-burgundy);
    border-radius: 2px;
    margin: 0 auto 1rem;
}

.testimonials-section__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--h-burgundy);
    margin-bottom: 0.75rem;
}

.testimonials-section__title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: var(--h-dark);
    margin: 0 0 0.75rem;
}

.testimonials-section__sub {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0 auto;
}

/* Wrapper carousel */
.carousel-wrapper {
    position: relative;
    padding: 0.5rem 0 2.5rem;
}

/* Banda de carduri */
.carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 2.5rem 1.25rem 0;
    margin-left: 2.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}


/* Card testimonial */
.testimonial-card {
    scroll-snap-align: start;
    flex: 0 0 min(320px, calc(100vw - 5rem));
    min-width: min(320px, calc(100vw - 5rem));
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px) saturate(155%);
    -webkit-backdrop-filter: blur(20px) saturate(155%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 22px;
    padding: 2rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: transform 0.22s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Ghilimele */
.testimonial-card__quote-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(var(--h-burgundy-rgb), 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card__quote-icon i {
    color: var(--h-burgundy);
    font-size: 0.85rem;
}

/* Stele */
.testimonial-card__stars {
    display: flex;
    gap: 0.2rem;
}

.testimonial-card__stars i {
    color: var(--h-gold);
    font-size: 0.75rem;
}

/* Text */
.testimonial-card__text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.98rem;
    color: var(--h-dark);
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

/* Footer: avatar + nume */
.testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(var(--h-burgundy-rgb), 0.09);
    margin-top: auto;
}

.testimonial-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--h-burgundy), var(--h-gold));
    color: var(--h-cream);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--h-mahogany);
    letter-spacing: 0.03em;
}

/* Butoane prev / next */
.carousel-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--h-burgundy);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(var(--h-dark-rgb), 0.1);
    transition: background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    opacity: 0;
    pointer-events: none;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 24px rgba(var(--h-dark-rgb), 0.15);
}

.carousel-btn.carousel-btn--visible {
    opacity: 1;
    pointer-events: auto;
}

.carousel-btn--prev {
    left: 0.75rem;
}

.carousel-btn--next {
    right: 0.75rem;
}

.carousel-btn:disabled {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

/* Placeholder */
.testimonials__placeholder {
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
}

.testimonials__placeholder i {
    font-size: 2rem;
    color: var(--h-gold);
    opacity: 0.5;
}

/* ===========================
   17. FAQ — accordion <details>
   =========================== */
.faq__list {
    max-width: 750px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--rose);
}

.faq-item summary {
    padding: 1.25rem 0.5rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--espresso);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    user-select: none;
    font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--caramel);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform var(--transition);
    line-height: 1.2;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item__body {
    padding: 0 0.5rem 1.25rem;
    color: var(--taupe);
    line-height: 1.85;
    font-size: 0.97rem;
}

.faq__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    /* margin-top: 3rem; */
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    text-align: center;
}

.faq__contact-text {
    font-size: 1rem;
    color: var(--h-mahogany);
    margin: 0;
}

.faq__contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--whatsapp);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.faq__contact-btn i {
    font-size: 1.15rem;
}

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

/* ===========================
   18. FOOTER
   =========================== */
.footer {
    background-color: var(--espresso);
    color: var(--rose);
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.footer a {
    color: var(--caramel);
    transition: color var(--transition);
}

.footer a:hover {
    color: var(--fond);
}

.footer__company {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--caramel);
    margin-bottom: 10px;
}

.footer__contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1.5rem;

}

.footer__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--caramel);
    text-decoration: none;
    transition: color 0.2s;
}

a.footer__contact-item:hover {
    color: var(--caramel-light);
}

.footer__contact-item i {
    font-size: 0.7rem;
}

.footer__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    
}

.footer__logo {
    height: 22px;
    width: auto;
    transition: opacity 0.2s ease;
    opacity: 0.7;
    transition: 0.2s ease;
}

.footer__logo:hover {
    opacity: 1;

}

.footer__copyright {
    font-size: 0.8rem;
    color: var(--caramel);
    margin-top: 1.5rem;
}


/* PRIVACE POLICY */

 .privacy-hero {
            background: var(--blush);
            padding: 3rem 0 2.5rem;
            border-bottom: 1px solid var(--sand);
        }
        .privacy-hero__label {
            font-size: 0.72rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--caramel);
            margin-bottom: 0.6rem;
        }
        .privacy-hero__title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-style: italic;
            color: var(--espresso);
            line-height: 1.25;
            margin: 0;
        }
        .privacy-body {
            padding: 3rem 0 4rem;
        }
        .privacy-body h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            color: var(--espresso);
            margin: 2.5rem 0 0.75rem;
        }
        .privacy-body h2:first-child {
            margin-top: 0;
        }
        .privacy-body p,
        .privacy-body li {
            font-size: 0.97rem;
            color: var(--h-umber);
            line-height: 1.75;
            max-width: 100%;
        }
        .privacy-body ul {
            padding-left: 1.5rem;
            margin: 0.5rem 0;
        }
        .privacy-body li {
            margin-bottom: 0.35rem;
        }
        .privacy-note {
            background: var(--h-ivory);
            border: 1px solid var(--sand);
            border-left: 4px solid var(--caramel);
            border-radius: 6px;
            padding: 1rem 1.25rem;
            margin: 1.25rem 0;
        }
        .privacy-note p {
            margin: 0;
        }
        .privacy-updated {
            font-size: 0.82rem;
            color: var(--h-mocha-light);
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-light);
        }

/* ===========================
   19. RESPONSIVE
   =========================== */


@media (max-width:1024px) {

    .instructor-section__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        }

        .instructor-section__bio 
        {
            min-width: 100%;
        }
}


@media (max-width: 768px) {
    :root {
        --pad-section: 3rem;
    }

    /* --- Nav mobil --- */
    .nav__toggle {
        display: flex;
    }

    /* apare hamburger-ul */
    .nav__cta-desktop {
        display: none;
    }

    /* ascunde CTA din header */
    .nav__links-cta {
        display: block;
        padding: 0.5rem 1rem 1rem;
    }

    /* Meniu vertical — ascuns implicit, apare la .nav--open */
    .nav__links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-left: 0;
        background: #ffffff;
        border-bottom: 1px solid var(--petal);
        box-shadow: 0 8px 24px rgba(var(--h-dark-rgb), 0.08);

        /* Stare închisă: ascuns cu height 0 + overflow hidden */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    /* Stare deschisă — JS adaugă .nav--open pe <nav> */
    .nav--open .nav__links {
        max-height: 400px;
    }

    .nav__link {
        display: block;
        padding: 0.85rem 1.5rem;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--petal);
        font-size: 0.8rem;
        color: var(--text-muted);
        background: transparent;
    }

    /* --- Hero mobil: coloană unică --- */
    .hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 3rem;
        padding-bottom: 3.5rem;
    }

    .hero__subtitle {
        max-width: 100%;
    }

    .hero__glass {
        padding: 1.5rem;
    }

    .hero__cards {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .hero__card {
        padding: 0.75rem 0.85rem;
    }

    /* --- Restul paginii --- */
    .pentru-cine__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }

    .pentru-cine__right {
        flex: none;
    }

    .pc-differentiator {
        flex: none;
    }

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

    .instructor-section__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .instructor-section__left {
        max-width: 320px;
        margin-inline: auto;
        width: 100%;
    }

    .instructor-section__right {
        padding-top: 0;
    }

    .instructor-section__tags {
        gap: 0.45rem;
    }

    .pricing__card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .lesson__body {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
    }

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

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

    .results__note-wrap {
        border-radius: 16px;
        padding: 1rem 1.25rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        display: block;
    }

    .nav .btn {
        width: auto;
        display: inline-block;
    }

    .pricing__trust {
        gap: 0.85rem;
    }

    .price-current {
        font-size: 3rem;
    }

    .footer__contacts {
        flex-direction: column;

    }
}
/* ============================================================
   BACK TO TOP — buton fix dreapta-jos
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(var(--h-burgundy-rgb),.45);
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    color: var(--h-burgundy);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(var(--h-burgundy-rgb),.18),
                inset 0 1px 0 rgba(255,255,255,.35);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease,
                background .2s ease, color .2s ease,
                box-shadow .2s ease, border-color .2s ease;
    z-index: 900;
}
.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.back-to-top:hover {
    background: rgba(var(--h-burgundy-rgb),.72);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-color: rgba(var(--h-burgundy-rgb),.8);
    color: #fff;
    box-shadow: 0 8px 28px rgba(var(--h-burgundy-rgb),.35),
                inset 0 1px 0 rgba(255,255,255,.2);
    transform: translateY(-2px);
}

/* ============================================================
   404 — PAGINA NOT FOUND
   ============================================================ */
.not-found {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: var(--fond);
}

.not-found__inner {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

.not-found__code {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 20vw, 9rem);
    font-style: italic;
    color: var(--rose);
    line-height: 1;
    margin: 0 0 0.5rem;
}

.not-found__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-style: italic;
    color: var(--espresso);
    margin: 0 0 1.25rem;
}

.not-found__text {
    font-size: 1rem;
    color: var(--taupe);
    line-height: 1.75;
    margin: 0 0 2.5rem;
}

.not-found__btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    justify-content: center;
}
