/* ============================================================
   Make a Connection - Stylesheet
   ============================================================ */

/* ---- Tokens ---- */
:root {
    --navy:     #1a2744;
    --navy-light: #243352;
    --orange:   #e8742a;
    --orange-hover: #d4681f;
    --teal:     #0e9e9b;
    --blue:     #3b82f6;
    --amber:    #f59e0b;
    --green:    #16a34a;

    --text:     #2d3748;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --bg:       #ffffff;
    --bg-soft:  #f5f6f8;
    --bg-warm:  #faf8f5;
    --border:   #e2e5ea;

    --radius:   10px;
    --radius-lg: 16px;

    --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container: 1120px;
    --gutter: 20px;
}


/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-hover); }
ul { list-style: none; }


/* ---- Layout ---- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--navy);
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 9999;
    font-size: 14px;
}
.skip-link:focus { top: 0; }


/* ---- Header ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    text-decoration: none;
    flex-shrink: 0;
}
.logo img { width: 40px; height: 40px; }
.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.main-nav { flex: 1; }
.main-nav ul {
    display: flex;
    gap: 28px;
    justify-content: center;
}
.main-nav a {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a[aria-current] {
    color: var(--orange);
}
.main-nav a[aria-current]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
}

.header-cta {
    font-size: 14px;
    padding: 8px 20px;
    flex-shrink: 0;
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--navy); padding: 4px; }
.nav-toggle-close { display: none; }


/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-decoration: none;
    line-height: 1.4;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
    background: var(--orange);
    color: #fff;
}
.btn-primary:hover { background: var(--orange-hover); color: #fff; }

.btn-secondary {
    background: var(--bg-soft);
    color: var(--text);
}
.btn-secondary:hover { background: var(--border); }

.btn-outline {
    background: transparent;
    color: var(--orange);
    box-shadow: inset 0 0 0 2px var(--orange);
}
.btn-outline:hover { background: var(--orange); color: #fff; }

.btn-lg {
    font-size: 18px;
    padding: 16px 36px;
    border-radius: 12px;
}


/* ---- Hero ---- */
.hero {
    padding: 72px 0 80px;
    background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,116,42,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
    position: relative;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }

.hero p {
    font-size: 18px;
    line-height: 1.65;
    opacity: 0.85;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-search {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(8px);
}
.hero-search h2 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}
.hero-search .field { margin-bottom: 16px; }
.hero-search label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    opacity: 0.8;
}
.hero-search input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: border-color 0.2s;
}
.hero-search input::placeholder { color: rgba(255,255,255,0.4); }
.hero-search input:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255,255,255,0.15);
}
.hero-search .btn { width: 100%; justify-content: center; }


/* ---- Trust bar ---- */
.trust-bar {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}
.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 14px;
    color: var(--text-muted);
}
.trust-items span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-items svg { color: var(--green); width: 18px; height: 18px; }


/* ---- Section ---- */
.section {
    padding: 72px 0;
}
.section-soft {
    background: var(--bg-soft);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 17px;
}


/* ---- Service cards ---- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: var(--text);
    display: block;
}
.service-card:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 24px rgba(232,116,42,0.1);
    color: var(--text);
}

.service-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
}
.service-card .card-icon.icon-electricity { background: var(--orange); }
.service-card .card-icon.icon-gas { background: var(--teal); }
.service-card .card-icon.icon-internet { background: var(--blue); }
.service-card .card-icon.icon-solar { background: var(--amber); }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.service-card .card-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}


/* ---- State links ---- */
.state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.state-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 500;
    transition: border-color 0.2s;
    text-decoration: none;
}
.state-link:hover {
    border-color: var(--orange);
    color: var(--navy);
}
.state-link .state-abbr {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--orange);
    width: 42px;
}


/* ---- Content page ---- */
.page-hero {
    padding: 48px 0;
    background: var(--navy);
    color: #fff;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.page-hero p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
}
.page-hero .updated {
    font-size: 13px;
    opacity: 0.5;
    margin-top: 12px;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    padding: 48px 0;
}

.content-main h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 36px;
    margin-bottom: 16px;
}
.content-main h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 28px;
    margin-bottom: 12px;
}
.content-main p {
    margin-bottom: 16px;
}
.content-main ul, .content-main ol {
    margin-bottom: 16px;
    padding-left: 24px;
}
.content-main li {
    list-style: disc;
    margin-bottom: 6px;
}

.content-sidebar {
    position: sticky;
    top: 88px;
    align-self: start;
}

.sidebar-card {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 20px;
}
.sidebar-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}


/* ---- Network table ---- */
.network-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}
.network-table th {
    text-align: left;
    padding: 12px 16px;
    background: var(--bg-soft);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border);
}
.network-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}
.network-table tr:last-child td { border-bottom: none; }


