@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.eacq-wrap,
.eacq-wrap * {
    box-sizing: border-box;
}

.eacq-wrap {
    --eacq-red: #1ebcf0;
    --eacq-red-dark: #129dcb;
    --eacq-ink: #243142;
    --eacq-muted: #647386;
    --eacq-line: #bdccdc;
    --eacq-bg: #f3f6f9;
    --eacq-card: #ffffff;
    --eacq-soft: #f7f9fc;
    --eacq-green: #0ba879;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--eacq-ink);
    background: var(--eacq-bg);
    border-radius: 28px;
    padding: clamp(18px, 3vw, 36px);
    width: 100%;
}

.eacq-shell {
    max-width: 1180px;
    margin: 0 auto;
    background: var(--eacq-card);
    border-radius: 26px;
    box-shadow: 0 24px 80px rgba(28, 42, 58, 0.08);
    padding: clamp(22px, 4vw, 44px);
    min-height: 580px;
}

.eacq-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(189, 204, 220, 0.55);
    margin-bottom: 24px;
}

.eacq-brand-mark {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--eacq-red), #63d8fb);
    color: #fff;
    box-shadow: 0 14px 30px rgba(30, 188, 240, 0.26);
}

.eacq-brand-mark svg {
    width: 34px;
    height: 34px;
}

.eacq-eyebrow,
.eacq-kicker {
    margin: 0 0 7px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--eacq-red);
}

.eacq-topbar h2,
.eacq-step-head h3,
.eacq-summary-card h3,
.eacq-form h3 {
    margin: 0;
    color: var(--eacq-ink);
    font-weight: 850;
    line-height: 1.15;
}

.eacq-topbar h2 {
    font-size: clamp(22px, 2.6vw, 34px);
}

.eacq-progress {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 28px;
}

.eacq-progress-track {
    flex: 1;
    height: 10px;
    background: #edf2f7;
    border-radius: 999px;
    overflow: hidden;
}

.eacq-progress-track span {
    display: block;
    width: 16.6%;
    height: 100%;
    background: linear-gradient(90deg, var(--eacq-red), #63d8fb);
    border-radius: inherit;
    transition: width .26s ease;
}

.eacq-progress-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--eacq-muted);
    white-space: nowrap;
}

.eacq-step {
    display: none;
    animation: eacqFade .22s ease;
}

.eacq-step.is-active {
    display: block;
}

@keyframes eacqFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.eacq-step-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 26px;
}

.eacq-step-head h3 {
    font-size: clamp(26px, 3.2vw, 42px);
}

.eacq-step-head p:not(.eacq-kicker) {
    color: var(--eacq-muted);
    font-size: 17px;
    line-height: 1.55;
    margin: 12px auto 0;
}

.eacq-card-grid {
    display: grid;
    gap: 16px;
}

.eacq-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eacq-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.eacq-choice {
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid var(--eacq-line);
    background: #fff;
    color: var(--eacq-ink);
    border-radius: 18px;
    padding: 25px 18px;
    min-height: 238px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
    position: relative;
    overflow: hidden;
}

.eacq-choice:before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 14px;
    border: 1px dashed rgba(36, 49, 66, 0.08);
    pointer-events: none;
}

.eacq-choice:hover,
.eacq-choice:focus-visible {
    transform: translateY(-3px);
    border-color: var(--eacq-red);
    box-shadow: 0 18px 36px rgba(36, 49, 66, 0.11);
    outline: none;
}

.eacq-choice.is-selected {
    border-color: var(--eacq-red);
    box-shadow: 0 18px 44px rgba(30, 188, 240, 0.17);
    background: linear-gradient(180deg, #fff, #f1fbff);
}

.eacq-illustration {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    color: #607489;
    margin-bottom: 3px;
}

.eacq-choice.is-selected .eacq-illustration,
.eacq-choice:hover .eacq-illustration {
    color: var(--eacq-red);
}

.eacq-illustration svg {
    width: 84px;
    height: 84px;
    filter: drop-shadow(0 8px 16px rgba(31, 48, 66, 0.05));
}

.eacq-choice-title {
    font-size: 19px;
    line-height: 1.25;
    font-weight: 850;
    color: var(--eacq-ink);
}

.eacq-choice-detail {
    min-height: 38px;
    font-size: 14px;
    line-height: 1.35;
    color: var(--eacq-muted);
}

.eacq-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef4f8;
    color: var(--eacq-ink);
    font-weight: 850;
    font-size: 13px;
}

.eacq-price--survey {
    background: #fff0d7;
    color: #8a5700;
}

.eacq-back,
.eacq-submit {
    border: 0;
    border-radius: 999px;
    min-height: 46px;
    padding: 0 20px;
    font-weight: 850;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.eacq-back {
    margin-top: 22px;
    background: #eef3f7;
    color: var(--eacq-ink);
}

.eacq-back:hover,
.eacq-submit:hover {
    transform: translateY(-1px);
}

.eacq-submit {
    background: var(--eacq-red);
    color: #fff;
    box-shadow: 0 12px 24px rgba(30, 188, 240, 0.24);
}

.eacq-submit:hover {
    background: var(--eacq-red-dark);
}

.eacq-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.eacq-final-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 24px;
    align-items: start;
}

.eacq-summary-card,
.eacq-form {
    background: var(--eacq-soft);
    border: 1px solid rgba(189, 204, 220, 0.65);
    border-radius: 22px;
    padding: clamp(20px, 3vw, 30px);
}

.eacq-summary-card h3 {
    font-size: clamp(34px, 4vw, 54px);
    color: var(--eacq-red);
}

.eacq-summary-note {
    margin: 8px 0 20px;
    color: var(--eacq-muted);
    line-height: 1.5;
}

