/* =========================================
   DISTRIBUTOR PAGE — /devino-distribuitor

   Mobile first: the base rules target phones, then the layout
   opens up at 600px (phablet), 768px (tablet), 993px (desktop).
   Breakpoints follow the header sizes in layout/grid.css, so the
   hero always clears the logo.
   ========================================= */

/* ── Soft background, same treatment as the contact page ── */
.dist-soft-bg {
    position: relative;
    background-image: url('/assets/images/shared/bg-sectiuni.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.dist-soft-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.82);
    z-index: 0;
    pointer-events: none;
}

.dist-soft-bg > .container {
    position: relative;
    z-index: 1;
}

/* ── Shared section typography ───────────────────────────── */
.dist-section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
}

.dist-section__eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.dist-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 5.5vw, 2.6rem);
    font-weight: 700;
    color: var(--color-dark-green);
    margin: 0;
    line-height: 1.2;
}

.dist-section__header .gold-underline {
    margin: 16px auto 18px;
}

.dist-section__subtitle {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    opacity: 0.8;
    line-height: 1.7;
    margin: 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.dist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 28px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.dist-btn--primary {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.dist-btn--primary:hover {
    background: #a8842e;
    border-color: #a8842e;
    box-shadow: 0 8px 20px rgba(193, 154, 70, 0.28);
    opacity: 1;
}

.dist-btn--light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.dist-btn--light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    opacity: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.dist-hero {
    position: relative;
    display: flex;
    /* fills the screen; svh keeps it honest with the iOS URL bar */
    min-height: 100vh;
    min-height: 100svh;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--color-text-light);
    /* top padding clears the fixed logo, which grows with the breakpoints */
    padding: 128px 0 48px;
}

/* Soft scrim at the bottom so the stats row stays readable over the photo */
.dist-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 260px;
    background: linear-gradient(to bottom,
        rgba(20, 32, 22, 0) 0%,
        rgba(20, 32, 22, 0.45) 45%,
        rgba(20, 32, 22, 0.88) 100%);
    pointer-events: none;
    z-index: 0;
}

.dist-hero__inner {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* auto margins centre the copy in whatever space the stats row leaves */
.dist-hero__content {
    max-width: 780px;
    margin: auto 0;
}

.dist-hero__eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 14px;
}

.dist-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 4.2rem);
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    margin: 0;
}

.dist-hero .gold-underline {
    margin: 18px 0;
}

.dist-hero__lead {
    font-size: clamp(1.05rem, 3.6vw, 1.5rem);
    line-height: 1.5;
    color: #fff;
    margin: 0 0 14px;
    max-width: 640px;
}

.dist-hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(245, 243, 239, 0.82);
    max-width: 620px;
    margin: 0;
}

.dist-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

/* ── Stats row inside the hero ───────────────────────────── */
.dist-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(245, 243, 239, 0.22);
}

.dist-stat__value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-gold);
}

.dist-stat__label {
    display: block;
    margin: 6px 0 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 243, 239, 0.9);
}

.dist-stat__note {
    display: block;
    font-size: 0.84rem;
    line-height: 1.5;
    color: rgba(245, 243, 239, 0.62);
}

/* ============================================================
   SECTION SHELLS
   ============================================================ */
.dist-why,
.dist-audience,
.dist-offer,
.dist-steps,
.dist-faq,
.dist-form-section {
    padding: 56px 0;
}

/* ── Why us ──────────────────────────────────────────────── */
.dist-why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.dist-why-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 28px 24px;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.dist-why-card__icon {
    width: 42px;
    height: 42px;
    color: var(--color-gold);
    margin-bottom: 18px;
}

.dist-why-card__icon svg {
    width: 100%;
    height: 100%;
}

.dist-why-card__title {
    font-family: var(--font-heading);
    font-size: 1.14rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin: 0 0 12px;
}

.dist-why-card__desc {
    font-size: 0.94rem;
    line-height: 1.75;
    color: var(--color-text-dark);
    opacity: 0.8;
    margin: 0;
}

