/* ===== Reset / base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
    font-family: 'Inter', system-ui, 'Segoe UI', sans-serif;
    color: #161d29;
    background: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-locale: 'ro';
}
h1, h2, h3, h4, h5, .button {
    font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 {
    font-weight: 800;
    color: #161d29;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* ===== Variables ===== */
:root {
    --orange: #cf8000;
    --orange-light: #f4a300;
    --dark: #161d29;
    --gray-text: #5b566b;
    --border: #c6cbd4;
    --bg-soft: #f3f3f3;
    --radius-card: 24px;
    --shadow-soft: 0 0 10px rgba(0,0,0,0.08);
}

/* ===== Layout / page-content ===== */
.page-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 7rem clamp(1rem, 0.472rem + 2.254vw, 2.5rem) 0;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
}

/* ===== Header ===== */
.header {
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 500;
    height: 5.625rem;
    padding: 0 1.875rem;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-soft);
}
.header-left { display: flex; align-items: center; height: 100%; gap: 1.875rem; }
.header-logo { display: flex; align-items: center; }
.sek-logo { height: 56px; width: auto; }
.header-right {
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1;
    justify-content: flex-end;
    gap: 2rem;
}
.header-right nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.header-right .item-menu {
    font-size: 1rem;
    font-weight: 600;
    color: #3f4547;
    transition: color .2s;
}
.header-right .item-menu:hover { color: var(--orange); }
.header-right .button { text-transform: uppercase; }
.action { display: none; }
.header-button { padding: .75rem; border-radius: 6px; }
.header-button img { width: 28px; }
.header-menu { display: none; }

