/* ===================================================================
   Solar Landing Page — Stylesheet
   =================================================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #0f4c75;
    --color-accent: #f7a21b;
    --color-accent-dk: #d88a0e;
    --color-dark: #1a1a2e;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-muted: #6c757d;
    --color-success: #27ae60;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-hero: 'Manrope', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, .12);
    --transition: .3s ease;
    --container: 1080px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-dark);
}

.btn--primary:hover {
    background: var(--color-accent-dk);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn--lg {
    padding: 18px 44px;
    font-size: 1.1rem;
}

.btn--small {
    padding: 8px 20px;
    font-size: .875rem;
}

.btn--accent {
    background: var(--color-accent);
    color: var(--color-dark);
}

.btn--accent:hover {
    background: var(--color-accent-dk);
}

.btn--hero {
    min-width: 220px;
    min-height: 62px;
    padding: 18px 30px;
    border-radius: 999px;
    font-family: var(--font-hero);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -.02em;
    border: 1px solid transparent;
    backdrop-filter: blur(14px);
}

.btn--hero:hover {
    transform: translateY(-2px);
}

.btn--hero-primary {
    background: linear-gradient(135deg, #ffe29a 0%, #f7a21b 100%);
    color: #12263a;
    box-shadow: 0 18px 36px rgba(247, 162, 27, .28);
}

.btn--hero-primary:hover {
    background: linear-gradient(135deg, #ffebb7 0%, #f8ab2d 100%);
    color: #12263a;
    box-shadow: 0 20px 40px rgba(247, 162, 27, .32);
}

.btn--hero-secondary {
    background: rgba(8, 18, 29, .22);
    color: rgba(255, 255, 255, .92);
    border-color: rgba(255, 255, 255, .22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.btn--hero-secondary:hover {
    background: rgba(8, 18, 29, .34);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, .32);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}

/* --- Section helpers --- */
.section-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 48px;
}

.section-title--light {
    color: var(--color-white);
}

/* --- Type toggling --- */
.type-content {
    display: none;
}

.type-content.active {
    display: block;
}

/* ===================================================================
   1. HEADER
   =================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    padding: 0 0;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.site-header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-primary);
}

.site-header__icon {
    color: var(--color-accent);
    flex: 0 0 auto;
}

.site-header__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    line-height: 1.05;
}

.site-header__company {
    color: var(--color-accent);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-header__title {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -.02em;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: .9rem;
    font-weight: 500;
}

.site-header__nav a:not(.btn) {
    color: var(--color-muted);
    transition: var(--transition);
}

.site-header__nav a:not(.btn):hover {
    color: var(--color-dark);
}

/* ===================================================================
   2. COUNTRY MENU
   =================================================================== */
.country-menu {
    position: relative;
    flex: 0 0 auto;
    margin-left: 20px;
}

.country-menu__trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 100px;
    border: 1px solid rgba(15, 76, 117, .12);
    background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(248, 249, 250, .94) 100%);
    box-shadow: 0 10px 24px rgba(15, 76, 117, .08);
    cursor: pointer;
    transition: var(--transition);
}

.country-menu__trigger::-webkit-details-marker {
    display: none;
}

.country-menu__trigger::marker {
    content: '';
}

.country-menu__trigger:hover {
    border-color: rgba(247, 162, 27, .45);
    box-shadow: 0 14px 32px rgba(15, 76, 117, .14);
    transform: translateY(-1px);
}

.country-menu__trigger:focus-visible {
    outline: 2px solid rgba(247, 162, 27, .7);
    outline-offset: 3px;
}

.country-menu__current,
.country-menu__item-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.country-menu__flag {
    font-size: 1.15rem;
    line-height: 1;
}

.country-menu__flag img.emoji {
    height: 1.15rem;
    width: auto;
    vertical-align: middle;
}

.country-menu__label {
    margin-left: 4px;
    color: var(--color-primary);
    font-size: .88rem;
    font-weight: 700;
    white-space: nowrap;
}

.country-menu__chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--transition);
}

.country-menu[open] .country-menu__chevron {
    transform: rotate(-135deg) translate(-1px, -1px);
}

.country-menu__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 2;
    min-width: 220px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(15, 76, 117, .1);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 44px rgba(26, 26, 46, .16);
    backdrop-filter: blur(18px);
}

