/* ==========================================================
   Insurance Calculator – Scoped Styles
   All rules are prefixed with .ic-scope to avoid leaking
   into the theme or other plugins.
   ========================================================== */
 
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

.ic-scope *,
.ic-scope *::before,
.ic-scope *::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

/* Font is loaded via <link> in the template head */
.ic-scope {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Layout ──────────────────────────────────────────────── */
.ic-scope .tc-container {
    max-width: 1200px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.95);
    overflow: hidden;
}

.ic-scope .main-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    min-height: calc(100vh - 200px);
    gap: 20px;
}

/* ── Header ──────────────────────────────────────────────── */
.ic-scope .ic-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ic-scope .ic-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
}

.ic-scope .ic-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}

.ic-scope .ic-header__subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ── Input Section ───────────────────────────────────────── */
.ic-scope .input-section {
    background: #fff;
    border-radius: 20px;
    border: 2px solid #cbd5e1;
    padding: 30px;
}

.ic-scope .input-group {
    display: block;
    border: none !important;

}

.ic-scope .group-title {
    font-size: 24px;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ic-scope .form-row {
    margin-bottom: 30px;
    position: relative;
}

.ic-scope .form-row:last-child {
    margin-bottom: 0;
}

.ic-scope .ic-label {
    display: block;
    font-weight: 400 !important; 
    color: #1a2839;
    margin-bottom: 8px;
    font-size: 14px;
}

/* ── Text / Number Inputs ────────────────────────────────── */
.ic-scope .ic-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #dde3ee;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
    color: #2d3748;
}

.ic-scope .ic-input:focus {
    outline: none;
    border-color: #64748b !important;
}

.ic-scope .ic-input::placeholder {
    color: #a0aec0;
}

.ic-scope .ic-input[readonly],
.ic-scope .ic-input[disabled] {
    background-color: #d9d9d9;
}

.ic-scope .ic-input:hover {
    border-color: #b0bdd6;
}

/* ── Custom Select ───────────────────────────────────────── */
.ic-scope .custom-select {
    position: relative;
    display: block;
}

.ic-scope .custom-select select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
}

.ic-scope .custom-select::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #f05123;
    pointer-events: none;
}

.ic-scope .custom-select select:focus {
    outline: none;
    border-color: #f05123;
    box-shadow: 0 0 0 3px rgba(240, 81, 35, 0.1);
}

/* ── Vehicle Type Picker ─────────────────────────────────── */
.ic-scope .vehicle-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.ic-scope .vehicle-option {
    position: relative;
    cursor: pointer;
}

.ic-scope .vehicle-option input[type="radio"] {
    display: none;
}

.ic-scope .vehicle-option .ic-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    margin-bottom: 0;
}

.ic-scope .vehicle-option .ic-label:hover {
    background: #f8f9ff;
}

.ic-scope .vehicle-option input[type="radio"]:checked+.ic-label {
    background: #e2e8f0;
}