/* ===== Buttons ===== */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    font-weight: 800;
    font-size: 15px;
    height: 44px;
    padding: 11px 30px;
    border-radius: 8px;
    gap: 10px;
    transition: opacity .15s;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
}
.button:hover { opacity: 0.85; }
.button--primary { background: var(--orange); color: #fff; border: 1px solid var(--orange); }
.button--secondary { background: #fff; color: var(--gray-text); border: 1px solid var(--border); }
.button--rounded { border-radius: 32px; }
.button .icon { width: 16px; height: auto; }

/* ===== Hero ===== */
.hero-home {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    padding: clamp(1.5rem, 1.148rem + 1.502vw, 2.5rem) clamp(1rem, 0.472rem + 2.254vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    border-radius: var(--radius-card);
    overflow: hidden;
    z-index: 2;
}
.hero-home .image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-home .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-home .hero-content {
    position: relative;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}
.hero-home .card {
    padding: clamp(1.25rem, 0.85rem + 1.6vw, 2.25rem);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.3));
    border-radius: var(--radius-card);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    width: clamp(280px, 48%, 640px);
}
.hero-home .card .content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.hero-home .card h2 {
    color: #fff;
    font-size: clamp(1.4rem, 0.7rem + 1.7vw, 2.4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    text-shadow: 0 2px 18px rgba(0,0,0,0.45);
    white-space: normal;
}
.hero-home .card h2 span { color: #fff; display: inline-block; }
.hero-home .card .button { font-size: 14px; }
.hero-home .hero-logos { width: clamp(8.25rem, 4.553rem + 15.775vw, 18.75rem); }

/* ===== Experience section ===== */
.experience-home {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 1.62rem + 3.756vw, 5rem);
}
.experience-home h2 {
    position: relative;
    z-index: 2;
    font-size: clamp(1.75rem, 1rem + 2.5vw, 3.25rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}
.experience-home h2 .orange { color: var(--orange); }
.experience-home-stripes {
    position: absolute;
    top: -260px;
    right: -50px;
    width: 480px;
    height: auto;
    z-index: 1;
    opacity: .8;
    pointer-events: none;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.experience-home-content {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    position: relative;
    z-index: 2;
}
.experience-home-images {
    display: flex;
    gap: clamp(.5rem, .324rem + .751vw, 1rem);
    flex: 3;
}
.experience-images-col-left { flex: 1; position: relative; }
.experience-images-col-right { flex: 1; display: flex; flex-direction: column; gap: clamp(.5rem,.324rem + .751vw,1rem); }
.rw { display: flex; gap: clamp(.5rem,.324rem + .751vw,1rem); }
.cl { flex: 1; position: relative; }
.experience-home-img {
    border-radius: clamp(.625rem, .317rem + 1.315vw, 1.5rem);
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.experience-home-img.experience-home-img-left { height: clamp(9rem, 3.542rem + 23.286vw, 24.5rem); }
.experience-home-img.experience-home-img-right-top { height: clamp(4.875rem, 1.926rem + 12.582vw, 13.25rem); }
.experience-home-img.experience-home-img-right-middle { height: clamp(3.5rem, 1.299rem + 9.39vw, 9.75rem); }
.experience-home-img.experience-home-img-right-bottom { height: clamp(7.5rem, 2.967rem + 19.343vw, 20.375rem); }
.experience-home-ornament { background-color: var(--orange); border-radius: 24px; }
.experience-home-ornament-left {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: clamp(2.125rem, .805rem + 5.634vw, 5.875rem);
    height: clamp(1.75rem, .694rem + 4.507vw, 4.75rem);
    z-index: -1;
}
.experience-home-ornament-right {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: clamp(1.125rem, .465rem + 2.817vw, 3rem);
    height: clamp(.75rem, .266rem + 2.066vw, 2.125rem);
    z-index: -1;
}
.experience-home-data {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    justify-content: flex-end;
    padding: 0 0 1rem 1.5rem;
    width: 22rem;
    flex-shrink: 0;
}
.experience-home-title {
    font-size: clamp(1.125rem, .993rem + .563vw, 1.5rem);
    font-weight: 400;
    line-height: 1.4;
}
.experience-home-title b { color: var(--orange); font-weight: 700; }
.experience-home-description {
    font-size: clamp(1rem, .912rem + .376vw, 1.125rem);
    line-height: 1.55;
    color: var(--gray-text);
}

/* ===== Highlights ===== */
.highlights-home {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}
.highlights-item {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    gap: .25rem;
}
.highlights-item-icon { margin-bottom: .5rem; }
.highlights-item-icon img { width: 48px; height: 48px; }
.highlights-item-number {
    font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}
.highlights-item-title {
    font-size: 1.125rem;
    color: var(--gray-text);
    font-weight: 600;
}

/* ===== Inspiring section ===== */
.inspiring-home {
    position: relative;
    min-height: 30rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(2rem, .944rem + 4.507vw, 5rem) clamp(1.25rem, .5rem + 2.5vw, 3rem);
    border-radius: var(--radius-card);
    overflow: hidden;
}
.inspiring-image { position: absolute; inset: 0; }
.inspiring-image img { width: 100%; height: 100%; object-fit: cover; }
.overlay { position: absolute; inset: 0; pointer-events: none; }
.overlay--dark { background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.85) 100%); }
.overlay--light { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.85) 100%); }
.inspiring-content {
    position: relative;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 760px;
    text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.inspiring-title h2 {
    color: #fff;
    font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.015em;
    text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}
.inspiring-title .orange { color: #ffb13a; text-shadow: 0 2px 18px rgba(0,0,0,0.55); }
.inspiring-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.inspiring-text-description { font-size: 1.125rem; line-height: 1.55; }
.inspiring-text-description b { font-weight: 700; }

/* ===== Values marquee ===== */
.values-home {
    width: 100%;
    overflow-x: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    padding: 2rem 0;
}
.values-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    animation: marquee 45s linear infinite;
    font-size: clamp(1.25rem, .8rem + 1.6vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--dark);
    text-transform: uppercase;
    white-space: nowrap;
}
.values-list-separator { color: var(--orange); }
.values-home:hover .values-list { animation-play-state: paused; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== Methodology ===== */
.methodology-home {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: stretch;
}
.methodology-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    min-width: 0;
}
.methodology-text h3 {
    font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.25rem);
    line-height: 1.15;
    text-transform: uppercase;
    font-weight: 900;
}
.methodology-text-description {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--gray-text);
}
.methodology-image { min-height: 360px; }
.methodology-image {
    flex: 1;
    border-radius: var(--radius-card);
    overflow: hidden;
}
.methodology-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Sentence ===== */
.sentence-home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    padding: 0 clamp(0rem, -2.993rem + 12.77vw, 8.5rem);
    position: relative;
    z-index: 2;
}
.sentence-home h3 {
    font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.25rem);
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 900;
}
.sentence-home .orange { color: var(--orange); }
.sentence-home-description {
    font-size: clamp(1rem, .824rem + .751vw, 1.5rem);
    line-height: 1.5;
    color: var(--gray-text);
}