.country-menu__caption {
    display: block;
    padding: 2px 10px 10px;
    color: var(--color-muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.country-menu__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px;
    border-radius: 14px;
    transition: var(--transition);
}

.country-menu__item:hover {
    background: rgba(15, 76, 117, .08);
    transform: translateX(2px);
}

.country-menu__item-name {
    color: var(--color-dark);
    font-size: .94rem;
    font-weight: 600;
}

.country-menu__item-code {
    color: var(--color-muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ===================================================================
   3. HERO
   =================================================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-set {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}

.hero__bg-set.is-active {
    opacity: 1;
}

.hero__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}

.hero__bg-image.is-active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 18% 18%, rgba(247, 162, 27, .28) 0%, rgba(247, 162, 27, 0) 34%),
        linear-gradient(180deg, rgba(54, 86, 108, 0.74) 70%, rgba(8, 18, 29, .9) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    max-width: 900px;
    padding: 128px 24px 96px;
}

.hero__headline {
    font-family: var(--font-hero);
    font-size: clamp(2.8rem, 4.8vw, 4.5rem);
    color: var(--color-white);
    font-weight: 800;
    letter-spacing: -.055em;
    max-width: 860px;
    margin: 0;
    line-height: 1.04;
    text-wrap: balance;
}

.hero__headline-accent {
    position: relative;
    display: inline-block;
    padding: 0 .08em .04em;
    font-family: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    color: #ffe6a0;
    text-shadow: 0 10px 26px rgba(247, 162, 27, .2);
}

.hero__headline-accent::after {
    content: '';
    position: absolute;
    left: .1em;
    right: .08em;
    bottom: .08em;
    height: .18em;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 226, 154, .7) 0%, rgba(247, 162, 27, .85) 100%);
    opacity: .4;
    filter: blur(8px);
    z-index: -1;
}

.hero__rate {
    margin-bottom: 0;
}

.hero__rate-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: min(100%, 420px);
    padding: 22px 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(10, 20, 32, .46) 0%, rgba(10, 20, 32, .26) 100%);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 64px rgba(5, 16, 27, .26);
    color: rgba(255, 255, 255, .92);
    line-height: 1.2;
}

.hero__rate-label {
    font-family: var(--font-hero);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
}

.hero__rate-price-row {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hero__rate-price {
    display: inline-block;
    padding: 0 .08em 0 0;
    background: none;
    background-image: linear-gradient(90deg, #fff7d8 0%, #ffe29a 32%, #f7c44b 68%, #e6a313 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-hero);
    font-size: clamp(2.4rem, 5.4vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -.07em;
    line-height: .94;
    filter: drop-shadow(0 10px 20px rgba(247, 162, 27, .18));
}

.hero__rate-unit {
    color: rgba(255, 255, 255, .84);
    font-family: var(--font-hero);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -.02em;
    padding-bottom: .3rem;
}

.hero__selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 2px;
}

.hero__selector-label,
.hero__cta-label {
    font-family: var(--font-hero);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
}

.hero__toggle {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: min(100%, 460px);
    background: rgba(11, 25, 38, .34);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 18px 38px rgba(7, 19, 31, .22);
}

.hero__toggle-btn {
    min-height: 60px;
    padding: 14px 32px;
    border: none;
    border-radius: 100px;
    background: transparent;
    color: rgba(255, 255, 255, .82);
    font-family: var(--font-hero);
    font-weight: 800;
    font-size: 1.18rem;
    letter-spacing: -.02em;
    cursor: pointer;
    transition: var(--transition);
}

.hero__toggle-btn:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, .05);
}

.hero__toggle-btn--active {
    background: linear-gradient(135deg, #ffe29a 0%, #f7a21b 100%);
    color: #12263a;
    box-shadow: 0 14px 26px rgba(247, 162, 27, .26);
}

.hero__toggle-btn--active:hover {
    background: linear-gradient(135deg, #ffe29a 0%, #f7a21b 100%);
    color: #12263a;
    box-shadow: 0 14px 26px rgba(247, 162, 27, .26);
}

.hero__cta-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__cta-group::before {
    content: none;
}

/* --- Hero Split (You pay / We pay) --- */
.hero__split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: min(100%, 480px);
    padding: 26px 36px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(10, 20, 32, .42) 0%, rgba(10, 20, 32, .22) 100%);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 64px rgba(5, 16, 27, .26);
}