/* ---- FAQ ---- */
.faq-list {
    max-width: 720px;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-q::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.2s;
}
.faq-item.open .faq-q::after {
    content: '-';
}
.faq-a {
    display: none;
    padding-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }


/* ---- Form ---- */
.form-section {
    padding: 72px 0;
    background: var(--bg-soft);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.04);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}
.form-header h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}
.form-header p {
    color: var(--text-muted);
    font-size: 15px;
}

.form-step legend {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    display: block;
    width: 100%;
}

fieldset { border: none; }

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.check-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.check-card:hover { border-color: var(--text-muted); }
.check-card input { display: none; }
.check-card input:checked + .check-icon { color: var(--orange); }
.check-card input:checked ~ .check-label { color: var(--navy); font-weight: 600; }
.check-card:has(input:checked) {
    border-color: var(--orange);
    background: rgba(232,116,42,0.04);
}
.check-icon { color: var(--text-light); transition: color 0.2s; }
.check-label { font-size: 15px; color: var(--text-muted); transition: color 0.2s; }

.radio-group {
    display: flex;
    gap: 12px;
}
.radio-pill {
    flex: 1;
    text-align: center;
}
.radio-pill input { display: none; }
.radio-pill span {
    display: block;
    padding: 10px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}
.radio-pill input:checked + span {
    border-color: var(--orange);
    background: rgba(232,116,42,0.04);
    color: var(--navy);
    font-weight: 600;
}

.field { margin-bottom: 20px; }
.field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.field .optional { font-weight: 400; color: var(--text-muted); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"] {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    transition: border-color 0.2s;
    font-family: var(--font-body);
}
.field input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,116,42,0.1);
}
.field input.error { border-color: #ef4444; }
.field .error-msg { color: #ef4444; font-size: 13px; margin-top: 4px; display: none; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.btn-row .btn { flex: 1; justify-content: center; }

.btn-next, .btn-submit { margin-top: 24px; width: 100%; justify-content: center; }

.consent-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    cursor: pointer;
    line-height: 1.5;
}
.consent-check input { margin-top: 3px; flex-shrink: 0; }

.form-fine-print {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 16px;
}
.form-fine-print a { color: var(--text-muted); text-decoration: underline; }

.form-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.2s;
}
.dot.active { background: var(--orange); }
.dot.done { background: var(--green); }


/* ---- Breadcrumbs ---- */
.breadcrumbs ol {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    flex-wrap: wrap;
    padding: 0;
}
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs li + li::before { content: '/'; color: var(--border); }
.breadcrumbs a { color: rgba(255,255,255,0.6); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span:last-child { color: rgba(255,255,255,0.8); }


/* ---- Footer ---- */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
}
.footer-logo img { width: 32px; height: 32px; }

.footer-about p { font-size: 14px; line-height: 1.65; }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
    display: flex;
}
.footer-social a:hover { color: #fff; }

.footer-col h3 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    font-size: 13px;
    text-align: center;
}
.footer-nz {
    margin-bottom: 16px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    display: inline-block;
}
.footer-nz a { color: var(--orange); }
.footer-bottom p { margin-bottom: 8px; }
.footer-disclaimer { max-width: 640px; margin: 12px auto 0; color: rgba(255,255,255,0.4); }


/* ---- Responsive ---- */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-search { max-width: 420px; }
    .content-layout { grid-template-columns: 1fr; }
    .content-sidebar { position: static; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    :root { --gutter: 16px; }
    .header-inner { gap: 12px; }
    .main-nav { display: none; }
    .main-nav.open {
        display: block;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        padding: 24px;
        z-index: 99;
    }
    .main-nav.open ul { flex-direction: column; gap: 0; }
    .main-nav.open a { display: block; padding: 14px 0; font-size: 18px; border-bottom: 1px solid var(--border); }
    .nav-toggle { display: block; }
    .nav-toggle-close { display: none; }
    .nav-toggle[aria-expanded="true"] .nav-toggle-open { display: none; }
    .nav-toggle[aria-expanded="true"] .nav-toggle-close { display: block; }

    .header-cta { display: none; }

    .hero { padding: 48px 0 56px; }
    .hero h1 { font-size: 32px; }

    .trust-items { gap: 16px; flex-wrap: wrap; justify-content: center; font-size: 13px; }

    .service-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .service-card { padding: 20px 16px; }

    .section { padding: 48px 0; }

    .form-card { padding: 24px; border-radius: var(--radius); }
    .checkbox-group { grid-template-columns: 1fr 1fr; gap: 8px; }
    .check-card { padding: 12px; }
    .field-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .state-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ---- Fix content padding on mobile ---- */
.content-main {
    min-width: 0;
}

@media (max-width: 900px) {
    .content-layout {
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }
}

@media (max-width: 680px) {
    .page-hero .container,
    .content-layout,
    .section .container {
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }
    .content-main h2,
    .content-main h3,
    .content-main p,
    .content-main table {
        max-width: 100%;
        overflow-wrap: break-word;
    }
    .network-table {
        display: block;
        overflow-x: auto;
    }
}


/* ---- Sticky compare CTA button ---- */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
    box-shadow: 0 4px 20px rgba(232,116,42,0.35);
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 15px;
    display: none;
    animation: cta-pop 0.3s ease;
}
.sticky-cta.visible {
    display: inline-flex;
}
@keyframes cta-pop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
@media (max-width: 680px) {
    .sticky-cta {
        bottom: 16px;
        right: 16px;
        left: 16px;
        justify-content: center;
        border-radius: var(--radius);
    }
}