.ic-scope .vehicle-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.ic-scope .vehicle-name {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

.ic-scope .gasoline-icon {
    transform: translateX(5px);
}

.ic-scope .ic-scope svg {
    transition: all 0.3s ease;
}

.ic-scope .hybrid-icon svg {
    stroke: black;
}

.ic-scope .electric-icon svg {
    fill: white;
    stroke: black;
}

/* ── Ownership Type Picker ───────────────────────────────── */
.ic-scope .ownership-options {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.ic-scope .ownership-option {
    flex: 1;
    position: relative;
}

.ic-scope .ownership-option input[type="radio"] {
    display: none;
}

.ic-scope .ownership-option .ic-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    /* font-weight: 500; */
    margin-bottom: 0;
}

.ic-scope .ownership-option input[type="radio"]:checked+.ic-label {
    background: #e2e8f0;
}

/* ── Hybrid Qualifier Radio ──────────────────────────────── */
.ic-scope .ic-label-hint {
    display: block;
    font-weight: 400;
    font-size: 0.8rem;
    color: #8898aa;
    margin-top: 4px;
}

.ic-scope .hybrid-qualify-options {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.ic-scope .hybrid-qualify-option {
    flex: 1;
    position: relative;
}

.ic-scope .hybrid-qualify-option input[type="radio"] {
    display: none;
}

.ic-scope .hybrid-qualify-option .ic-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    font-weight: 500;
    margin-bottom: 0;
}

.ic-scope .hybrid-qualify-option .ic-label:hover {
    background: #f8f9ff;
    border-color: #b0c4d8;
}

.ic-scope .hybrid-qualify-option input[type="radio"]:checked+.ic-label {
    background: #e2e8f0;
    border-color: #43668e;
}

/* "Yes" option gets a green tint when selected */
.ic-scope .hybrid-qualify-option input[type="radio"]#hybridQualifiesYes:checked+.ic-label {
    background: #eafaf1;
    border-color: #27ae60;
    color: #1a7a43;
}

.ic-scope .hybrid-qualify-icon {
    font-size: 1rem;
    font-style: normal;
}

/* ── Sliders ─────────────────────────────────────────────── */
.ic-scope .slider-container {
    margin-top: 8px;
}

.ic-scope .ic-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e1e8ed;
    outline: none;
    transition: background 0.3s ease;
}

.ic-scope .ic-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: #f05123 solid 3px;
}

.ic-scope .ic-slider::-webkit-slider-thumb:hover {
    transform: scale(1);
}

.ic-scope .ic-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: #f05123 solid 3px;
}

.ic-scope .slider-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #414651;
    font-weight: 500;
}

/* ── Result Section ──────────────────────────────────────── */
.ic-scope .result-section {
    background: #142132;
    color: white;
    position: relative;
    display: block;
    border-radius: 20px;
}

.ic-scope .results-sticky-container {
    position: relative;
    padding: 30px;
    height: fit-content;
}

.ic-scope .result-box {
    background: #273c54;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.ic-scope .result-line {
    width: auto;
    height: 1px;
    flex: 1;
    margin-inline: 20px;
    border-bottom: 1px solid #ffffffc5;
    transform: translateY(2px);
}

.ic-scope .method-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ic-scope .result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 8px;
}

.ic-scope .result-item span:first-child {
    font-size: 1rem;
    color: #ffffff85;
}

.ic-scope .result-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.ic-scope .result-value {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
}

/* ── Savings Box ─────────────────────────────────────────── */
.ic-scope .saving-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.ic-scope .savings-box {
    background: #fee9d2;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #273c54;
    font-weight: 600;
}

.ic-scope .savings-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.ic-scope .savings-box>div:first-child {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.ic-scope .savings-amount {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    color: #f05123;
}

/* ── CTA Button ──────────────────────────────────────────── */
.ic-scope .cta-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1a2839;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    margin-top: 5px;
}

/* ── Email Subscribe Section ─────────────────────────────── */
.ic-scope .email-line {
    width: auto;
    height: 1px;
    flex: 1;
    border-bottom: 1px solid #ffffff1f;
    margin-top: 20px;
}

.ic-scope .results-title {
    /* margin-top: 10px; */
    color: white;
}

.ic-scope .results-title i {
    color: #9db6d2;
}