.hero__split-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero__split-label {
    font-family: var(--font-hero);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .62);
}

.hero__split-value {
    font-family: var(--font-hero);
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1;
    background-image: linear-gradient(90deg, #fff7d8 0%, #ffe29a 32%, #f7c44b 68%, #e6a313 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 6px 14px rgba(247, 162, 27, .18));
}

.hero__split-note {
    font-family: var(--font-hero);
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .62);
    letter-spacing: .02em;
    margin-top: 2px;
    line-height: 1.4;
    text-align: center;
}

.hero__split-note strong {
    color: var(--color-white);
    font-weight: 800;
}

.hero__split-divider {
    width: 1px;
    height: 56px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.32) 50%, rgba(255,255,255,0) 100%);
    margin: 0 28px;
    flex-shrink: 0;
}

.hero__upload-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* ===================================================================
   UPLOAD BILL SECTION
   =================================================================== */
.upload-bill {
    padding: 80px 0;
    background: var(--color-light);
}

.upload-bill__intro {
    text-align: center;
    color: var(--color-muted);
    font-size: 1.15rem;
    max-width: 580px;
    margin: -28px auto 40px;
    line-height: 1.65;
}

.upload-bill__card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 76, 117, .08);
}

.upload-bill__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.upload-bill__dropzone {
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 32px 24px;
    border: 2px dashed rgba(15, 76, 117, .22);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #f8fbfe 0%, #f1f5f9 100%);
    cursor: pointer;
    transition: var(--transition);
}

.upload-bill__dropzone:hover,
.upload-bill__dropzone--active {
    border-color: var(--color-accent);
    background: linear-gradient(180deg, #fffdf6 0%, #fef8ec 100%);
}

.upload-bill__dropzone-icon {
    color: var(--color-primary);
    opacity: .5;
}

.upload-bill__dropzone--active .upload-bill__dropzone-icon {
    color: var(--color-accent);
    opacity: 1;
}

.upload-bill__dropzone-text {
    color: var(--color-dark);
    font-size: 1rem;
}

.upload-bill__dropzone-hint {
    color: var(--color-muted);
    font-size: .85rem;
}

.upload-bill__file-input {
    display: none;
}

.upload-bill__file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(247, 162, 27, .10) 0%, rgba(247, 162, 27, .04) 100%);
    border: 1px solid rgba(247, 162, 27, .28);
}

.upload-bill__file-name {
    flex: 1;
    font-weight: 600;
    color: var(--color-dark);
    font-size: .95rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.upload-bill__file-remove {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--color-muted);
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: var(--transition);
}

.upload-bill__file-remove:hover {
    color: #e16d6d;
}

.upload-bill__submit {
    width: 100%;
}

.upload-bill__submit:disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.upload-bill__status {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

.upload-bill__status--info {
    background: rgba(15, 76, 117, .08);
    color: var(--color-primary);
}

.upload-bill__status--success {
    background: rgba(39, 174, 96, .10);
    color: var(--color-success);
}

.upload-bill__status--error {
    background: rgba(225, 109, 109, .10);
    color: #c0392b;
}

/* ===================================================================
   4. VALUE PROPOSITION
   =================================================================== */
.value-prop {
    padding: 100px 0;
    background: var(--color-light);
}

.value-prop__headline {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 16px;
}

.value-prop__subheadline {
    text-align: center;
    color: var(--color-muted);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto 48px;
    white-space: pre-line;
}

.value-prop__bullets {
    max-width: 720px;
    margin: 0 auto 36px;
    display: grid;
    gap: 16px;
}

.value-prop__bullet-item {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border: 1px solid rgba(15, 76, 117, .1);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(247, 162, 27, .08) 0%, rgba(247, 162, 27, 0) 38%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 14px 30px rgba(15, 76, 117, .08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.value-prop__bullet-item::before {
    content: '';
    position: absolute;
    left: 43px;
    top: -16px;
    bottom: -16px;
    width: 2px;
    background: linear-gradient(180deg, rgba(15, 76, 117, .1) 0%, rgba(247, 162, 27, .28) 100%);
    z-index: 0;
}

.value-prop__bullet-item:first-child::before {
    top: 26px;
}

.value-prop__bullet-item:last-child::before {
    bottom: 26px;
}

.value-prop__bullet-item:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 76, 117, .16);
    box-shadow: 0 18px 34px rgba(15, 76, 117, .12);
}

.value-prop__bullet-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f1f4f6 0%, #dce3e8 100%);
    border: 1px solid rgba(122, 130, 138, .4);
    font-weight: 400;
    font-family: var(--font-hero);
    font-size: 1.55rem;
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(15, 76, 117, .10), inset 0 1px 0 rgba(255, 255, 255, .7);
    flex-shrink: 0;
}

