/* ═══ LOGOS / TRUST BAR ═══ */
.trust {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border);
}

.trust__label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-sec);
    margin-bottom: 2rem;
    opacity: 0.6;
}

.trust__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem 3.5rem;
}

.trust__logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-sec);
    opacity: 0.5;
    letter-spacing: 0.02em;
    transition: opacity 0.4s;
}

.trust__logo-text:hover {
    opacity: 0.8;
    color: var(--burgundy);
}

/* ═══ MARQUEE ═══ */
.marquee {
    padding: 1.75rem 0;
    background: var(--charcoal);
    color: var(--champagne);
    overflow: hidden;
}

[data-theme="dark"] .marquee {
    background: var(--surface);
}

.marquee__track {
    display: flex;
    gap: 3rem;
    animation: mqScroll 40s linear infinite;
}

@keyframes mqScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee__item {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3rem;
    letter-spacing: 0.02em;
}

.marquee__sep {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
}

/* ═══ SECTION UTILS ═══ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--rose);
    margin-bottom: 1.25rem;
    font-family: var(--font-body);
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--rose);
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title em {
    font-style: italic;
    font-weight: 700;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-sec);
    max-width: 540px;
    line-height: 1.75;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-label {
    justify-content: center;
}

.section-header .section-label::before {
    display: none;
}

.section-header .section-desc {
    margin: 0 auto;
}

/* ═══ METHOD — 3-Step Process ═══ */
.method {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.method__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .method__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.method__step {
    position: relative;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: all 0.5s var(--ease);
}

.method__step:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--border-a);
}

.method__num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    background: var(--grad-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.method__step-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.method__step-desc {
    font-size: 0.9375rem;
    color: var(--text-sec);
    line-height: 1.7;
}

.method__connector {
    display: none;
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 1px;
    background: var(--border-a);
}

@media (min-width: 768px) {
    .method__connector {
        display: block;
    }

    .method__step:last-child .method__connector {
        display: none;
    }
}

/* ═══ COURSES — 3D Tilt Bento ═══ */
.courses {
    padding: var(--section-pad) 0;
    background: var(--bg-alt);
}

.bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bento {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: minmax(200px, auto);
    }

    .bento__item--feat {
        grid-column: span 7;
        grid-row: span 2;
    }

    .bento__item--reg:nth-child(2) {
        grid-column: span 5;
    }

    .bento__item--reg:nth-child(3) {
        grid-column: span 5;
    }

    .bento__item--wide {
        grid-column: 1 / -1;
    }
}

.bento__item {
    background: var(--surface);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.6s var(--ease);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.bento__item:hover {
    box-shadow: var(--sh-lg);
}

.bento__img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.bento__item--feat .bento__img {
    height: 100%;
    position: absolute;
    inset: 0;
}

.bento__item:hover .bento__img {
    transform: scale(1.04);
}

.bento__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(74, 30, 43, 0.88) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
}

.bento__tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.375rem 0.875rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    margin-bottom: 1rem;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.bento__tag--rose {
    background: rgba(107, 45, 62, 0.1);
    color: var(--burgundy);
    border-color: var(--border-a);
}

.bento__tag--gold {
    background: rgba(201, 169, 110, 0.12);
    color: var(--charcoal);
    border-color: var(--border-a);
}

[data-theme="dark"] .bento__item--reg .bento__tag--rose {
    background: rgba(196, 146, 138, 0.16);
    color: var(--rose-light);
    border-color: rgba(196, 146, 138, 0.35);
    box-shadow: 0 0 0 1px rgba(196, 146, 138, 0.12) inset;
}

[data-theme="dark"] .bento__item--reg .bento__tag--gold {
    background: rgba(201, 169, 110, 0.18);
    color: var(--gold-light);
    border-color: rgba(201, 169, 110, 0.35);
    box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.12) inset;
}

.bento__body {
    padding: 1.75rem;
}

.bento__item--feat .bento__body {
    position: relative;
    z-index: 2;
}

.bento__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bento__item--feat .bento__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: white;
}

.bento__desc {
    font-size: 0.9375rem;
    color: var(--text-sec);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.bento__item--feat .bento__desc {
    color: rgba(255, 255, 255, 0.75);
}

.bento__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.bento__item--feat .bento__footer {
    border-color: rgba(255, 255, 255, 0.15);
}

.bento__price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.bento__item--feat .bento__price {
    color: var(--gold-light);
}

.bento__link {
    font-weight: 600;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--rose);
    transition: gap 0.4s var(--ease);
    letter-spacing: 0.02em;
}