.ic-scope .email-box-section {
    margin-top: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ic-scope .email-input-wrap {
    margin-top: 10px;
    background: #334155;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.ic-scope .email-input-wrap i {
    color: #637289;
}

.ic-scope .ic-email-field {
    width: auto;
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    height:auto;
    margin-bottom:0px;
}

.ic-scope .ic-email-field:focus {
    outline: none;
}

.ic-scope .ic-consent-check {
    margin-top: 5px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #637289;
}

.ic-scope .ic-consent-check .ic-label {
    color: #637289;
    margin-bottom: 0;
}

.ic-scope .ic-submit-btn {
    background: #40638c;
    color: white;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.ic-scope .ic-submit-btn:hover {
    background: #40638cdd;
}

.ic-scope .ic-submit-btn:disabled {
    opacity: 0.6;
    /* cursor: not-allowed; */
}

.ic-scope .ic-required {
    color: #ff0000;
}

/* ── First-row layout ────────────────────────────────────── */
.ic-scope .first-row {
    display: flex;
    gap: 10px;
}

.ic-scope .first-row .first-input {
    flex-grow: 1;
}

/* ── Loading animation ───────────────────────────────────── */
.ic-scope .calculating {
    position: relative;
    overflow: hidden;
}

.ic-scope .calculating::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: ic-loading 1.5s infinite;
}

@keyframes ic-loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .ic-scope .first-row {
        flex-direction: column;
    }

    .ic-scope .main-content {
        grid-template-columns: 1fr;
    }

    .ic-scope .results-sticky-container {
        position: relative;
        top: auto;
        max-height: none;
        padding: 20px;
    }

    .ic-scope .ic-header {
        padding: 30px 20px;
    }

    .ic-scope .ic-header__title {
        font-size: 2rem;
    }

    .ic-scope .input-section {
        padding: 20px;
    }

    .ic-scope .vehicle-options {
        grid-template-columns: 1fr;
    }

    .ic-scope .ownership-options {
        flex-direction: column;
    }
}

.vehicle-data {
    margin-bottom: 30px;
}

.vehicle-data .form-rows-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px 12px;
    align-items: end;

    @media(max-width: 768px) {
        gap: 20px 12px;
    }

}

/* Row 1 */
.vehicle-data .input-gross {
    grid-column: span 2;

    @media(max-width: 768px) {
        grid-column: span 3;
    }
}

.vehicle-data .input-year {
    grid-column: span 2;

    @media(max-width: 768px) {
        grid-column: span 3;
    }
}

.vehicle-data .btn-owned {
    grid-column: span 1;

    @media(max-width: 768px) {
        grid-column: span 3;
    }
}

.vehicle-data .btn-leased {
    grid-column: span 1;

    @media(max-width: 768px) {
        grid-column: span 3;
    }
}

/* Row 2 */
.vehicle-data .input-lease {
    grid-column: span 3;

    @media(max-width: 768px) {
        grid-column: span 6;
    }
}

.vehicle-data .btn-gasoline {
    grid-column: span 1;

    @media(max-width: 768px) {
        grid-column: span 2;
    }
}

.vehicle-data .btn-hybrid {
    grid-column: span 1;

    @media(max-width: 768px) {
        grid-column: span 2;
    }
}

.vehicle-data .btn-electric {
    grid-column: span 1;

    @media(max-width: 768px) {
        grid-column: span 2;
    }
}

/* Row 3 */
.vehicle-data .hybrid-question {
    grid-column: span 4;

    @media(max-width: 768px) {
        grid-column: span 6;
    }

}

.vehicle-data .btn-yes {
    grid-column: span 1;

    @media(max-width: 768px) {
        grid-column: span 3;
    }

}

.vehicle-data .btn-no {
    grid-column: span 1;

    @media(max-width: 768px) {
        grid-column: span 3;
    }
}

/* Button groups alignment */
.vehicle-data .ownership-options,
.vehicle-data .vehicle-options,
.vehicle-data .hybrid-qualify-options {
    margin-bottom: 2px;
}

/* Radio buttons styled as toggle buttons */
.vehicle-data .ic-btn {
    display: block;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border: 1.5px solid #dde3ee;
    border-radius: 10px;
    background-color: #f4f6fb;
    color: #4a5568;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    margin-bottom:0px;
}

.vehicle-data .ic-btn:hover {
    background-color: #e2e8f0;
    border-color: #cbd5e1;
    color: #2d3748;
}

