/* ═══════════════════════════════════════════════
   DESIGN TOKENS — from brandbook
   ═══════════════════════════════════════════════ */
:root {
    --color-primary: #049573;
    --color-primary-dark: #037a5e;
    --color-primary-glow: rgba(4, 149, 115, 0.15);
    --color-bg-body: #161616;
    --color-bg-card: #121212;
    --color-bg-border: #242424;
    --color-border-light: #343434;
    --color-text-primary: #ededed;
    --color-text-muted: #c2c2c2;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-error: #f13c3c;
    --color-success: #398f14;

    --font-heading: 'Chakra Petch', sans-serif;
    --font-body: 'Mulish', sans-serif;

    --text-h1: 66px;
    --text-h2: 42px;
    --text-h3: 36px;
    --text-h4: 29px;
    --text-h5: 23px;
    --text-h6: 18px;
    --text-body: 18px;
    --text-small: 16px;
    --text-xs: 14px;

    --lh-body: 1.444;
    --lh-h1: 1.55;
    --lh-h2: 1.2;

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    --space-xs: 8px;
    --space-sm: 15px;
    --space-md: 20px;
    --space-lg: 40px;
    --space-xl: 56px;
    --space-2xl: 70px;

    --clip-btn-lg: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    --clip-btn-sm: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    --clip-btn-xs: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);

    --ease-default: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
    --ease-smooth: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
    --ease-slow: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);

    --shadow-toast: 0 8px 32px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(4, 149, 115, 0.15);
}

/* ═══════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background: var(--color-bg-body);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: var(--text-body);
    line-height: var(--lh-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

a,
button,
input,
textarea,
select,
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
    outline: none !important;
}

/* ═══════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(22, 22, 22, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-bg-border);
    transition: var(--ease-slow);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text-primary);
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--color-primary);
}

.logo:hover {
    color: var(--color-text-primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    margin-bottom: 0px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--ease-default);
    border: 1px solid transparent;
}

.nav-links a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    clip-path: var(--clip-btn-xs);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-phone {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 0.5px;
}

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

.auth-actions {
    display: flex;
    align-items: center;
}

.btn-auth {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--color-border-light);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--ease-default);
    background: transparent;
    text-decoration: none !important;
}

.btn-auth i {
    font-size: 14px;
    color: var(--color-primary);
}

.btn-auth.logged-in {
    border-color: var(--color-primary);
    background: rgba(4, 149, 115, 0.1);
}

.btn-auth:hover {
    border-color: var(--color-primary) !important;
    background: var(--color-primary) !important;
    color: #fff !important;
    text-decoration: none !important;
}

.btn-auth:hover i {
    color: #fff !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    margin: 5px 0;
    transition: var(--ease-default);
}

/* ═══════════════════════════════════════════════
   SHARED COMPONENTS
   ═══════════════════════════════════════════════ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    line-height: var(--lh-h2);
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: var(--text-body);
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.6;
}

/* Buttons */
.btn {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--ease-default);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    padding: 15px 35px 15px;
    border: 2px solid var(--color-primary);
    clip-path: var(--clip-btn-lg);
}

.btn-primary:hover {
    background: transparent;
    border: 2px solid var(--color-primary);
}

.btn-outline {
    background: transparent;
    padding: 15px 25px;
    clip-path: var(--clip-btn-lg);
}

.btn-outline::before {
    position: absolute;
    background: var(--color-primary);
    content: '';
    inset: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
    z-index: -1;
}

.btn-outline::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
}

.btn-outline:hover::before {
    transform: scaleX(1);
}

.btn-small {
    font-size: 14px;
    padding: 12px 24px;
    clip-path: var(--clip-btn-sm);
}

/* Cards */
.card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-bg-border);
    padding: 32px;
    position: relative;
    transition: var(--ease-default);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 3px solid var(--color-primary);
    transform: scaleX(0);
    transition: var(--ease-default);
}

.card:hover::before {
    transform: scaleX(1);
}

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

/* Divider */
.divider {
    height: 1px;
    background: var(--color-bg-border);
}

/* ═══════════════════════════════════════════════
   01. HERO
   ═══════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(4, 149, 115, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-ghost {
    position: absolute;
    top: -30px;
    left: -4px;
    font-family: var(--font-heading);
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-bg-border);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInGhost 0.8s 0.3s forwards;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s 0.2s forwards;
}

.hero h1 em {
    font-style: normal;
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 520px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s 0.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s 0.5s forwards;
}

.hero-trust {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--color-text-muted);
    opacity: 0;
    animation: fadeInUp 0.6s 0.65s forwards;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    clip-path: var(--clip-btn-xs);
    flex-shrink: 0;
}

/* Hero card — savings preview */
.hero-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-bg-border);
    padding: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.7s 0.5s forwards;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
}