.value-prop__bullet-copy {
    display: block;
    color: var(--color-dark);
    font-family: var(--font-hero);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -.025em;
}

.value-prop__closing {
    display: table;
    margin: 0 auto;
    padding: 16px 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(247, 162, 27, .14) 0%, rgba(247, 162, 27, .05) 100%);
    border: 2px solid rgba(247, 162, 27, .32);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent-dk);
    letter-spacing: -.025em;
    text-align: center;
}

/* ===================================================================
   5. HOW IT WORKS
   =================================================================== */
.how-it-works {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.how-it-works__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 76, 117, .9);
}

.how-it-works__inner {
    position: relative;
    z-index: 1;
}

.how-it-works .section-title {
    color: var(--color-white);
}

.how-it-works .type-content {
    display: none;
}

.how-it-works .type-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.how-it-works__card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius);
    padding: 40px;
    color: var(--color-white);
}

.how-it-works__card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.how-it-works__card p {
    font-size: 1.1rem;
    line-height: 1.75;
}

.how-it-works__card ul {
    padding: 0;
}

.how-it-works__card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.65;
}

.how-it-works__card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* ===================================================================
   6. BENEFITS
   =================================================================== */
.benefits {
    padding: 100px 0;
    background: var(--color-white);
}

.benefits__subheadline {
    text-align: center;
    color: var(--color-muted);
    font-size: 1.15rem;
    margin-top: -32px;
    margin-bottom: 48px;
}

.benefits__grid {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.benefits__card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    background: var(--color-light);
    border-radius: 18px;
    padding: 20px 22px;
    text-align: left;
    transition: var(--transition);
    border: 1px solid transparent;
}

.benefits__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.benefits__icon {
    width: 56px;
    height: 56px;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, #f1f4f6 0%, #dce3e8 100%);
}

.benefits__card p {
    font-family: var(--font-hero);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: -.025em;
}

/* ===================================================================
   7. STEPS
   =================================================================== */
.steps {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.steps__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 26, 46, .88) 0%, rgba(15, 76, 117, .92) 100%);
}

.steps__inner {
    position: relative;
    z-index: 1;
}

.steps__subtitle {
    text-align: center;
    color: var(--color-accent);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: -32px;
    margin-bottom: 12px;
}

.steps__intro {
    text-align: center;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 48px;
}

.steps__list {
    max-width: 640px;
    margin: 0 auto;
    counter-reset: none;
}

.steps__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.steps__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-dark);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.steps__text {
    color: var(--color-white);
    font-size: 1.05rem;
    padding-top: 8px;
}

/* ===================================================================
   8. TEAM
   =================================================================== */
.team {
    padding: 100px 0;
    background: var(--color-white);
}

.team__mission {
    background: var(--color-primary);
    border-radius: var(--radius);
    padding: 36px 40px;
    margin-bottom: 64px;
    position: relative;
}

.team__mission-label {
    font-family: var(--font-hero);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.team__mission-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.65;
    border-left: 4px solid var(--color-accent);
    padding-left: 20px;
    margin: 0;
}