/* ===== Weeks ===== */
.weeks-home {
    position: relative;
    display: flex;
    gap: clamp(.5rem, .324rem + .751vw, 1rem);
    flex-direction: row;
}
.weeks-home-stripes {
    position: absolute;
    top: -8rem;
    left: -3rem;
    width: 12rem;
    height: auto;
    z-index: -1;
    opacity: .6;
    pointer-events: none;
}
.weeks-col-left, .weeks-col-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}
.week-cards-content { display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.weeks-col-left .week-cards-content { flex-direction: row; }
.weeks-item-image {
    border-radius: var(--radius-card);
    overflow: hidden;
    flex: 1;
    min-height: 200px;
}
.weeks-item-image img { width: 100%; height: 100%; object-fit: cover; }
.weeks-item-image-col-right { min-height: 280px; }

.weeks-item-cta {
    position: relative;
    background: var(--orange);
    color: #fff;
    border-radius: var(--radius-card);
    padding: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: var(--shadow-soft);
}
.weeks-item-cta-stripes {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 14rem;
    opacity: .35;
    pointer-events: none;
    z-index: 1;
}
.weeks-item-cta h5 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}
.weeks-item-cta-detail {
    background: #fff;
    color: var(--dark);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}
.weeks-item-detail-header {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid #eaeaea;
}
.weeks-detail-price {
    color: var(--orange);
    font-size: 1.5rem;
    font-weight: 900;
}
.weeks-detail-list-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .95rem;
    color: var(--gray-text);
}
.weeks-detail-list-item .icon { width: 18px; height: 18px; }
.weeks-detail-description { font-size: .85rem; color: var(--gray-text); margin-top: .25rem; }
.weeks-detail-list { display: flex; flex-direction: column; gap: .5rem; }
.weeks-detail-list .weeks-detail-list-item {
    justify-content: space-between;
    border-bottom: 1px dashed #eaeaea;
    padding-bottom: .5rem;
    color: var(--dark);
}
.weeks-detail-list .weeks-detail-list-item:last-child { border-bottom: none; }
.weeks-detail-list-item-week { font-weight: 700; }
.weeks-detail-list-item-date { color: var(--gray-text); }
.weeks-item-cta .button--secondary { align-self: flex-start; }

.weeks-item-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 1.25rem;
    box-shadow: var(--shadow-soft);
}
.weeks-item-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.weeks-item-icon img { width: 40px; height: 40px; flex-shrink: 0; }
.weeks-item-detail { display: flex; flex-direction: column; gap: .25rem; }
.weeks-item-title { font-weight: 800; font-size: 1.125rem; color: var(--dark); }
.weeks-item-description { font-size: .95rem; color: var(--gray-text); line-height: 1.4; }

/* ===== About ===== */
.about-home {
    position: relative;
    min-height: 35.125rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 3.5rem clamp(1rem, .472rem + 2.254vw, 2.5rem);
    border-radius: var(--radius-card);
    overflow: hidden;
}
.about-image { position: absolute; inset: 0; z-index: 0; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-shadow: 0 1px 14px rgba(0,0,0,0.4);
}
.about-logo {
    width: 110px;
    background: rgba(255,255,255,0.92);
    padding: .5rem .75rem;
    border-radius: 8px;
    align-self: flex-start;
}
.about-content h3 {
    color: #fff;
    font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.25rem);
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}
.about-content .orange { color: #ffb13a; }
.about-text { display: flex; flex-direction: column; gap: .85rem; }
.about-text p { font-size: 1.0625rem; line-height: 1.55; }
.about-text b { font-weight: 700; }

/* ===== FAQs ===== */
.faqs-home {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 1.148rem + 1.502vw, 2.5rem);
}
.faqs-home > h3.orange {
    color: var(--orange);
    font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
    font-weight: 900;
    letter-spacing: .04em;
}
.faqs-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-card {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    cursor: pointer;
    transition: box-shadow .2s;
}
.faq-card .faq-icon, .faq-card .faq-collapse-button { align-self: center; }
.faq-card:hover { box-shadow: 0 0 14px rgba(0,0,0,0.12); }
.faq-icon { width: 44px; height: 44px; flex-shrink: 0; }
.faq-card--header { flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.faq-card--ask {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
}
.faq-card--answer {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    max-height: 1000px;
    transition: max-height .35s ease;
}
.faq-card--answer.hidden-collapsed { max-height: 0; }
.faq-card--list-wrapper { display: flex; flex-direction: column; gap: .25rem; }
.faq-card--list { padding-left: 1.25rem; list-style: disc; }
.faq-card--list li { font-size: .95rem; line-height: 1.5; }
.faq-collapse-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    transition: transform .25s;
    pointer-events: none;
}
.faq-collapse-button .icon { width: 12px; filter: brightness(0) invert(1); }
.faq-card:not(.faq-collapsed) .faq-collapse-button { transform: rotate(180deg); }