.hero-card-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.hero-card-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-bg-border);
}

.hero-card-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.hero-card-row .label {
    font-size: 14px;
    color: var(--color-text-muted);
    max-width: 150px;
}

.hero-card-row .value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.hero-card-row .value.highlight {
    color: var(--color-primary);
    font-size: 24px;
}

.hero-card-footer {
    margin-top: 24px;
    padding-top: 20px;
    text-align: center;
}

.hero-card-footer p {
    font-size: 13px;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ═══════════════════════════════════════════════
   02. BENEFITS
   ═══════════════════════════════════════════════ */
.benefits {
    background: var(--color-bg-body);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.benefit-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-bg-border);
    padding: 36px 28px;
    transition: var(--ease-default);
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 3px solid var(--color-primary);
    transform: scaleX(0);
    transition: var(--ease-default);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    clip-path: var(--clip-btn-sm);
    background: rgba(4, 149, 115, 0.1);
    border: 1px solid rgba(4, 149, 115, 0.2);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   03. CALCULATOR
   ═══════════════════════════════════════════════ */
.calculator {
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-bg-border);
    border-bottom: 1px solid var(--color-bg-border);
}

.calc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 48px;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.calc-field label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--color-text-primary);
}

.calc-field input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: var(--color-bg-border);
    outline: none;
    border-radius: 0;
}

.calc-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    clip-path: var(--clip-btn-xs);
    cursor: pointer;
}

.calc-field input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    clip-path: var(--clip-btn-xs);
    cursor: pointer;
    border: none;
}

.calc-field-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 8px;
}

.calc-result {
    background: var(--color-bg-body);
    border: 1px solid var(--color-bg-border);
    padding: 40px;
    position: relative;
}

.calc-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
}

.calc-result-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 32px;
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-bg-border);
}

.calc-result-row:last-of-type {
    border-bottom: none;
}

.calc-result-row .r-label {
    font-size: 15px;
    color: var(--color-text-muted);
}

.calc-result-row .r-value {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

.calc-result-row .r-value.big {
    font-size: 28px;
    color: var(--color-primary);
}

.calc-result-cta {
    margin-top: 28px;
    text-align: center;
}

.calc-note {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 16px;
    text-align: center;
    font-style: italic;
}

/* ═══════════════════════════════════════════════
   04. HOW IT WORKS
   ═══════════════════════════════════════════════ */
.how-it-works {
    background: var(--color-bg-body);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 48px;
    position: relative;
}

.step {
    padding: 40px 32px;
    border: 1px solid var(--color-bg-border);
    margin-left: -1px;
    position: relative;
}

.step:first-child {
    margin-left: 0;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-bg-border);
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--ease-default);
}

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

.step h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.step p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   05. FOR WHOM
   ═══════════════════════════════════════════════ */
.for-whom {
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-bg-border);
    border-bottom: 1px solid var(--color-bg-border);
}

.whom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.whom-card {
    padding: 32px;
    border: 1px solid var(--color-bg-border);
    background: var(--color-bg-body);
    transition: var(--ease-default);
    text-align: center;
}

.whom-card:hover {
    border-color: var(--color-primary);
}

.whom-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.whom-card h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.whom-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   06. SAVINGS EXAMPLES
   ═══════════════════════════════════════════════ */
.savings {
    background: var(--color-bg-body);
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.savings-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-bg-border);
    overflow: hidden;
    transition: var(--ease-default);
}

.savings-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.savings-card-header {
    background: rgba(4, 149, 115, 0.06);
    border-bottom: 1px solid var(--color-bg-border);
    padding: 24px 28px;
}

.savings-card-header h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings-card-header p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.savings-card-body {
    padding: 28px;
}

.savings-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
}

.savings-row .s-label {
    font-size: 14px;
    color: var(--color-text-muted);
}

.savings-row .s-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
}

.savings-row .s-value.green {
    color: var(--color-primary);
}

.savings-card-footer {
    border-top: 1px solid var(--color-bg-border);
    padding: 20px 28px;
    text-align: center;
}