.team__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.team__card {
    background: var(--color-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.team__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team__photo-wrap {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.team__info {
    padding: 28px 32px 32px;
    flex: 1;
}

.team__name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.team__role {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.team__bio {
    color: var(--color-muted);
    line-height: 1.7;
    font-size: .95rem;
    margin-bottom: 12px;
}

.team__bio:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .team__grid {
        grid-template-columns: 1fr;
    }

    .team__mission {
        padding: 28px 24px;
    }

    .team__mission-text {
        font-size: 1.1rem;
    }
}

/* ===================================================================
   8. WHO IS BEHIND
   =================================================================== */
.who-behind {
    padding: 100px 0;
    background: var(--color-light);
}

.who-behind__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.who-behind__card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.who-behind__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.who-behind__img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.who-behind__card h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    padding: 24px 28px 8px;
}

.who-behind__card p {
    padding: 0 28px 28px;
    color: var(--color-muted);
    line-height: 1.6;
}

/* ===================================================================
   9. FAQ
   =================================================================== */
.faq {
    padding: 100px 0;
    background: var(--color-white);
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq__question:hover {
    color: var(--color-primary);
}

.faq__chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq__item.open .faq__chevron {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}

.faq__item.open .faq__answer {
    max-height: 200px;
}

.faq__answer p {
    padding-bottom: 22px;
    color: var(--color-muted);
    line-height: 1.7;
}

/* ===================================================================
   10. SOLAR INVESTMENT TREND
   =================================================================== */
.trend {
    padding: 100px 0;
    background:
        radial-gradient(circle at top right, rgba(247, 162, 27, .16), transparent 28%),
        linear-gradient(180deg, #fffdf8 0%, #f7f9fc 100%);
}

.trend--price {
    background:
        radial-gradient(circle at top left, rgba(15, 76, 117, .12), transparent 32%),
        linear-gradient(180deg, #f8fbfe 0%, #fffdf8 100%);
}

.trend__header {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.trend__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(247, 162, 27, .16);
    color: var(--color-accent-dk);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.trend .section-title {
    margin-bottom: 16px;
}

.trend__intro {
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.trend__card {
    position: relative;
    padding: 36px;
    border-radius: 28px;
    background: var(--color-white);
    border: 1px solid rgba(15, 76, 117, .08);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.trend__card::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 162, 27, .18) 0%, rgba(247, 162, 27, 0) 72%);
    pointer-events: none;
}

.trend--price .trend__card::after {
    display: none;
}

.trend__stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.trend__stats--single {
    grid-template-columns: minmax(280px, 420px);
    justify-content: center;
}

.trend__stats--single .trend__stat {
    text-align: center;
}

.trend__stat {
    padding: 20px 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(15, 76, 117, .08);
}

.trend__stat-label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-muted);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.trend__stat-value,
.trend__stat-copy {
    display: block;
    color: var(--color-dark);
    font-weight: 800;
}

.trend__stat-value {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1.1;
}

.trend__stat-value--success {
    color: var(--color-success);
}

.trend__stat-value--alert {
    color: #e16d6d;
}

.trend__stat-copy {
    font-size: 1.05rem;
    line-height: 1.5;
}

.trend__chart-shell {
    position: relative;
    z-index: 1;
    height: 420px;
}

.trend__chart-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.trend__chart-heading {
    max-width: 520px;
}

.trend__chart-title {
    margin: 0;
    color: #1a1a2e;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.1;
    font-weight: 800;
}

.trend__chart-subtitle {
    margin: 10px 0 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.trend__chart-summary {
    flex: 0 0 auto;
    min-width: 220px;
    text-align: right;
}

.trend__chart-shell canvas {
    width: 100%;
    height: 100%;
}

.trend__chart-question {
    position: relative;
    z-index: 1;
    margin: 24px 0 0;
    color: #1a1a2e;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
}

/* ===================================================================
   11. CTA
   =================================================================== */
.cta {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 76, 117, .9) 0%, rgba(26, 26, 46, .92) 100%);
}

.cta__content {
    position: relative;
    z-index: 1;
}

.cta__headline {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta__body {
    color: rgba(255, 255, 255, .8);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.cta__benefits {
    margin-bottom: 36px;
}

.cta__benefits-list {
    display: grid;
    gap: 14px;
    width: fit-content;
    margin: 0;
    margin-inline: auto;
    padding: 0;
    text-align: left;
}

.cta__benefit-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 12px;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
}

.cta__benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    min-width: 1.6rem;
    font-size: 1.05rem;
    line-height: 1;
    flex-shrink: 0;
    color: var(--color-accent);
}

.cta__benefit-text {
    color: rgba(255, 255, 255, .92);
    line-height: 1.5;
}

/* ===================================================================
   12. SAVINGS CALCULATOR
   =================================================================== */
.calculator {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(247, 162, 27, .14), transparent 34%),
        linear-gradient(180deg, #f5f8fb 0%, #edf3f8 100%);
}

.calculator__shell {
    position: relative;
    padding: 40px;
    border-radius: 32px;
    background: linear-gradient(135deg, #133a57 0%, #1a1a2e 100%);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.calculator__shell::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 162, 27, .22) 0%, rgba(247, 162, 27, 0) 70%);
    pointer-events: none;
}

.calculator .section-title {
    margin-bottom: 16px;
    text-align: left;
    color: var(--color-white);
}

.calculator__header {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin-bottom: 32px;
}

.calculator__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .82);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.calculator__intro {
    color: rgba(255, 255, 255, .78);
    font-size: 1.05rem;
    max-width: 56ch;
}

.calculator__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 28px;
    align-items: start;
}

.calculator__inputs,
.calculator__results {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 18px 44px rgba(8, 24, 37, .22);
}

.calculator__inputs {
    padding: 28px;
}

.calculator__step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.calculator__step--choice {
    margin-top: 26px;
}

.calculator__step h3 {
    font-size: 1.15rem;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.calculator__step p {
    color: var(--color-muted);
    font-size: .95rem;
}

.calculator__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(15, 76, 117, .12);
    color: var(--color-primary);
    font-size: .95rem;
    font-weight: 700;
}

.calculator__field {
    margin-bottom: 20px;
}

.calculator__field label {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    color: var(--color-muted);
    margin-bottom: 6px;
}

.calculator__field input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-white);
}

