/* ==========================================================================
   OKLAHOMA ENERGY SOLUTIONS (OKES)
   SUNCHECK CALCULATOR STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. LAYOUT & STEP CONTAINERS
   -------------------------------------------------------------------------- */
.calc-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 16px;
    min-height: 70vh;
}

.calc-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border-top: 6px solid var(--primary-yellow);
    padding: 36px 30px;
    margin-bottom: 24px;
    transition: transform var(--transition-normal);
}

.calc-step {
    display: none;
}

.calc-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out forwards;
}

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

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY & HEADER ELEMENTS
   -------------------------------------------------------------------------- */
.calc-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-charcoal);
    margin-bottom: 8px;
    text-align: center;
}

.calc-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   3. FORM CONTROLS & COMPATIBILITY
   -------------------------------------------------------------------------- */
.calc-group {
    margin-bottom: 24px;
}

.calc-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--primary-charcoal);
    letter-spacing: 0.5px;
    font-size: 15px;
}

.calc-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--neutral-border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 16px; /* Prevents mobile iOS zoom */
    color: var(--text-dark);
    outline: none;
    transition: all var(--transition-fast);
    background: var(--neutral-light);
}

.calc-control:focus {
    border-color: var(--primary-charcoal);
    box-shadow: 0 0 0 4px rgba(44, 53, 57, 0.1);
    background: var(--white);
}

/* Radio Option Groups */
.calc-radio-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 8px;
}

.calc-radio-card {
    border: 2px solid var(--neutral-border);
    border-radius: 6px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: var(--neutral-light);
    transition: all var(--transition-fast);
}

.calc-radio-card:hover {
    border-color: var(--primary-yellow);
}