/* ── Audience ────────────────────────────────────────────── */
.dist-audience__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.dist-audience-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 3px solid var(--color-gold);
    padding: 28px 24px;
}

.dist-audience-card__index {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.dist-audience-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin: 0 0 12px;
}

.dist-audience-card__desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text-dark);
    opacity: 0.8;
    margin: 0 0 18px;
}

.dist-audience-card__points li {
    position: relative;
    padding-left: 22px;
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--color-dark-green);
}

.dist-audience-card__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-olive-green);
}

/* ── Portfolio ───────────────────────────────────────────── */
.dist-offer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.dist-offer-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--color-olive-green);
    text-decoration: none;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.dist-offer-card__title {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin: 0;
}

.dist-offer-card__desc {
    flex: 1;
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--color-text-dark);
    opacity: 0.8;
    margin: 0;
}

.dist-offer-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.dist-offer-card__link svg {
    transition: transform var(--transition-base);
}

/* ── Support strip ───────────────────────────────────────── */
.dist-support {
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid rgba(44, 59, 44, 0.12);
}

.dist-support__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin: 0 0 24px;
}

.dist-support__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.dist-support__item {
    display: flex;
    gap: 14px;
}

.dist-support__mark {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    color: var(--color-gold);
}

.dist-support__mark svg {
    width: 100%;
    height: 100%;
}

.dist-support__item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin: 0 0 6px;
}

.dist-support__item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-dark);
    opacity: 0.78;
    margin: 0;
}

/* ── Steps ───────────────────────────────────────────────── */
.dist-steps__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.dist-step {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 28px 24px;
}

.dist-step__index {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(193, 154, 70, 0.55);
    margin-bottom: 12px;
}

.dist-step__title {
    font-family: var(--font-heading);
    font-size: 1.14rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin: 0 0 12px;
}

.dist-step__desc {
    flex: 1;
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--color-text-dark);
    opacity: 0.8;
    margin: 0 0 18px;
}

.dist-step__duration {
    align-self: flex-start;
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-olive-green);
    background: rgba(71, 83, 55, 0.1);
    border-radius: 999px;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.dist-faq__list {
    max-width: 860px;
    margin: 0 auto;
}

.dist-faq__item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 12px;
    overflow: hidden;
}

.dist-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-dark-green);
    cursor: pointer;
    list-style: none;
}

.dist-faq__question::-webkit-details-marker {
    display: none;
}

.dist-faq__question svg {
    flex: 0 0 20px;
    color: var(--color-gold);
    transition: transform var(--transition-base);
}

.dist-faq__item[open] .dist-faq__question svg {
    transform: rotate(180deg);
}

.dist-faq__answer {
    padding: 0 20px 20px;
    font-size: 0.94rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    opacity: 0.82;
}

.dist-faq__answer p {
    margin: 0;
}

/* ── Form ────────────────────────────────────────────────── */
.dist-form-section__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

.dist-form-aside .gold-underline {
    margin: 16px 0 18px;
}

.dist-form-aside .dist-section__title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
}

.dist-form-aside__desc {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--color-text-dark);
    opacity: 0.8;
    margin: 0;
}

.dist-form-aside__contact {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(44, 59, 44, 0.15);
}

.dist-form-aside__contact h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin: 0 0 18px;
}

.dist-form-aside__contact p {
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--color-dark-green);
    margin: 0 0 14px;
}

.dist-form-aside__contact span {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 2px;
}

.dist-form-aside__contact a {
    display: inline-block;
    padding: 4px 0;
    color: var(--color-dark-green);
    border-bottom: 1px solid rgba(193, 154, 70, 0.6);
    word-break: break-word;
}

.dist-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 24px 20px;
}

.dist-form__group {
    border: none;
    margin: 0 0 24px;
    padding: 0;
    min-width: 0;
}

.dist-form__group legend {
    display: block;
    width: 100%;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-olive-green);
    padding: 0 0 10px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(44, 59, 44, 0.12);
}

.dist-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.dist-form__field {
    margin-bottom: 18px;
    min-width: 0;
}