.bento__link[type="button"],
button.bento__link {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.bento__link:hover {
    gap: 0.875rem;
}

.bento__item--feat .bento__link {
    color: var(--gold-light);
}

.bento__link--multiline {
    white-space: normal;
    max-width: 20ch;
    line-height: 1.25;
    justify-content: flex-end;
    text-align: right;
}

/* ═══ BEFORE / AFTER SLIDER ═══ */
.ba {
    padding: var(--section-pad) 0;
}

.ba__wrap {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: var(--sh-xl);
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
}

.ba__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba__img--before {
    object-position: 50% 22%;
}

.ba__img--after {
    object-position: 50% 18%;
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.05s linear;
}

@media (max-width: 768px) {
    .ba__img--before {
        object-position: 50% 20%;
    }

    .ba__img--after {
        object-position: 50% 16%;
    }
}

.ba__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    z-index: 10;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: left 0.05s linear;
}

.ba__handle::after {
    content: 'drag_indicator';
    font-family: 'Material Symbols Rounded';
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--charcoal);
    box-shadow: var(--sh-md);
}

.ba__label {
    position: absolute;
    top: 1.25rem;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    z-index: 5;
}

.ba__label--before {
    left: 1.25rem;
}

.ba__label--after {
    right: 1.25rem;
}

/* ═══ ABOUT ═══ */
.about {
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about__visual {
    position: relative;
}

.about__img-main {
    border-radius: 32px;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: var(--sh-lg);
}

.about__accent {
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--grad-rose);
    border-radius: 28px;
    bottom: -2rem;
    right: -2rem;
    z-index: -1;
    opacity: 0.3;
}

.about__badge {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    background: var(--burgundy);
    color: var(--gold-light);
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    box-shadow: var(--sh-lg);
    z-index: 5;
}

.about__badge-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about__badge-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.75;
    margin-top: 0.25rem;
}

@media (max-width: 1023px) {
    .about__badge {
        left: 1rem;
    }
}

.about__content {
    max-width: 520px;
}

.about__text {
    font-size: 1.0625rem;
    color: var(--text-sec);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about__text strong {
    color: var(--text);
    font-weight: 600;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.about__stat-value {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    background: var(--grad-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about__stat-label {
    font-size: 0.8125rem;
    color: var(--text-sec);
    margin-top: 0.375rem;
}

/* ═══ TESTIMONIALS ═══ */
.expe {
    padding: var(--section-pad) 0;
    background: var(--bg-alt);
    text-align: center;
}

.expe__carousel {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}

.expe__viewport {
    overflow: hidden;
    border-radius: 28px;
    padding: 0.35rem;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0)),
        linear-gradient(135deg, rgba(232, 98, 134, 0.12), rgba(227, 180, 77, 0.06));
}

.expe__track {
    display: grid;
    grid-template-areas: "stack";
    position: relative;
}

.expe__slide {
    grid-area: stack;
    min-width: 0;
    padding: 0.65rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px) scale(0.992);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 700ms;
}

.expe__slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.expe__card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(1.6rem, 2.2vw, 2.25rem);
    text-align: left;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.expe__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
    border-color: var(--rose);
}

.expe__quote {
    font-size: clamp(1.15rem, 1rem + 0.55vw, 1.35rem);
    color: var(--text-sec);
    line-height: 1.72;
    margin-bottom: 1.35rem;
    letter-spacing: 0.005em;
}

.expe__author {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.expe__avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid color-mix(in srgb, var(--rose) 28%, var(--border));
    box-shadow: var(--sh-sm);
}

.expe__name {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2;
    color: var(--text);
}

.expe__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    margin-top: 1rem;
}

.expe__nav {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
    box-shadow: var(--sh-sm);
}

.expe__nav:hover {
    transform: translateY(-2px);
    border-color: var(--rose);
    box-shadow: var(--sh-md);
}

.expe__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 42px;
}

.expe__dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: color-mix(in srgb, var(--text-sec) 45%, transparent);
    cursor: pointer;
    padding: 0;
    transition: width 0.35s var(--ease), background-color 0.35s var(--ease), transform 0.25s var(--ease);
}

.expe__dot:hover {
    transform: scale(1.12);
}

.expe__dot.active {
    width: 26px;
    background: linear-gradient(135deg, var(--rose), var(--gold));
}

@media (max-width: 640px) {
    .expe__viewport {
        border-radius: 22px;
        padding: 0.25rem;
    }

    .expe__slide {
        padding: 0.35rem;
    }

    .expe__card {
        min-height: 0;
        padding: 1.35rem;
    }

    .expe__quote {
        font-size: 1.08rem;
        line-height: 1.68;
    }

    .expe__avatar {
        width: 72px;
        height: 72px;
    }

    .expe__name {
        font-size: 1.02rem;
    }

    .expe__controls {
        gap: 0.5rem;
    }

    .expe__nav {
        width: 44px;
        height: 44px;
    }

    .expe__dot {
        width: 10px;
        height: 10px;
    }

    .expe__dot.active {
        width: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .expe__track,
    .expe__slide,
    .expe__nav,
    .expe__dot,
    .expe__card {
        transition: none !important;
    }
}

/* ═══ ROI — Investment ═══ */
.roi {
    padding: var(--section-pad) 0;
    position: relative;
}

.roi__card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: 32px;
    padding: clamp(2rem, 5vw, 3.5rem);
    border: 1px solid var(--border);
    box-shadow: var(--sh-lg);
    text-align: center;
}