/* ---- Cookie consent banner ---- */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    padding: 18px 20px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner-inner p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    flex: 1 1 420px;
}
.cookie-banner-inner p a { color: var(--navy); text-decoration: underline; }
.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-banner-actions .btn {
    padding: 10px 18px;
    font-size: 14px;
}
@media (max-width: 680px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .cookie-banner-actions {
        justify-content: stretch;
    }
    .cookie-banner-actions .btn {
        flex: 1;
        justify-content: center;
    }
}


/* ---- Our Take box ---- */
.our-take {
    background: linear-gradient(135deg, #faf5f0 0%, #f5f0eb 100%);
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 24px 28px;
    margin: 28px 0;
}
.our-take h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 12px;
    margin-top: 0;
}
.our-take p { margin-bottom: 12px; }
.our-take p:last-child { margin-bottom: 0; }


/* ---- Scenario box ---- */
.scenario-box {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}
.scenario-box h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}


/* ---- Supplier card ---- */
.supplier-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
}
.supplier-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.supplier-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
}
.supplier-states {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg-soft);
    padding: 4px 10px;
    border-radius: 20px;
}
.supplier-rating {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 8px;
}
.supplier-quote {
    border-left: 3px solid var(--border);
    padding-left: 16px;
    font-style: italic;
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 16px;
}
.supplier-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-light);
}
.supplier-meta span {
    background: var(--bg-soft);
    padding: 3px 8px;
    border-radius: 4px;
}


/* ---- Quick summary box ---- */
.quick-summary {
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.quick-summary dt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
    margin-bottom: 4px;
}
.quick-summary dd {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
}
@media (max-width: 680px) {
    .quick-summary { grid-template-columns: 1fr; }
}


/* ---- Inline CTA banner ---- */
.inline-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 32px 0;
    text-align: center;
}
.inline-cta h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    margin-top: 0;
}
.inline-cta p {
    opacity: 0.8;
    margin-bottom: 16px;
    font-size: 15px;
}


/* ---- Bill upload ---- */
.file-upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 20px;
}
.file-upload-area:hover {
    border-color: var(--orange);
    background: rgba(232,116,42,0.03);
}
.file-upload-area input[type="file"] {
    display: none;
}
.file-upload-area .upload-label {
    font-size: 14px;
    color: var(--text-muted);
}
.file-upload-area .upload-label strong {
    color: var(--orange);
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}
.file-upload-area .file-name {
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
}


/* ---- Live grid / spot price widget ---- */
.live-grid-widget-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}
.live-grid-widget-header h3 {
    color: var(--navy);
    font-size: 20px;
    margin: 0;
}
.live-grid-updated {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}
.live-grid-note {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 640px;
    margin-bottom: 20px;
}
.live-grid-regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 16px;
}
.live-grid-region {
    background: #fff;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.live-grid-region-label {
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
    letter-spacing: 0.03em;
}
.live-grid-region-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--orange);
    margin: 4px 0;
}
.live-grid-sparkline {
    color: var(--internet-blue, #3b82f6);
    display: block;
    margin: 6px auto;
}
.live-grid-sparkline .live-grid-peak { fill: #e8742a; }
.live-grid-sparkline .live-grid-low { fill: #0e9e9b; }
.live-grid-region-range {
    font-size: 11px;
    color: var(--text-muted);
}


/* ---- Live rate tables (supplier + state pages) ---- */
.live-rates-note {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}
.live-rates-asterisk {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 6px;
}
.table-scroll {
    overflow-x: auto;
    margin-bottom: 8px;
}
.live-rates-table {
    min-width: 560px;
}
.tag-tou {
    display: inline-block;
    background: var(--internet-blue, #3b82f6);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
}