.calculator__field input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(15, 76, 117, .1);
}

.calculator__field input[readonly] {
    background: #e9ecef;
    cursor: not-allowed;
}

.calculator__price-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    margin-bottom: 10px;
    border: 1px solid rgba(15, 76, 117, .12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(15, 76, 117, .05) 0%, rgba(255, 255, 255, 1) 100%);
}

.calculator__price-note--editable {
    margin-bottom: 14px;
}

.calculator__price-note-label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.calculator__price-note-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary);
}

.calculator__price-input-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.calculator__price-input {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid rgba(15, 76, 117, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
    transition: var(--transition);
}

.calculator__price-input:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(15, 76, 117, .08);
}

.calculator__price-input-prefix,
.calculator__price-input-suffix {
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}

.calculator__price-input-prefix {
    font-size: 1.05rem;
}

.calculator__price-input-suffix {
    color: var(--color-muted);
}

.calculator__price-input input {
    width: 100px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-dark);
    text-align: right;
    appearance: textfield;
    -moz-appearance: textfield;
}

.calculator__price-input input:focus {
    outline: none;
    box-shadow: none;
}

.calculator__price-input input::-webkit-outer-spin-button,
.calculator__price-input input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.calculator__price-input-note {
    font-size: .82rem;
    line-height: 1.35;
    color: var(--color-muted);
    text-align: right;
}

.calculator__mode-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.calculator__mode-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.calculator__mode-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calculator__mode-card {
    display: block;
    height: 100%;
    padding: 18px;
    border-radius: 20px;
    border: 2px solid rgba(15, 76, 117, .12);
    background: #f8fbfd;
    transition: var(--transition);
}

.calculator__mode-option:hover .calculator__mode-card {
    border-color: rgba(15, 76, 117, .3);
    transform: translateY(-2px);
}

.calculator__mode-option input:checked+.calculator__mode-card {
    border-color: var(--color-primary);
    background: rgba(15, 76, 117, .08);
    box-shadow: 0 14px 30px rgba(15, 76, 117, .12);
}

.calculator__mode-title {
    display: block;
    margin-bottom: 6px;
    font-weight: 800;
    color: var(--color-dark);
}

.calculator__mode-copy {
    display: block;
    color: var(--color-muted);
    font-size: .92rem;
    line-height: 1.5;
}

.calculator__input-panel {
    display: none;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(15, 76, 117, .12);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.calculator__input-panel.is-active {
    display: block;
}

.calculator__range-control {
    margin: -2px 0 16px;
}

.calculator__range-input {
    width: 100%;
    height: 10px;
    appearance: none;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(15, 76, 117, .18) 0%, rgba(247, 162, 27, .45) 100%);
    outline: none;
}

.calculator__range-input::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 3px solid var(--color-white);
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 8px 20px rgba(15, 76, 117, .25);
    cursor: pointer;
}

.calculator__range-input::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border: 3px solid var(--color-white);
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 8px 20px rgba(15, 76, 117, .25);
    cursor: pointer;
}

.calculator__range-input::-moz-range-track {
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(15, 76, 117, .18) 0%, rgba(247, 162, 27, .45) 100%);
}