.dist-form__row .dist-form__field {
    margin-bottom: 0;
}

.dist-form__row + .dist-form__row,
.dist-form__row + .dist-form__field {
    margin-top: 18px;
}

.dist-form__field label,
.dist-form__label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark-green);
}

.dist-form input[type="text"],
.dist-form input[type="email"],
.dist-form input[type="tel"],
.dist-form select,
.dist-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 13px 16px;
    font-family: var(--font-body);
    /* 16px keeps iOS Safari from zooming in on focus */
    font-size: 16px;
    color: var(--color-text-dark);
    background: var(--color-paper);
    border: 1px solid rgba(44, 59, 44, 0.15);
    border-radius: 6px;
    transition: border-color var(--transition-base), background var(--transition-base);
}

.dist-form input:focus,
.dist-form select:focus,
.dist-form textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--color-gold);
}

.dist-form input::placeholder,
.dist-form textarea::placeholder {
    color: rgba(44, 59, 44, 0.4);
}

.dist-form textarea {
    resize: vertical;
    min-height: 120px;
}

.dist-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475337' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 42px;
}

.dist-form .is-invalid {
    border-color: #b4443a;
    background: #fdf7f6;
}

.dist-form__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dist-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-dark-green);
    cursor: pointer;
}

.dist-form__checks .dist-check {
    align-items: center;
    padding: 10px 16px;
    border: 1px solid rgba(44, 59, 44, 0.15);
    border-radius: 999px;
    transition: border-color var(--transition-base), background var(--transition-base);
}

.dist-form__checks .dist-check:has(input:checked) {
    border-color: var(--color-gold);
    background: rgba(193, 154, 70, 0.12);
}

.dist-check input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    accent-color: var(--color-gold);
}

.dist-check--consent {
    margin-bottom: 24px;
    line-height: 1.7;
}

.dist-check--consent input {
    margin-top: 3px;
}

.dist-check--consent a {
    color: var(--color-gold);
    border-bottom: 1px solid rgba(193, 154, 70, 0.6);
}

.dist-form__submit:disabled {
    opacity: 0.6;
    cursor: default;
}

.dist-form__note {
    margin: 12px 0 0;
    font-size: 0.78rem;
    text-align: center;
    color: rgba(44, 59, 44, 0.6);
}

.dist-form .form-message {
    margin-top: 16px;
}

/* The Turnstile widget has a fixed width — let it shrink on small phones */
.dist-form .cf-turnstile {
    max-width: 100%;
    overflow: hidden;
}

/* ── Distributor CTA banner (contact page) ───────────────── */
.dist-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, #3a4a37 0%, var(--color-dark-green) 100%);
}

.dist-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% -30%, rgba(193, 154, 70, 0.20), transparent 42%);
    pointer-events: none;
}

.dist-banner__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 44px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
}

.dist-banner__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dist-banner__eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.dist-banner__title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    line-height: 1.25;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.dist-banner__subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.dist-banner .dist-btn {
    width: auto;
    flex-shrink: 0;
    padding: 15px 34px;
    font-size: 1rem;
}

.dist-banner .dist-btn svg {
    transition: transform var(--transition-base);
}

.dist-banner .dist-btn:hover svg {
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .dist-banner__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 52px 40px;
        gap: 48px;
    }
    .dist-banner__text { gap: 8px; }
    .dist-banner__title { font-size: 2rem; }
}

/* ============================================================
   ≥ 600px — phablet / small tablet portrait
   ============================================================ */
@media (min-width: 481px) {
    .dist-hero {
        padding-top: 148px;
    }
}

@media (min-width: 600px) {
    .dist-btn {
        width: auto;
    }

    .dist-hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .dist-why__grid,
    .dist-offer__grid,
    .dist-support__grid,
    .dist-steps__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .dist-form__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .dist-form {
        padding: 32px 28px;
    }

    .dist-form__submit {
        width: 100%;
    }

}

/* ============================================================
   ≥ 768px — tablet
   ============================================================ */
