.ef-form-page-body {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at 14% 10%, rgba(225, 172, 65, 0.16), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(248, 236, 142, 0.14), transparent 22%),
        linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
    color: #f5f5f5;
    font-family: "Open Sans", "DM Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.ef-form-page-body.admin-bar .ef-dlf-page {
    padding-top: calc(32px + 24px);
}

.ef-dlf-page {
    --ef-dlf-ink: #f5f5f5;
    --ef-dlf-muted: #d1d1d1;
    --ef-dlf-card: #121212;
    --ef-dlf-card-soft: #171717;
    --ef-dlf-border: #393939;
    --ef-dlf-input: #1f1f1f;
    --ef-dlf-gold: #e1ac41;
    --ef-dlf-gold-soft: #f8ec8e;
    --ef-dlf-blue: #00c4ff;
    --ef-dlf-success: #22c55e;
    --ef-dlf-error: #ff6b6b;
    --ef-dlf-gold-grad: linear-gradient(90deg, #e1ac41 0%, #f8ec8e 50%, #e1ac41 100%);
    min-height: 100vh;
    padding: 32px 16px 72px;
    color: var(--ef-dlf-ink);
}

.ef-dlf-page a {
    color: inherit;
}

.ef-dlf-page * {
    box-sizing: border-box;
}

.ef-dlf-shell {
    width: min(960px, calc(100% - 8px));
    margin: 0 auto;
}

.ef-dlf-header {
    margin: 0 auto 28px;
    text-align: center;
}

.ef-dlf-brand {
    display: block;
    width: min(220px, 58vw);
    margin: 0 auto 22px;
}

.ef-dlf-page-title {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.ef-dlf-page-title span {
    display: block;
    margin-top: 6px;
    background: linear-gradient(90deg, #f9f295 0%, #f3d97a 20%, #ebc15a 40%, #e1ac41 50%, #ebc15a 60%, #f3d97a 80%, #f9f295 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.ef-dlf-subtitle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 18px auto 18px;
}

.ef-dlf-subtitle-line {
    width: 52px;
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
}

.ef-dlf-subtitle {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ef-dlf-muted);
}

.ef-dlf-header-copy {
    margin: 0 auto;
    max-width: 700px;
    color: #e0e0e0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.6;
}

.ef-dlf-card {
    padding: 24px 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

.ef-dlf-progress {
    margin-bottom: 28px;
}

.ef-dlf-progress__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.ef-dlf-progress__label,
.ef-dlf-progress__counter {
    background: var(--ef-dlf-gold-grad);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: ef-dlf-gold-shift 5s ease-in-out infinite;
}

.ef-dlf-progress__label {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
}

.ef-dlf-progress__counter {
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
}

.ef-dlf-progress__bar {
    position: relative;
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #333;
}

.ef-dlf-progress__fill {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: 999px;
    background: var(--ef-dlf-gold-grad);
    background-size: 200% 100%;
    animation: ef-dlf-gold-shift 4s ease-in-out infinite;
    transition: width 0.35s ease;
}

.ef-dlf-form {
    position: relative;
}

.ef-dlf-form-error {
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 107, 107, 0.42);
    border-radius: 14px;
    background: rgba(127, 29, 29, 0.28);
    color: #fecaca;
    font-size: 0.95rem;
}

.ef-dlf-step {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.ef-dlf-step:not(.is-active) {
    opacity: 0;
    transform: translateY(16px);
}

.ef-dlf-step__head h2 {
    margin: 0 0 10px;
    color: #fff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.62rem);
    font-weight: 700;
    line-height: 1.24;
}

.ef-dlf-step__head p {
    margin: 0 0 22px;
    color: rgba(245, 245, 245, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

.ef-dlf-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ef-dlf-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ef-dlf-field label,
.ef-dlf-field legend {
    padding: 0;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 600;
}

.ef-dlf-field legend {
    margin-bottom: 6px;
}

.ef-dlf-field input[type="text"],
.ef-dlf-field input[type="email"],
.ef-dlf-field input[type="tel"],
.ef-dlf-field textarea {
    width: 100%;
    min-height: 56px;
    padding: 16px 18px;
    border: 1px solid var(--ef-dlf-border);
    border-radius: 14px;
    background: var(--ef-dlf-input);
    color: #fff;
    font: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ef-dlf-field textarea {
    min-height: 148px;
    resize: vertical;
}

.ef-dlf-field input::placeholder,
.ef-dlf-field textarea::placeholder {
    color: #8b8b8b;
}

.ef-dlf-field input:focus,
.ef-dlf-field textarea:focus {
    outline: none;
    border-color: rgba(225, 172, 65, 0.88);
    box-shadow: 0 0 0 3px rgba(225, 172, 65, 0.18);
}

.ef-dlf-field-error {
    min-height: 1.2em;
    margin: 0;
    color: var(--ef-dlf-error);
    font-size: 0.9rem;
}

.ef-dlf-field.is-invalid input,
.ef-dlf-field.is-invalid textarea,
.ef-dlf-field--cards.is-invalid .ef-dlf-card-grid,
.ef-dlf-field--pills.is-invalid .ef-dlf-pill-grid,
.ef-dlf-field--checks.is-invalid .ef-dlf-check-list {
    border-color: rgba(255, 107, 107, 0.8);
}

.ef-dlf-card-grid,
.ef-dlf-pill-grid,
.ef-dlf-check-list {
    display: grid;
    gap: 14px;
}

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

.ef-dlf-option-card {
    position: relative;
    display: block;
    border: 2px solid var(--ef-dlf-border);
    border-radius: 18px;
    background: #202020;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.ef-dlf-option-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.ef-dlf-option-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px;
}

.ef-dlf-option-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ef-dlf-option-card__eyebrow {
    color: #f8ec8e;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ef-dlf-option-card__price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(225, 172, 65, 0.16);
    color: #f8ec8e;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
}

.ef-dlf-option-card__title {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.45;
}

.ef-dlf-option-card__text {
    color: rgba(245, 245, 245, 0.76);
    font-size: 0.96rem;
    line-height: 1.65;
}

.ef-dlf-option-card:hover {
    transform: translateY(-2px);
    border-color: #555;
    background: #2a2a2a;
}

.ef-dlf-option-card input:checked + .ef-dlf-option-card__body {
    background: linear-gradient(145deg, #1e1e1e, #0b1e25);
}

.ef-dlf-option-card input:checked + .ef-dlf-option-card__body .ef-dlf-option-card__title,
.ef-dlf-option-card input:checked + .ef-dlf-option-card__body .ef-dlf-option-card__price {
    color: var(--ef-dlf-blue);
}

.ef-dlf-option-card:has(input:checked) {
    border-color: var(--ef-dlf-blue);
    box-shadow: 0 0 20px rgba(0, 196, 255, 0.18);
}

.ef-dlf-pill-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ef-dlf-pill {
    position: relative;
    display: block;
    min-height: 100%;
    cursor: pointer;
}

.ef-dlf-pill input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.ef-dlf-pill span {
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
    padding: 16px 18px;
    border: 1px solid var(--ef-dlf-border);
    border-radius: 16px;
    background: #1b1b1b;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.ef-dlf-pill strong {
    color: #fff;
    font-size: 0.98rem;
}

.ef-dlf-pill small {
    color: rgba(245, 245, 245, 0.7);
    line-height: 1.55;
}

.ef-dlf-pill:hover span {
    transform: translateY(-1px);
    border-color: rgba(225, 172, 65, 0.66);
}

.ef-dlf-pill input:checked + span {
    border-color: var(--ef-dlf-gold);
    background: linear-gradient(180deg, rgba(225, 172, 65, 0.12), rgba(225, 172, 65, 0.04));
    box-shadow: 0 0 0 1px rgba(225, 172, 65, 0.18);
}

.ef-dlf-check-list {
    grid-template-columns: 1fr;
}

.ef-dlf-check {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--ef-dlf-border);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.46);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.ef-dlf-check:hover {
    border-color: rgba(225, 172, 65, 0.55);
}

.ef-dlf-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin: 2px 0 0;
    border: 1.5px solid var(--ef-dlf-border);
    border-radius: 6px;
    background: var(--ef-dlf-input);
    display: inline-grid;
    place-content: center;
    cursor: pointer;
}

.ef-dlf-check input[type="checkbox"]::after {
    content: "";
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border-right: 2px solid #0b0b0b;
    border-bottom: 2px solid #0b0b0b;
    margin-top: -1px;
    display: none;
}

.ef-dlf-check input[type="checkbox"]:checked {
    background: var(--ef-dlf-gold);
    border-color: var(--ef-dlf-gold);
}

.ef-dlf-check input[type="checkbox"]:checked::after {
    display: block;
}

.ef-dlf-check span {
    color: rgba(245, 245, 245, 0.86);
    font-size: 0.94rem;
    line-height: 1.65;
}

.ef-dlf-check a {
    color: var(--ef-dlf-gold-soft);
}

.ef-dlf-check a:hover {
    color: #fff;
}

.ef-dlf-info-bar,
.ef-dlf-summary {
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #1f1f1f;
    border-left: 4px solid transparent;
    border-image: var(--ef-dlf-gold-grad) 1;
}

.ef-dlf-info-bar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ef-dlf-info-bar p,
.ef-dlf-summary p {
    margin: 0;
    color: #f8ec8e;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.6;
}

.ef-dlf-info-bar__icon {
    font-size: 1rem;
}

.ef-dlf-summary h3 {
    margin: 0 0 12px;
    color: #fff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.ef-dlf-summary__list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ef-dlf-summary__list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(245, 245, 245, 0.85);
    font-size: 0.94rem;
}

.ef-dlf-summary__list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.ef-dlf-summary__list strong {
    color: #fff;
}

.ef-dlf-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
}

.ef-dlf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 28px;
    border: none;
    border-radius: 14px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.ef-dlf-btn--gold,
.ef-dlf-btn--submit {
    color: #0b0b0b;
    background: linear-gradient(180deg, #f0d596 0%, #c8a356 100%);
    box-shadow: 0 6px 18px rgba(200, 163, 86, 0.28), inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.ef-dlf-btn--gold:hover,
.ef-dlf-btn--submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(200, 163, 86, 0.38), inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.ef-dlf-btn--ghost {
    color: #fff;
    background: #393939;
}

.ef-dlf-btn--ghost:hover {
    transform: translateY(-1px);
    background: #4a4a4a;
}

.ef-dlf-success {
    text-align: center;
    padding: 40px 16px 10px;
}

.ef-dlf-success__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.14);
    color: #86efac;
    font-size: 2rem;
    font-weight: 700;
}

.ef-dlf-success h2 {
    margin: 0 0 10px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 2rem;
}

.ef-dlf-success p {
    margin: 0 auto;
    max-width: 560px;
    color: rgba(245, 245, 245, 0.76);
    line-height: 1.7;
}

.ef-dlf-offer-card {
    margin-top: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, #151515 0%, #101010 100%);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.ef-dlf-offer-card__inner {
    padding: 28px 24px;
}

.ef-dlf-offer-card__title {
    margin: 0 0 22px;
    text-align: center;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(1.55rem, 2.2vw, 2.55rem);
    font-weight: 800;
    line-height: 1.02;
    text-transform: uppercase;
}

.ef-dlf-offer-card__title span {
    display: block;
    margin-bottom: 4px;
    background: var(--ef-dlf-gold-grad);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: ef-dlf-gold-shift 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(248, 236, 142, 0.18));
}

.ef-dlf-offer-card__title strong {
    display: block;
    color: #fff;
}

.ef-dlf-offer-card__price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    text-align: center;
}

.ef-dlf-offer-card__price span {
    color: #d7dbe2;
    font-size: 1rem;
    font-weight: 600;
}

.ef-dlf-offer-card__price strong {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(2.35rem, 4.6vw, 3.7rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    background: var(--ef-dlf-gold-grad);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: ef-dlf-gold-shift 7s ease-in-out infinite;
}

.ef-dlf-offer-card__box {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    background: #0b0b0b;
}

.ef-dlf-offer-card__box-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #f8ec8e;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ef-dlf-offer-card__list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ef-dlf-offer-card__list li {
    position: relative;
    padding: 16px 20px 16px 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #e8e8e8;
    font-size: 1rem;
    line-height: 1.45;
}

.ef-dlf-offer-card__list li:last-child {
    border-bottom: none;
}

.ef-dlf-offer-card__list li::before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 15px;
    color: var(--ef-dlf-gold);
    font-size: 1rem;
    font-weight: 700;
}

.ef-dlf-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

@keyframes ef-dlf-gold-shift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@media (max-width: 767px) {
    .ef-dlf-page {
        padding: 24px 12px 52px;
    }

    .ef-dlf-card {
        padding: 20px 16px 22px;
        border-radius: 20px;
    }

    .ef-dlf-subtitle-wrap {
        gap: 8px;
    }

    .ef-dlf-subtitle-line {
        width: 28px;
    }

    .ef-dlf-progress__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .ef-dlf-pill-grid {
        grid-template-columns: 1fr;
    }

    .ef-dlf-actions {
        flex-direction: column-reverse;
    }

    .ef-dlf-btn {
        width: 100%;
    }

    .ef-dlf-offer-card__inner {
        padding: 22px 14px;
    }

    .ef-dlf-offer-card__title {
        font-size: 1.72rem;
        line-height: 0.98;
    }

    .ef-dlf-offer-card__box-head,
    .ef-dlf-offer-card__list li {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ef-dlf-offer-card__list li {
        padding-left: 42px;
    }

    .ef-dlf-offer-card__list li::before {
        left: 16px;
    }
}