.calculator__range-input:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.calculator__range-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    color: var(--color-muted);
    font-size: .82rem;
}

.calculator__range-meta strong {
    color: var(--color-primary);
    font-size: .95rem;
    font-weight: 800;
}

.calculator__field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.calculator__hint {
    color: var(--color-muted);
    font-size: .9rem;
    line-height: 1.5;
}

.calculator__results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px;
}

.calculator__result-card {
    background: var(--color-white);
    border: 1px solid rgba(15, 76, 117, .08);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(15, 76, 117, .08);
}

.calculator__result-card--hero {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #133a57 0%, #0f4c75 100%);
    border: none;
    color: var(--color-white);
    box-shadow: 0 20px 40px rgba(8, 24, 37, .22);
}

.calculator__savings-stack {
    display: grid;
    gap: 18px;
}

.calculator__savings-item {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.calculator__savings-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.calculator__savings-caption {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .76);
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.calculator__result-card--accent {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(247, 162, 27, .16) 0%, rgba(247, 162, 27, .08) 100%);
}

.calculator__result-card--hero .calculator__result-label,
.calculator__result-card--hero .calculator__result-note {
    color: rgba(255, 255, 255, .8);
}

.calculator__result-label {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    color: var(--color-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.calculator__result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-dark);
}

.calculator__result-value--hero {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    line-height: 1.1;
    color: var(--color-white);
}

.calculator__result-value--highlight {
    color: var(--color-success);
}

.calculator__result-value--zero {
    color: var(--color-accent);
    font-size: 2rem;
}

.calculator__result-note {
    margin-top: 10px;
    color: var(--color-muted);
    font-size: .92rem;
    line-height: 1.5;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer-benefits {
    padding: 18px 0 12px;
    background:
        linear-gradient(180deg, rgba(19, 35, 53, .98) 0%, rgba(14, 25, 38, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-benefits__bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 18px 28px;
}

.footer-benefits__title {
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-benefits .type-content {
    width: 100%;
}

.footer-benefits__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 12px;
}

.footer-benefits__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .74);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.footer-benefits__icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(247, 162, 27, .14);
    color: #ffd07a;
    font-size: .95rem;
    flex-shrink: 0;
}

.footer-benefits__text {
    font-size: .88rem;
    line-height: 1.35;
}

.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, .46);
    text-align: center;
    padding: 12px 0 24px;
    font-size: .78rem;
    letter-spacing: .04em;
}

.site-footer p {
    margin: 0;
}

/* ===================================================================
   SPLASH (Root / Country selector)
   =================================================================== */
.splash {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    overflow: hidden;
}

.splash__overlay {
    position: absolute;
    inset: 0;
    background: url('images/image3.jpg') center/cover no-repeat;
    opacity: .2;
}

.splash__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 24px;
}

.splash__brand {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .82);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.splash__title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 12px;
}

.splash__subtitle {
    color: rgba(255, 255, 255, .7);
    font-size: 1.2rem;
    margin-bottom: 56px;
}

.splash__countries {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.splash__country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius);
    padding: 36px 48px;
    color: var(--color-white);
    font-weight: 600;
    transition: var(--transition);
}

.splash__flag-wrap {
    display: inline-flex;
    align-items: center;
}

.splash__country-card:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.splash__flag {
    font-size: 3rem;
    line-height: 1;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif;
}

.splash__flag img.emoji {
    height: 3rem;
    width: auto;
    vertical-align: middle;
}