/* Selected state */
.vehicle-data input[type="radio"]:checked+.ic-btn {
    background-color: #e2e8f0;
    border-color: #64748b;
    color: #2d3748;
    font-weight: 500;
}

/* Labels above inputs */

/* Text inputs */
.vehicle-data .ic-input {
    width: 100%;
    padding: 15px 14px;
    border: 1.5px solid #dde3ee;
    border-radius: 10px;
    background-color: #fff;
    font-size: 14px;
    color: #2d3748;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s ease, background-color 0.15s ease;
    margin-bottom:0px;
    height:auto;
}

.vehicle-data .ic-input:hover {
    border-color: #b0bdd6;
}

.vehicle-data .ic-input::placeholder {
    color: #a0aec0;
}

.vehicle-data .ic-input:focus {
    border-color: #64748b;
    background-color: #fff;
}

/* Section title */
.vehicle-data .group-title {
    font-size: 24px;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle-data .group-title i {
    color: #5a8fd4;
    font-size: 18px;
}

/* Row spacing */
.vehicle-data .form-row {
    margin-bottom: 16px;
}

.ic-scope input[type="radio"] {
    appearance: none;
    display: none;
}

.separator-line {
    width: 100%;
    height: 1px;
    flex: 1;
    border-bottom: 1px solid #cbd5e1;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* ==========================================================
   Mobile Wizard – only active on screens ≤ 768 px
   ========================================================== */

/* Hide wizard on desktop, show desktop layout */
.ic-scope .ic-mobile-wizard {
    display: none;
}

.ic-scope .ic-desktop-only {
    display: block;
}

@media (max-width: 768px) {

    /* Show wizard, hide desktop */
    .ic-scope .ic-mobile-wizard {
        display: block;
    }

    .ic-scope .ic-desktop-only {
        display: none !important;
    }

    /* ── Wizard outer shell ── */
    .ic-scope .ic-mobile-wizard {
        font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        padding: 0 0 24px;
    }

    /* ── Progress area ── */
    .ic-scope .ic-wiz-progress-wrap {
        padding: 20px 20px 0;
        margin-bottom: 4px;
    }

    .ic-scope .ic-wiz-progress-bar {
        width: 100%;
        height: 6px;
        background: #e2e8f0;
        border-radius: 99px;
        overflow: hidden;
        margin-bottom: 8px;
    }

    .ic-scope .ic-wiz-progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #f05123, #e8753f);
        border-radius: 99px;
        transition: width 0.4s cubic-bezier(.4, 0, .2, 1);
        width: 16.67%;
        /* 1/6 */
    }

    .ic-scope .ic-wiz-step-label {
        font-size: 12px;
        color: #64748b;
        font-weight: 500;
        letter-spacing: 0.03em;
        text-align: right;
    }

    /* ── Step card ── */
    .ic-scope .ic-wiz-steps:not(.finished) {
        padding: 0 16px;
        min-height: 480px;
    }

    .ic-scope .ic-wiz-step {
        background: #fff;
        border-radius: 20px;
        /* border: 2px solid #cbd5e1; */
        padding: 24px 20px;
        margin-top: 12px;
        animation: wizFadeIn 0.3s ease;
    }

    @keyframes wizFadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

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

    /* ── Section title inside a step ── */
    .ic-scope .ic-wiz-section-title {
        font-size: 22px;
        font-weight: 700;
        color: #0f172a;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 24px;
        padding-bottom: 16px;
        /* border-bottom: 1px solid #e2e8f0; */
    }

    /* ── Field rows inside a step ── */
    .ic-scope .ic-wiz-body {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ic-scope .ic-wiz-field {
        display: flex;
        flex-direction: column;
        gap: 8px;
        position: relative;
    }

    /* ── Toggle-button groups (ownership / fuel type) ── */
    .ic-scope .ic-wiz-toggle-group {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    /* Hide the actual radio inputs */
    .ic-scope .ic-wiz-toggle-group input[type="radio"] {
        display: none !important;
        appearance: none;
    }

    .ic-scope .ic-wiz-toggle-btn {
        flex: 1;
        min-width: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 13px 16px;
        border: 1.5px solid #dde3ee;
        border-radius: 10px;
        background: #f4f6fb;
        color: #4a5568;
        font-size: 14px;
        font-weight: 400;
        cursor: pointer;
        text-align: center;
        transition: background 0.15s, border-color 0.15s, color 0.15s;
        margin-bottom: 0;
    }

    .ic-scope .ic-wiz-toggle-btn:hover {
        background: #e2e8f0;
        border-color: #cbd5e1;
        color: #2d3748;
    }

    .ic-scope .ic-wiz-toggle-group input[type="radio"]:checked+.ic-wiz-toggle-btn {
        background: #e2e8f0;
        border-color: #64748b;
        color: #2d3748;
        font-weight: 500;
    }

    /* "Yes" hybrid qualifier gets green tint */
    .ic-scope .ic-wiz-toggle-group input[type="radio"]#wiz_hybridQualifiesYes:checked+.ic-wiz-toggle-btn {
        background: #eafaf1;
        border-color: #27ae60;
        color: #1a7a43;
    }

    /* ── Navigation bar ── */
    .ic-scope .ic-wiz-nav {
        display: flex;
        gap: 12px;
        padding: 20px 16px 0;
        align-items: center;
    }

    .ic-scope .ic-wiz-btn {
        flex: 1;
        padding: 15px 20px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 400;
        cursor: pointer;
        border: none;
        transition: all 0.2s ease;
        font-family: inherit;
    }

    .ic-scope .ic-wiz-btn--back {
        background: #f1f5f9;
        color: #1a2839;
        border: 1.5px solid #1a2839;
    }

    .ic-scope .ic-wiz-btn--back:hover {
        background: #e2e8f0;
    }

    .ic-scope .ic-wiz-btn--continue {
        background: #1a2839;
        color: white;
        /* box-shadow: 0 4px 14px rgba(240, 81, 35, 0.35); */
    }

    .ic-scope .ic-wiz-btn--continue:hover {
        background: #1a2839;
        /* box-shadow: 0 6px 18px rgba(240, 81, 35, 0.45); */
        transform: translateY(-1px);
    }

    .ic-scope .ic-wiz-btn--continue:active {
        transform: translateY(0);
    }

    /* ── Results panel ── */
    .ic-scope .ic-wiz-results {
        padding: 12px 16px 0;
        animation: wizFadeIn 0.4s ease;
    }

}

/* end @media (max-width: 768px) */

/* ── Post-submit Success Card ─────────────────────────────── */
.ic-scope .ic-success-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 16px;
    text-align: center;
    animation: ic-success-fade-in 0.45s ease both;
    background: white;
    border-radius: 20px;
}

@keyframes ic-success-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.ic-scope .ic-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ic-check-pop 0.4s ease 0.1s both;
}

@keyframes ic-check-pop {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.ic-scope .ic-success-msg {
    font-size: 0.92rem;
    color: #142132;
    line-height: 1.55;
    margin: 0;
    font-weight: 400;
}

.ic-scope .ic-coupon-block {
    /* background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); */
    border-radius: 14px;
    padding: 18px 28px;
    width: 100%;
}

.ic-scope .ic-coupon-label {
    color: #142132;
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 500;
}

.ic-scope .ic-coupon-code {
    font-size: 44px;
    font-weight: 800;
    color: #142132;
    line-height: 1;
}

.ic-scope .ic-buy-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 24px;
    background: #f87d3b;
    color: #142132;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.15s ease;
    letter-spacing: 0.3px;
}

.ic-scope .ic-buy-now-btn:hover {
    background: #d94518;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}