.eacq-breakdown {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.eacq-breakdown-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(189, 204, 220, 0.55);
    border-radius: 14px;
}

.eacq-breakdown-row strong {
    display: block;
    font-size: 14px;
    color: var(--eacq-ink);
}

.eacq-breakdown-row span:first-child em {
    display: block;
    margin-top: 3px;
    font-style: normal;
    font-size: 12px;
    color: var(--eacq-muted);
}

.eacq-breakdown-price {
    font-weight: 900;
    color: var(--eacq-ink);
    white-space: nowrap;
}

.eacq-survey-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff8ec;
    border: 1px solid #ffdca3;
    border-radius: 18px;
    padding: 16px;
    color: #5f3d09;
}

.eacq-survey-icon {
    width: 44px;
    min-width: 44px;
    color: #9b6509;
}

.eacq-survey-icon svg {
    width: 44px;
    height: 44px;
}

.eacq-survey-box p {
    margin: 5px 0 0;
    line-height: 1.5;
    font-size: 14px;
}

.eacq-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    background: #fff;
}

.eacq-form .eacq-kicker,
.eacq-form h3,
.eacq-form-intro,
.eacq-form-message,
.eacq-smallprint,
.eacq-form-actions,
.eacq-full {
    grid-column: 1 / -1;
}

.eacq-form h3 {
    font-size: 28px;
    margin-bottom: 4px;
}

.eacq-form-intro {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--eacq-muted);
}

.eacq-form label {
    display: grid;
    gap: 7px;
    margin: 0;
}

.eacq-form label span {
    color: var(--eacq-ink);
    font-weight: 800;
    font-size: 13px;
}

.eacq-form label em {
    color: var(--eacq-muted);
    font-style: normal;
    font-weight: 600;
}

.eacq-form input,
.eacq-form textarea {
    width: 100%;
    border: 1px solid var(--eacq-line);
    border-radius: 14px;
    padding: 13px 14px;
    color: var(--eacq-ink);
    background: #fbfdff;
    font: inherit;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.eacq-form input:focus,
.eacq-form textarea:focus {
    outline: none;
    border-color: var(--eacq-red);
    box-shadow: 0 0 0 4px rgba(30, 188, 240, 0.12);
}

.eacq-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.eacq-form-actions .eacq-back {
    margin: 0;
}

.eacq-form-message {
    display: none;
    padding: 13px 14px;
    border-radius: 14px;
    font-weight: 800;
}

.eacq-form-message.is-success {
    display: block;
    background: #e7f8f1;
    color: #076c4d;
}

.eacq-form-message.is-error {
    display: block;
    background: #fff0f0;
    color: #9d2824;
}

.eacq-smallprint {
    margin: 0;
    color: var(--eacq-muted);
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 980px) {
    .eacq-card-grid--four,
    .eacq-card-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .eacq-final-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .eacq-wrap {
        border-radius: 0;
        padding: 12px;
        margin-left: -12px;
        margin-right: -12px;
    }
    .eacq-shell {
        border-radius: 20px;
        padding: 18px;
        min-height: 0;
    }
    .eacq-topbar {
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
        padding-bottom: 18px;
    }
    .eacq-brand-mark {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 14px;
    }
    .eacq-brand-mark svg {
        width: 28px;
        height: 28px;
    }
    .eacq-progress {
        display: block;
    }
    .eacq-progress-label {
        margin-top: 8px;
    }
    .eacq-step-head {
        text-align: left;
    }
    .eacq-card-grid--four,
    .eacq-card-grid--three {
        grid-template-columns: 1fr;
    }
    .eacq-choice {
        min-height: 172px;
        padding: 18px;
    }
    .eacq-illustration,
    .eacq-illustration svg {
        width: 64px;
        height: 64px;
    }
    .eacq-form {
        grid-template-columns: 1fr;
    }
    .eacq-breakdown-row {
        display: block;
    }
    .eacq-breakdown-price {
        display: block;
        margin-top: 6px;
    }
}

.eacq-card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 780px;
    margin: 0 auto;
}

.eacq-postcode-simple {
    max-width: 620px;
    margin: clamp(26px, 5vw, 56px) auto 0;
    display: grid;
    gap: 14px;
}

.eacq-postcode-simple label {
    display: grid;
    gap: 8px;
}

.eacq-postcode-simple label span {
    color: var(--eacq-ink);
    font-weight: 800;
    font-size: 14px;
}

.eacq-postcode-simple input {
    width: 100%;
    border: 1px solid var(--eacq-line);
    border-radius: 15px;
    padding: 16px;
    color: var(--eacq-ink);
    background: #fff;
    font: inherit;
    font-size: 18px;
    text-transform: uppercase;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.eacq-postcode-simple input:focus {
    outline: none;
    border-color: var(--eacq-red);
    box-shadow: 0 0 0 4px rgba(30, 188, 240, 0.12);
}

.eacq-postcode-check {
    width: 100%;
}

.eacq-travel-result {
    display: none;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}


.eacq-travel-result.is-error {
    display: block;
    background: #fff0f0;
    color: #9d2824;
}

.eacq-survey-list {
    margin: 8px 0 10px;
    padding-left: 20px;
}

.eacq-survey-list li {
    margin: 5px 0;
    line-height: 1.45;
    font-size: 14px;
}

.eacq-guidance-note {
    opacity: .82;
    font-size: 12px !important;
}

@media (max-width: 640px) {
    .eacq-card-grid--two {
        grid-template-columns: 1fr;
    }
}

.eacq-brand-note {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--eacq-line);
    color: var(--eacq-muted);
    font-size: 12px;
    line-height: 1.55;
}