.splash__country-name {
    font-size: 1.1rem;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 768px) {
    .site-header__inner {
        height: auto;
        min-height: 64px;
        padding: 10px 0;
    }

    .site-header__nav {
        display: none;
    }

    .site-header__brand {
        gap: 10px;
    }

    .site-header__company {
        font-size: .68rem;
    }

    .site-header__title {
        font-size: .95rem;
    }

    .country-menu__trigger {
        padding: 8px 12px;
    }

    .country-menu__label {
        display: none;
    }

    .hero__content {
        gap: 18px;
        padding: 118px 24px 84px;
    }

    .hero__headline {
        font-size: 2.45rem;
    }

    .hero__rate-copy {
        padding: 20px 24px;
    }

    .hero__rate-price {
        font-size: 2.8rem;
    }

    .hero__rate-unit {
        font-size: 1.02rem;
    }

    .hero__toggle-btn {
        min-height: 56px;
        padding: 14px 24px;
        font-size: 1.02rem;
    }

    .hero__cta-group {
        flex-wrap: wrap;
    }

    .how-it-works .type-content.active {
        grid-template-columns: 1fr;
    }

    .who-behind__grid {
        grid-template-columns: 1fr;
    }

    .trend__stats {
        grid-template-columns: 1fr;
    }

    .trend__card {
        padding: 24px;
        border-radius: 24px;
    }

    .trend__chart-top {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .trend__chart-summary {
        min-width: 0;
        text-align: left;
    }

    .trend__chart-shell {
        height: 340px;
    }

    .calculator {
        padding: 72px 0;
    }

    .calculator__shell {
        padding: 24px;
        border-radius: 24px;
    }

    .calculator__grid {
        grid-template-columns: 1fr;
    }

    .calculator__mode-toggle {
        grid-template-columns: 1fr;
    }

    .calculator__field-group {
        grid-template-columns: 1fr;
    }

    .calculator__results {
        grid-template-columns: 1fr;
    }

    .splash__title {
        font-size: 2.4rem;
    }

    .splash__countries {
        flex-direction: column;
        align-items: center;
    }

    .splash__country-card {
        width: 100%;
        max-width: 280px;
    }

    .splash__flag {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .value-prop__headline {
        font-size: 1.6rem;
    }

    .value-prop__bullet-item {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 16px;
        padding: 16px 18px;
        border-radius: 18px;
    }

    .value-prop__bullet-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.4rem;
    }

    .value-prop__bullet-item::before {
        left: 39px;
    }

    .cta__headline {
        font-size: 2rem;
    }

    .footer-benefits {
        padding: 20px 0 14px;
    }

    .footer-benefits__bar {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-benefits__title {
        text-align: center;
    }

    .footer-benefits__list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .site-header__logo {
        gap: 10px;
    }

    .site-header__text {
        min-width: 0;
    }

    .site-header__title {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .country-menu__panel {
        right: -4px;
        min-width: 200px;
    }

    .footer-benefits__item {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-benefits__text {
        font-size: .84rem;
    }

    .hero__content {
        padding: 108px 16px 72px;
    }

    .value-prop__bullets {
        gap: 14px;
    }

    .value-prop__bullet-item {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 14px;
        padding: 15px 16px;
    }

    .value-prop__bullet-icon {
        width: 44px;
        height: 44px;
        border-radius: 13px;
        font-size: 1.25rem;
    }

    .value-prop__bullet-item::before {
        left: 35px;
    }

    .value-prop__bullet-copy {
        font-size: 1.18rem;
    }

    .hero__headline {
        font-size: 1.95rem;
    }

    .hero__toggle {
        width: 100%;
    }

    .hero__toggle-btn {
        flex: 1 1 50%;
        min-height: 54px;
        padding: 12px 14px;
        font-size: 1rem;
    }

    .hero__rate-copy {
        width: 100%;
        min-width: 0;
        padding: 18px 16px;
    }

    .hero__rate-label {
        font-size: .72rem;
        letter-spacing: .18em;
    }

    .hero__rate-price {
        font-size: 2.15rem;
    }

    .hero__rate-unit {
        font-size: .98rem;
        padding-bottom: .15rem;
    }

    .hero__cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn--hero {
        width: 100%;
        min-width: 0;
    }

    .btn--lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .calculator__inputs,
    .calculator__results {
        padding: 20px;
    }

    .calculator__result-card {
        padding: 22px 20px;
    }

    .trend__stat {
        padding: 18px;
    }

    .trend__chart-shell {
        height: 300px;
    }

    .calculator__price-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .calculator__price-input {
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
    }

    .calculator__price-input-wrap {
        width: 100%;
        align-items: flex-start;
    }

    .calculator__price-input input {
        width: 100%;
        text-align: left;
    }

    .calculator__price-input-note {
        text-align: left;
    }

    .hero__split {
        min-width: 0;
        width: 100%;
        padding: 20px 20px;
        gap: 0;
    }

    .hero__split-divider {
        margin: 0 16px;
        height: 44px;
    }

    .hero__split-value {
        font-size: 1.35rem;
    }

    .upload-bill__card {
        padding: 24px 18px;
    }

    .upload-bill__dropzone {
        min-height: 140px;
        padding: 24px 16px;
    }
}