.roi__slider-group {
    margin: 2.5rem 0;
}

.roi__label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.roi__label {
    font-size: 0.875rem;
    color: var(--text-sec);
}

.roi__value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}

.roi__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--cream-deep);
    outline: none;
}

[data-theme="dark"] .roi__slider {
    background: rgba(255, 255, 255, 0.1);
}

.roi__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--burgundy);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(107, 45, 62, 0.3);
}

.roi__slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--burgundy);
    cursor: pointer;
    border: none;
}

.roi__result {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 20px;
    background: var(--grad-dark);
    color: var(--cream);
}

[data-theme="dark"] .roi__result {
    background: var(--burgundy);
}

.roi__result-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.roi__result-label + .roi__result-label {
    margin-top: 1rem;
}

.roi__result-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-light);
}

.roi__result-value--monthly {
    font-size: clamp(1.5rem, 2vw + 0.9rem, 2.1rem);
    color: rgba(255, 247, 226, 0.92);
    margin-bottom: 0.2rem;
}

.roi__result-sub {
    font-size: 0.875rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}

/* ═══ LEAD MAGNET ═══ */
/* ═══ LEAD MAGNET — CTA LEAD ═══ */
.cta-lead {
    padding: calc(var(--section-pad) * 1.5) 0;
    position: relative;
    background: var(--burgundy-deep);
    color: var(--cream);
}

.cta-lead__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-lead__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .cta-lead__inner {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.cta-lead__image {
    order: 2;
}

@media (min-width: 768px) {
    .cta-lead__image {
        order: 1;
    }
}

.cta-lead__img {
    border-radius: 24px;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: var(--sh-xl);
}

.cta-lead__content {
    order: 1;
}

@media (min-width: 768px) {
    .cta-lead__content {
        order: 2;
    }
}

.cta-lead__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 600;
    margin: 1rem 0;
    line-height: 1.2;
}

.cta-lead__title em {
    color: var(--gold-light);
    font-style: normal;
}

.cta-lead__desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Multi-step Form */
.mform {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mform__progress {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mform__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s var(--ease);
}

.mform__dot.active {
    background: var(--gold-light);
    width: 24px;
    border-radius: 5px;
}

.mform__step {
    display: none;
}

.mform__step.active {
    display: block;
    animation: fadeSlideIn 0.4s var(--ease);
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mform__input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--cream);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.mform__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.mform__input:focus {
    outline: none;
    border-color: var(--gold-light);
    background: rgba(255, 255, 255, 0.15);
}

.mform__disclaimer {
    margin-top: 1rem;
    font-size: 0.75rem;
    opacity: 0.6;
    text-align: center;
}

.mform__btn {
    width: 100%;
}

.mform__success {
    text-align: center;
    padding: 2rem;
}

.mform__success-mark {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mform__success h3 {
    margin-bottom: 0.5rem;
}

/* ═══ FAQ ═══ */
.faq {
    padding: var(--section-pad) 0;
    background: var(--bg-alt);
}

.faq__container {
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq__item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.faq__item.active {
    border-color: var(--rose);
    box-shadow: var(--sh-md);
}

.faq__trigger {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-alt);
    transition: transform 0.4s var(--ease);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
    background: var(--rose);
    color: white;
}

.faq__content {
    height: 0;
    overflow: hidden;
    transition: height 0.4s var(--ease);
}

.faq__body {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-sec);
    line-height: 1.7;
}

.faq__item.active .faq__content {
    height: auto;
}

/* ═══ CONTACT ═══ */
.contact {
    padding: var(--section-pad) 0;
    position: relative;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact__info {
    background: var(--charcoal);
    color: var(--ivory);
    padding: 3rem;
    border-radius: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

[data-theme="dark"] .contact__info {
    background: var(--surface);
    border: 1px solid var(--border);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.contact__item {
    display: flex;
    gap: 1rem;
}

.contact__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__icon .material-symbols-rounded {
    font-size: 1.375rem;
}

.contact__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin-bottom: 0.25rem;
}

.contact__value {
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.contact__form-wrap {
    padding: 1rem 0;
}

.contact__form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: var(--sh-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact__form .lead__input {
    background: var(--bg-alt);
}

.contact__submit {
    width: 100%;
}

.contact__help {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-sec);
}

.contact__whatsapp-link {
    color: var(--burgundy);
    font-weight: 700;
    text-decoration: underline;
}

.contact__form-status {
    margin-top: 0.25rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.8125rem;
    color: var(--burgundy);
    background: rgba(196, 146, 138, 0.15);
    border: 1px solid var(--border-a);
}