/* ===== Contact ===== */
.contact-home {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: stretch;
}
.contact-data {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #fff;
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}
.contact-data h3 {
    font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.25rem);
    font-weight: 900;
    text-transform: uppercase;
}
.contact-data .orange { color: var(--orange); }
.contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(207,128,0,0.08);
    border-radius: 50%;
}
.contact-icon img { width: 22px; height: 22px; }
.contact-list-data {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.contact-list-data.flex { display: flex; }
.contact-list-data.flex-column { flex-direction: column; }
.contact-list-data.gap-16 { gap: 1rem; }
.contact-list-data.ve-mailto-color { color: var(--orange); }
.contact-list .button { align-self: flex-start; }
.contact-map {
    flex: 1;
    border-radius: var(--radius-card);
    overflow: hidden;
    min-height: 320px;
    box-shadow: var(--shadow-soft);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ===== Inscription CTA ===== */
.inscription-home {
    position: relative;
    height: 16.875rem;
    background: var(--orange);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 2rem clamp(1.5rem, 1rem + 2vw, 3rem);
    color: #fff;
}
.inscription-stripes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .25;
    pointer-events: none;
}
.inscription-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}
.inscription-text { display: flex; flex-direction: column; gap: .5rem; max-width: 60%; }
.inscription-text-title {
    font-size: clamp(1.75rem, 1.1rem + 2.5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}
.inscription-text-description {
    font-size: 1.125rem;
    line-height: 1.4;
    max-width: 540px;
}
.inscription-cta .button--primary {
    background: #fff;
    color: var(--orange);
    border-color: #fff;
}

/* ===== Footer ===== */
.footer {
    margin-top: 3rem;
    background: var(--orange);
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer img { max-height: 80px; width: auto; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .header-right nav { display: none; }
    .header-right .item-actions { display: none; }
    .action { display: block; }
    .header-button { background: var(--orange); border-radius: 50%; padding: .65rem; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
    .header-button img { width: 20px; filter: brightness(0) invert(1); }
    .header-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 600;
        transform: translateX(100%);
        transition: transform .25s;
    }
    .header-menu.open { transform: translateX(0); }
    .header-menu--topbar {
        display: flex;
        justify-content: flex-end;
        padding: 1.25rem 1.5rem;
    }
    .pro-x-icon { font-size: 2rem; line-height: 1; color: var(--dark); }
    .header-menu--list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.75rem;
        padding: 2rem;
    }
    .header-menu .item-menu {
        font-size: 1.5rem;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--dark);
    }
}

@media (max-width: 768px) {
    .hero-home {
        aspect-ratio: 4/5;
        padding: 1.25rem;
    }
    .hero-home .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .experience-home-content { flex-direction: column; }
    .experience-home-data { width: 100%; }
    .highlights-home { flex-direction: column; }
    .highlights-item { align-items: center; text-align: center; }
    .methodology-home { flex-direction: column; }
    .methodology-image { min-height: 300px; }
    .weeks-home { flex-direction: column; }
    .weeks-col-left .week-cards-content { flex-direction: column; }
    .contact-home { flex-direction: column; }
    .inscription-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .inscription-text { max-width: 100%; }
    .about-home { padding: 2rem 1.25rem; }
    .about-content { max-width: 100%; }
}

@media (max-width: 520px) {
    .page-content { padding-left: 1rem; padding-right: 1rem; }
    .hero-home .card { background: rgba(0,0,0,0.35); }
    .faq-card { flex-wrap: wrap; }
    .faq-icon { width: 36px; height: 36px; }
    .inscription-home { height: auto; padding: 1.5rem; }
    .inscription-text-title { font-size: 1.75rem; }
}