.calc-radio-card.selected {
    border-color: var(--primary-charcoal);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.calc-radio-card input[type="radio"] {
    accent-color: var(--primary-charcoal);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.calc-radio-label {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.calc-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.4;
}

/* File Upload UI */
.file-upload-box {
    border: 2px dashed var(--neutral-border);
    background: var(--neutral-light);
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.file-upload-box:hover {
    border-color: var(--primary-charcoal);
}

.file-upload-box.has-file {
    border-style: solid;
    border-color: #22C55E;
    background: rgba(34, 197, 94, 0.03);
}

.file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.file-upload-box:hover .file-upload-icon {
    color: var(--primary-charcoal);
}

.file-upload-text {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.file-upload-subtext {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   4. PROGRESS & LOADING ANIMATIONS (STEP 3)
   -------------------------------------------------------------------------- */
.loader-wrap {
    text-align: center;
    padding: 40px 10px;
}

.loader-spinner {
    width: 54px;
    height: 54px;
    border: 4px solid var(--neutral-light);
    border-top-color: var(--primary-yellow);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 24px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-charcoal);
    margin-bottom: 8px;
}

.loader-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.loader-steps {
    list-style: none;
    max-width: 320px;
    margin: 0 auto;
    text-align: left;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 2.2;
}

.loader-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color var(--transition-fast);
}

.loader-steps li::before {
    content: '○';
    font-weight: bold;
    color: var(--neutral-border);
    display: inline-block;
    width: 16px;
}

.loader-steps li.active {
    color: var(--primary-charcoal);
    font-weight: 500;
}

.loader-steps li.active::before {
    content: '→';
    color: var(--primary-yellow);
}

.loader-steps li.done {
    color: #22C55E;
}

.loader-steps li.done::before {
    content: '✓';
    color: #22C55E;
}

/* --------------------------------------------------------------------------
   5. RESULTS DASHBOARD (STEP 4)
   -------------------------------------------------------------------------- */
.results-header {
    text-align: center;
    margin-bottom: 24px;
}

.results-address {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.results-address strong {
    color: var(--primary-charcoal);
}

/* Impact Score Card */
.score-card {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-border);
    background: var(--white);
}

.score-bar {
    height: 6px;
    width: 100%;
}

.score-card.priority-tier .score-bar { background: linear-gradient(90deg, #EA580C, #EF4444); }
.score-card.high-tier .score-bar { background: linear-gradient(90deg, #F97316, #EA580C); }
.score-card.elevated-tier .score-bar { background: linear-gradient(90deg, #FFB81C, #F97316); }
.score-card.active-tier .score-bar { background: linear-gradient(90deg, #E6A519, #FFB81C); }

.score-body {
    padding: 24px;
}

.score-badge-row {
    margin-bottom: 16px;
}

.score-badge {
    display: inline-flex;
    flex-direction: column;
    padding: 8px 14px;
    border-radius: 6px;
}

.priority-tier .score-badge { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); color: #EF4444; }
.high-tier .score-badge { background: rgba(234, 88, 12, 0.1); border: 1px solid rgba(234, 88, 12, 0.2); color: #EA580C; }
.elevated-tier .score-badge { background: rgba(249, 115, 22, 0.1); border: 1px solid rgba(249, 115, 22, 0.2); color: #F97316; }
.active-tier .score-badge { background: rgba(255, 184, 28, 0.1); border: 1px solid rgba(255, 184, 28, 0.2); color: var(--primary-charcoal); }

.score-tier-name {
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
}

.score-tier-sub {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 2px;
}

.score-main-row {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 20px;
}

.score-number {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -2px;
}

.priority-tier .score-number { color: #EF4444; }
.high-tier .score-number { color: #EA580C; }
.elevated-tier .score-number { color: #F97316; }
.active-tier .score-number { color: var(--primary-charcoal); }

.score-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 4px;
}

.score-scale {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.score-desc {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.4;
    max-width: 280px;
    margin-top: 4px;
}

/* Drivers Block */
.drivers-box {
    background: var(--neutral-light);
    border: 1px solid var(--neutral-border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.drivers-title {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 700;
}

.driver-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.45;
}

.driver-item:last-child {
    margin-bottom: 0;
}

.driver-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.priority-tier .driver-bullet { background: #EF4444; }
.high-tier .driver-bullet { background: #EA580C; }
.elevated-tier .driver-bullet { background: #F97316; }
.active-tier .driver-bullet { background: var(--primary-yellow); }

.driver-text {
    color: var(--text-dark);
}

.update-bar {
    background: rgba(var(--primary-charcoal-rgb), 0.04);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.update-bar strong {
    color: var(--primary-charcoal);
}

.update-bar .trend-up {
    color: #EF4444;
    font-weight: bold;
}

/* Score Slider Track */
.slider-outer {
    height: 10px;
    background: var(--neutral-light);
    border-radius: 5px;
    position: relative;
    margin-bottom: 8px;
    border: 1px solid var(--neutral-border);
}

.slider-inner {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--primary-yellow), #F97316 50%, #EF4444 100%);
    width: 0%;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-pin {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    transform: translate(-50%, -50%);
    left: 0%;
    transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--primary-charcoal);
}

.priority-tier .slider-pin { border-color: #EF4444; }
.high-tier .slider-pin { border-color: #EA580C; }
.elevated-tier .slider-pin { border-color: #F97316; }
.active-tier .slider-pin { border-color: var(--primary-yellow); }

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Grid Metrics Container */
.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.metric-tile {
    background: var(--neutral-light);
    border: 1px solid var(--neutral-border);
    border-radius: 8px;
    padding: 16px;
}

.metric-lbl {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}

.metric-val {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-charcoal);
    line-height: 1.1;
    font-weight: 700;
}

.metric-val.alert-red { color: #EF4444; }
.metric-val.alert-orange { color: #EA580C; }

.metric-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.3;
}

/* Local Grid Insight Card */
.local-insight-card {
    background: rgba(44, 53, 57, 0.03);
    border: 1px solid var(--neutral-border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.insight-title {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-charcoal);
    margin-bottom: 12px;
    font-weight: 700;
}

.insight-body {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.insight-icon {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.insight-text {
    font-size: 13.5px;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Est. Suncheck Card */
.estimate-card {
    border: 1px solid var(--neutral-border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.estimate-top {
    background: var(--primary-charcoal);
    color: var(--white);
    padding: 16px 20px;
}

.estimate-kicker {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 2px;
    font-weight: 500;
}

.estimate-title {
    font-family: var(--font-heading);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.estimate-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
}

.estimate-body {
    padding: 20px;
}

.estimate-total-box {
    background: var(--neutral-light);
    border: 1px solid var(--neutral-border);
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    margin-bottom: 16px;
}

.total-box-lbl {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
    font-weight: 500;
}

.total-box-val {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #16A34A;
    font-weight: 700;
}

.total-box-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.est-details-row {
    background: var(--white);
    border: 1px solid var(--neutral-border);
    border-radius: 6px;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.est-details-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.est-details-lbl {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--primary-charcoal);
    text-transform: uppercase;
}

.est-details-val {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #16A34A;
}

.est-details-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.35;
}

.est-details-bonus {
    background: rgba(255, 184, 28, 0.04);
    border: 1px solid rgba(255, 184, 28, 0.2);
    border-radius: 6px;
    padding: 14px;
}

.est-bonus-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.est-bonus-lbl {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--primary-charcoal);
    text-transform: uppercase;
}

.est-bonus-val {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #16A34A;
}

.est-bonus-desc {
    font-size: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.est-bonus-desc strong {
    color: #15803D;
}

/* --------------------------------------------------------------------------
   6. REAL STORIES TESTIMONIAL CAROUSEL
   -------------------------------------------------------------------------- */
.carousel-card {
    background: var(--neutral-light);
    border: 1px solid var(--neutral-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.carousel-hdr {
    padding: 20px 20px 0;
    border-bottom: 1px solid var(--neutral-border);
    padding-bottom: 12px;
}

.carousel-kicker {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 2px;
    font-weight: 500;
}

.carousel-title {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary-charcoal);
    text-transform: uppercase;
    font-weight: 700;
}

.carousel-slide-wrap {
    padding: 20px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    user-select: none;
}

.slide-amt {
    font-family: var(--font-heading);
    font-size: 40px;
    color: #16A34A;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.slide-sys {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.slide-name {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--primary-charcoal);
    font-weight: 700;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.slide-use {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.slide-story {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.45;
    margin-bottom: 12px;
}

.slide-quote {
    border-left: 3px solid var(--primary-yellow);
    background: var(--white);
    padding: 8px 12px;
    font-size: 12px;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.4;
    border-radius: 0 4px 4px 0;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--white);
    border-top: 1px solid var(--neutral-border);
}

.carousel-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--neutral-light);
    border: 1px solid var(--neutral-border);
    color: var(--primary-charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.carousel-btn:hover:not(:disabled) {
    background: var(--primary-charcoal);
    color: var(--white);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    gap: 6px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neutral-border);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--primary-charcoal);
    transform: scale(1.2);
}

/* Reset / Retake button */
.retake-btn {
    display: block;
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: underline;
    margin-top: 24px;
    text-align: center;
    transition: color var(--transition-fast);
}

.retake-btn:hover {
    color: var(--primary-charcoal);
}

/* Review date */
.slide-date {
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

/* Booking CTA Card */
.booking-cta-card {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    background: var(--white);
    border: 2px solid var(--primary-charcoal);
    box-shadow: var(--shadow-md);
}

.booking-cta-accent-bar {
    height: 5px;
    background: var(--primary-yellow);
    width: 100%;
}

.booking-cta-body {
    padding: 28px 24px 24px;
    text-align: center;
}

.booking-cta-eyebrow {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}

.booking-cta-title {
    font-family: var(--font-heading);
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-charcoal);
    margin-bottom: 18px;
    line-height: 1.15;
}

.cta-trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.cta-trust-list li {
    font-size: 14px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-check {
    color: #16A34A;
    font-weight: 700;
    font-size: 15px;
}

.booking-cta-btn {
    width: 100%;
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 700;
    max-width: 420px;
}

/* ==========================================================================
   CONVERSATIONAL MULTI-STEP UPGRADES
   ========================================================================== */

/* Sub-steps & Slide Deck animations */
.q-slides-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 380px;
    margin-top: 10px;
}

.q-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease-out;
}

.q-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.q-slide.slide-out {
    transform: translateX(-100%);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.q-slide.slide-in-reverse {
    transform: translateX(-100%);
}

.q-slide.active.slide-in-reverse {
    transform: translateX(0);
}

/* Net Metering Progress Bar */
/* Net Meter Gauge — sits above the card */
.gauge-section {
    max-width: 240px;
    margin: 0 auto 8px;
    padding: 0 16px;
}

.gauge-above-card {
    width: 100%;
}

.gauge-wrap {
    display: flex;
    justify-content: center;
}

.gauge-svg {
    width: 100%;
    height: auto;
    display: block;
}

.gauge-num {
    font-size: 9px;
    font-weight: 700;
    font-family: var(--font-heading), sans-serif;
    fill: #4A7BA8;
}

.net-meter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.back-btn-step {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary-charcoal);
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}

.back-btn-step:hover {
    background: rgba(0, 0, 0, 0.05);
}

.net-meter-text {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Interactive Selectable Cards */
.select-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.select-card {
    background: var(--neutral-light);
    border: 2px solid var(--neutral-border);
    border-radius: 10px;
    padding: 16px 20px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 14px;
}

.select-card-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
    line-height: 1;
}

.select-card-body {
    flex: 1;
}

.select-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-charcoal);
    margin-bottom: 3px;
    line-height: 1.2;
}

.select-card-area {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.select-card:hover {
    border-color: var(--primary-yellow);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.select-card.active {
    border-color: var(--primary-charcoal);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.select-card::after {
    content: '→';
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
}

.select-card:hover::after {
    color: var(--primary-charcoal);
    transform: translateX(3px);
}

/* Interactive Electric Bill Statement Graphic */
.bill-statement-mock {
    background: #FFFFFF;
    border: 2px solid #D1D5DB;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 24px;
    font-family: 'Courier New', Courier, monospace;
    position: relative;
    overflow: hidden;
}

.bill-statement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed #9CA3AF;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.bill-statement-title {
    font-weight: bold;
    font-size: 13px;
    color: #1F2937;
    letter-spacing: 1px;
}

.bill-statement-date {
    font-size: 10px;
    color: #4B5563;
}

.bill-statement-body {
    margin-bottom: 12px;
}

.bill-statement-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #374151;
    margin-bottom: 4px;
}

.bill-statement-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px dashed #9CA3AF;
    padding-top: 10px;
    margin-top: 8px;
}

.bill-statement-total-label {
    font-weight: bold;
    font-size: 13px;
    color: #111827;
}

.bill-statement-total-amount {
    font-weight: bold;
    font-size: 22px;
    color: #EF4444;
    transition: color 0.3s;
}

.bill-statement-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #E5E7EB;
}

.bill-statement-barcode {
    font-size: 20px;
    color: #374151;
    letter-spacing: 2px;
    line-height: 1;
}

.bill-statement-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    border: 3px solid #EF4444;
    border-radius: 4px;
    color: #EF4444;
    font-weight: bold;
    font-size: 13px;
    padding: 4px 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    background: rgba(255, 255, 255, 0.95);
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Bill selector button grid */
.bill-btn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .bill-btn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bill-btn {
    background: var(--neutral-light);
    border: 2px solid var(--neutral-border);
    border-radius: 6px;
    padding: 12px 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: bold;
    color: var(--primary-charcoal);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.bill-btn:hover, .bill-btn.active {
    border-color: var(--primary-charcoal);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.bill-ticker-box {
    background: rgba(239, 68, 68, 0.03);
    border: 1px dashed rgba(239, 68, 68, 0.2);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 16px;
    text-align: center;
    transition: all 0.3s;
}

.bill-ticker-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-charcoal);
    line-height: 1.4;
}

/* LeadFlo Custom Verification Form styling */
.leadflo-form-container {
    width: 100%;
    min-height: 380px;
    overflow: hidden;
    border-radius: 8px;
    background: transparent;
}

/* Side-by-Side Ownership Grid Layout */
.ownership-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.ownership-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 16px;
    height: 150px;
    border-radius: 12px;
}

.ownership-card::after {
    display: none !important;
}

.ownership-card span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.ownership-card .option-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    stroke: var(--primary-charcoal);
    color: none;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.2s;
}

.ownership-card:hover .option-icon {
    transform: scale(1.1);
    stroke: var(--primary-yellow);
}

.ownership-card.active {
    border-color: var(--primary-yellow);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.ownership-card.active .option-icon {
    stroke: var(--primary-yellow);
}

/* Inline Error validation messages with shake animation */
.calc-error-msg {
    animation: shakeError 0.3s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shakeError {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-3px, 0, 0); }
    40%, 60% { transform: translate3d(3px, 0, 0); }
}

@media (max-width: 480px) {
    .ownership-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .ownership-card {
        padding: 16px 8px;
        height: 125px;
    }
    
    .ownership-card span {
        font-size: 13px;
    }
    
    .ownership-card .option-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
    }
}