.savings-card-footer .economy-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.savings-card-footer .economy-label {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════
   07. PRICING TIERS
   ═══════════════════════════════════════════════ */
.pricing {
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-bg-border);
    border-bottom: 1px solid var(--color-bg-border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.pricing-card {
    background: var(--color-bg-body);
    border: 1px solid var(--color-bg-border);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--ease-default);
}

.pricing-card:hover {
    border-color: var(--color-primary);
}

.pricing-card.featured {
    border-color: var(--color-primary);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px 5px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px));
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-muted);
}

.pricing-target {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--color-bg-border);
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 15px;
    color: var(--color-text-muted);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    clip-path: var(--clip-btn-xs);
}

.pricing-card .btn {
    width: 100%;
}

/* ═══════════════════════════════════════════════
   08. TRUST
   ═══════════════════════════════════════════════ */
.trust {
    background: var(--color-bg-body);
}

.trust-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.trust-stat {
    padding: 28px;
    border: 1px solid var(--color-bg-border);
    text-align: center;
    transition: var(--ease-default);
}

.trust-stat:hover {
    border-color: var(--color-primary);
}

.trust-stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.trust-stat-label {
    font-size: 14px;
    color: var(--color-text-muted);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-point-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 149, 115, 0.1);
    border: 1px solid rgba(4, 149, 115, 0.2);
    clip-path: var(--clip-btn-xs);
}

.trust-point-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 2;
}

.trust-point h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.trust-point p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   09. FAQ
   ═══════════════════════════════════════════════ */
.faq {
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-bg-border);
    border-bottom: 1px solid var(--color-bg-border);
}

.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-bg-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: left;
    transition: var(--ease-default);
}

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

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border-light);
    clip-path: var(--clip-btn-xs);
    transition: var(--ease-default);
    font-size: 16px;
    color: var(--color-text-muted);
}

.faq-item.active .faq-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
    padding-bottom: 24px;
    max-width: 700px;
}

/* ═══════════════════════════════════════════════
   10. FINAL CTA
   ═══════════════════════════════════════════════ */