@media (min-width: 768px) {
    .dist-hero {
        padding: 190px 0 64px;
    }

    .dist-hero::after {
        height: 300px;
    }

    .dist-hero__inner {
        gap: 52px;
    }

    .dist-hero__subtitle,
    .dist-section__subtitle {
        font-size: 1rem;
    }

    .dist-hero__stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        padding-top: 32px;
    }

    .dist-section__header {
        margin-bottom: 48px;
    }

    .dist-why,
    .dist-audience,
    .dist-offer,
    .dist-steps,
    .dist-faq,
    .dist-form-section {
        padding: 72px 0;
    }

    .dist-audience__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .dist-why-card,
    .dist-audience-card,
    .dist-offer-card,
    .dist-step {
        padding: 32px 28px;
    }

    .dist-support {
        margin-top: 56px;
        padding-top: 40px;
    }

    .dist-faq__question {
        padding: 22px 28px;
        font-size: 1.05rem;
    }

    .dist-faq__answer {
        padding: 0 28px 24px;
        font-size: 0.96rem;
    }

    .dist-form {
        padding: 36px 32px;
    }
}

/* ============================================================
   ≥ 993px — desktop (header logo goes back to full size)
   ============================================================ */
@media (min-width: 993px) {
    .dist-soft-bg {
        background-attachment: fixed;
    }

    .dist-hero {
        padding: 220px 0 72px;
    }

    .dist-hero::after {
        height: 360px;
    }

    .dist-hero__inner {
        gap: 72px;
    }

    .dist-hero__stats {
        gap: 32px;
        padding-top: 40px;
    }

    .dist-section__header {
        margin-bottom: 56px;
    }

    .dist-section__eyebrow,
    .dist-hero__eyebrow {
        font-size: 0.78rem;
        letter-spacing: 0.22em;
    }

    .dist-why,
    .dist-audience,
    .dist-offer,
    .dist-steps,
    .dist-faq,
    .dist-form-section {
        padding: 90px 0;
    }

    .dist-why__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .dist-audience__grid {
        gap: 32px;
    }

    .dist-offer__grid,
    .dist-steps__list,
    .dist-support__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

    .dist-why-card {
        padding: 36px 32px;
    }

    .dist-audience-card {
        padding: 36px 34px;
    }

    .dist-audience-card__title {
        font-size: 1.4rem;
    }

    .dist-support {
        margin-top: 64px;
        padding-top: 44px;
    }

    .dist-support__title {
        font-size: 1.45rem;
    }

    .dist-form-section__inner {
        grid-template-columns: 1fr 1.3fr;
        gap: 56px;
    }

    .dist-form {
        padding: 40px;
    }
}

/* ── Ecrane late dar scunde (laptop 768–900px inaltime) ──── */
@media (min-width: 993px) and (max-height: 900px) {
    .dist-hero {
        padding: 176px 0 48px;
    }

    .dist-hero__inner {
        gap: 40px;
    }

    .dist-hero__title {
        font-size: clamp(2.4rem, 4vw, 3.2rem);
    }

    .dist-hero__lead {
        font-size: clamp(1.05rem, 1.6vw, 1.3rem);
        margin-bottom: 12px;
    }

    .dist-hero .gold-underline {
        margin: 16px 0;
    }

    .dist-hero__actions {
        margin-top: 24px;
    }

    .dist-hero__stats {
        padding-top: 28px;
    }
}

/* ── Hover polish — pointer devices only ─────────────────── */
@media (hover: hover) and (pointer: fine) {
    .dist-why-card:hover,
    .dist-offer-card:hover,
    .dist-step:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .dist-offer-card:hover {
        border-top-color: var(--color-gold);
        opacity: 1;
    }

    .dist-offer-card:hover .dist-offer-card__link svg {
        transform: translateX(4px);
    }
}

/* Fixed backgrounds misbehave on iOS/Android — keep them scrolling */
@media (hover: none) and (pointer: coarse) {
    .dist-soft-bg,
    .dist-hero {
        background-attachment: scroll !important;
    }
}