.final-cta {
    background: var(--color-bg-body);
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(4, 149, 115, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta .section-title {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .section-subtitle {
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: center;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
    border-top: 1px solid var(--color-bg-border);
    padding: 48px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
}

.footer-brand span {
    color: var(--color-primary);
}

.footer-info {
    font-size: 14px;
    color: var(--color-text-muted);
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-info a {
    transition: var(--ease-default);
}

.footer-info a:hover {
    color: var(--color-primary);
}

.footer-copy {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════
   TEXT PAGES
   ═══════════════════════════════════════════════ */
.text-page-section {
    padding-top: 150px;
    padding-bottom: 80px;
}

.text-page-title {
    text-align: left;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.text-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-primary, #4A4A4A);
}

.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.text-content h1:first-child,
.text-content h2:first-child,
.text-content h3:first-child {
    margin-top: 0;
}

.text-content h2 {
    font-size: 2rem;
}

.text-content h3 {
    font-size: 1.5rem;
}

.text-content h4 {
    font-size: 1.25rem;
}

.text-content p {
    margin-bottom: 20px;
}

.text-content ul,
.text-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.text-content li {
    margin-bottom: 10px;
}

.text-content a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: var(--ease-default);
}

.text-content a:hover {
    color: var(--color-text-primary);
    text-decoration: none;
}

.text-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 20px;
    font-style: italic;
    color: var(--color-text-muted);
    margin: 32px 0;
    background: rgba(4, 149, 115, 0.05);
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.text-content strong,
.text-content b {
    font-weight: 700;
    color: var(--color-text-primary);
}

/* ═══════════════════════════════════════════════
   PAGE TEMPLATES
   ═══════════════════════════════════════════════ */
.page-section {
    padding-top: 150px;
    padding-bottom: 80px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: 40px;
    text-align: left;
}

/* ═══════════════════════════════════════════════
   DASHBOARD CUSTOM STYLES
   ═══════════════════════════════════════════════ */
.dashboard-welcome {
    background: var(--color-bg-card);
    border: 1px solid var(--color-bg-border);
}

.user-avatar {
    font-size: 3rem;
    color: var(--color-primary);
}

.dashboard-greeting {
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.dashboard-logout-text {
    font-size: 14px;
}

.dashboard-logout-link {
    color: var(--color-primary);
    text-decoration: underline;
}

.dashboard-divider {
    border-top-color: var(--color-bg-border);
    margin: 20px 0;
}

.dashboard-desc {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.dashboard-desc a {
    color: var(--color-primary);
}

.action-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-bg-border);
    transition: var(--ease-default);
    text-decoration: none !important;
}

.action-icon {
    font-size: 2rem;
    color: var(--color-primary);
}

.action-title {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
}

.woocommerce-privacy-policy-text {
    display: none !important;
}

/* ═══════════════════════════════════════════════
   WOOCOMMERCE ACCOUNT PAGES
   ═══════════════════════════════════════════════ */
.woocommerce-account.logged-in .woocommerce::before,
.woocommerce-account.logged-in .woocommerce::after {
    display: none;
}

.woocommerce-account.logged-in .woocommerce {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

@media (max-width: 768px) {
    .woocommerce-account.logged-in .woocommerce {
        flex-direction: column;
    }
}

.woocommerce-MyAccount-navigation {
    width: 250px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation {
        width: 100%;
    }
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid var(--color-bg-border);
    border-radius: 8px;
    background: var(--color-bg-card);
    overflow: hidden;
}

.woocommerce-MyAccount-navigation li {
    border-bottom: 1px solid var(--color-bg-border);
}

.woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
    transition: var(--ease-default);
}

.woocommerce-MyAccount-navigation li a:hover,
.woocommerce-MyAccount-navigation li.is-active a {
    background: rgba(4, 149, 115, 0.1);
    color: var(--color-primary);
    border-left: 3px solid var(--color-primary);
    padding-left: 17px;
}

.woocommerce-MyAccount-content {
    flex: 1;
    min-width: 0;
}

.action-card:hover {
    border-color: var(--color-primary) !important;
    transform: translateY(-5px);
}

.auth-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-bg-border);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.auth-form .form-control {
    background: var(--color-bg-body);
    border: 1px solid var(--color-border-light);
    color: var(--color-text-primary);
    padding: 12px 16px;
    border-radius: 4px;
}

.auth-form .form-control:focus {
    border-color: var(--color-primary);
    background: var(--color-bg-body);
    color: var(--color-white);
    box-shadow: 0 0 0 2px rgba(4, 149, 115, 0.2);
}

.auth-form label {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.lost_password_link {
    font-size: 13px;
    color: var(--color-text-muted);
}

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

.auth-section .container {
    padding: 0px 0px !important;
}

.woocommerce-MyAccount-content form {
    background: var(--color-bg-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--color-bg-border);
}

.woocommerce-MyAccount-content form legend {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-bg-border);
    padding-bottom: 10px;
    width: 100%;
}

.woocommerce-form-row {
    margin-bottom: 20px;
}

.woocommerce-form-row label {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.woocommerce-form-row input.input-text {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-bg-border);
    color: var(--color-white);
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.woocommerce-form-row input.input-text:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 1px var(--color-primary);
}

.woocommerce-MyAccount-content .button {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--ease-default);
}

.woocommerce-MyAccount-content .button:hover {
    background: var(--color-primary-dark);
}

.woocommerce-form-row span.password-input {
    display: block;
    position: relative;
    width: 100%;
}

.woocommerce-form-row span.password-input input {
    width: 100%;
}

.show-password-input {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
    border-top: none !important;
    background: rgba(4, 149, 115, 0.1) !important;
    border-left: 4px solid var(--color-primary) !important;
    padding: 20px !important;
    color: var(--color-text-primary) !important;
    border-radius: 4px !important;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.woocommerce-error {
    border-left-color: var(--color-error) !important;
    background: rgba(241, 60, 60, 0.1) !important;
}

.woocommerce-message {
    border-left-color: var(--color-success) !important;
    background: rgba(57, 143, 20, 0.1) !important;
}

.woocommerce-info .button,
.woocommerce-message .button,
.woocommerce-error .button {
    margin-left: 15px;
    display: none !important; /* Hides "Browse products" button */
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInGhost {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 500px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step {
        margin-left: 0;
    }

    .savings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-layout {
        grid-template-columns: 1fr;
    }

    .calc-layout {
        grid-template-columns: 1fr;
    }
}

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

    .header-inner {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .page-section,
    .text-page-section {
        padding-top: 120px !important;
    }

    .page-title,
    .text-page-title {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    .nav-links,
    .nav-phone {
        display: none;
    }

    .nav-links.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-bg-body, #fff);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 100;
        align-items: center;
        gap: 12px;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-ghost {
        display: none;
    }

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

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

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

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

    .trust-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 12px;
    }

    .savings-grid .savings-card:nth-child(3) {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .trust-stats {
        grid-template-columns: 1fr;
    }
}