/* ===================================
   ECO SOLUZIONE - PREMIUM STYLE
   Design: Trust, Professionalism, Premium
   Palette: Deep Navy + Brand Green/Orange
   =================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Brand Colors - Updated to User Request */
    --brand-green: #74ab46;
    --brand-green-light: #9cd66b;
    --brand-green-dark: #5a8536;
    --brand-orange: #fca22f;
    --brand-orange-light: #fdcb75;
    --brand-orange-dark: #d9851a;

    /* Neutrals - Replacing Navy with Clean Greys & White */
    --navy-900: #1a1a1a;
    /* Dark Text */
    --navy-800: #f4f8f0;
    /* Light Green Tint Background */
    --navy-700: #ffffff;
    /* White Cards */
    --navy-600: #4a4a4a;
    /* Secondary Text */
    --navy-500: #7a7a7a;
    /* Muted Text */

    /* Light Neutrals for Text Contrast */
    --cream-100: #ffffff;
    --cream-200: #f9fbf7;
    /* Very subtle green tint */
    --cream-300: #e8efe0;
    /* Borers */
    --slate-400: #8899a6;
    --slate-500: #64748b;

    /* Semantic Colors */
    --success: #74ab46;
    --success-dark: #5e8a38;
    --error: #e74c3c;
    --warning: #fca22f;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: var(--cream-200);
    --bg-dark: #74ab46;
    /* Used for heavy accents, now Green */
    --bg-dark-alt: #fca22f;
    /* Used for heavy accents, now Yellow */

    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-dark-secondary: #4a4a4a;
    --text-light: #ffffff;
    --text-light-secondary: rgba(255, 255, 255, 0.9);
    --text-muted: #7a7a7a;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --section-padding-sm: 80px 0;
    --container-width: 1200px;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 12px 32px rgba(116, 171, 70, 0.15);
    /* Green Shadow */
    --shadow-xl: 0 24px 48px rgba(116, 171, 70, 0.2);
    /* Green Shadow */
    --shadow-glow-green: 0 0 40px rgba(116, 171, 70, 0.3);
    --shadow-glow-orange: 0 0 40px rgba(252, 162, 47, 0.2);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--text-dark-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
}

.text-accent {
    color: var(--brand-green);
}

.text-orange {
    color: var(--brand-orange);
}

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

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

section {
    padding: var(--section-padding);
    position: relative;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 18px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    color: #FFFFFF;
    box-shadow: var(--shadow-md), var(--shadow-glow-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(116, 171, 70, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--cream-300);
}

.btn-secondary:hover {
    background: var(--cream-200);
    border-color: var(--brand-green);
    color: var(--brand-green);
}

.btn-small {
    padding: 12px 28px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 22px 48px;
    font-size: 1.15rem;
}

.btn-block {
    width: 100%;
}

/* ===== HEADER / NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(227, 232, 239, 0.8);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 44px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark-secondary);
    transition: color var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-orange));
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(116, 171, 70, 0.1), rgba(116, 171, 70, 0.05));
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brand-green-dark);
    border: 1px solid rgba(116, 171, 70, 0.2);
}

.nav-badge svg {
    color: var(--success-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--cream-200) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(116, 171, 70, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(252, 162, 47, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

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

.hero-tagline {
    font-size: clamp(3.25rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.75rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-tagline .accent {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-dark-secondary);
    margin-bottom: 2.5rem;
    max-width: 560px;
    line-height: 1.7;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000000;
}

.hero-benefits li svg {
    color: var(--success-dark);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

/* Hero Partners */
.hero-partners {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-300);
    margin-top: 2rem;
}

.hero-partners .partner-logo {
    height: 32px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(30%);
    transition: all var(--transition-normal);
}

.hero-partners .partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===== CALCULATOR CARD ===== */
.calculator-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: var(--text-dark);
    max-width: 460px;
    margin-left: auto;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--cream-300);
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-orange));
}

.calculator-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(116, 171, 70, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.calculator-card>* {
    position: relative;
    z-index: 1;
}

.calculator-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.calculator-icon {
    width: 48px;
    height: 48px;
    background: rgba(116, 171, 70, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
}

.calculator-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.calculator-input-group {
    margin-bottom: 2rem;
}

.input-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark-secondary);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.bill-amount-display {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-green);
    margin-bottom: 1.25rem;
}

.calculator-slider {
    width: 100%;
    height: 8px;
    background: var(--cream-300);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.calculator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    background: #ffffff;
    border: 6px solid var(--brand-green);
    border-radius: 50%;
    cursor: pointer;
    transition: transform var(--transition-fast);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.calculator-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--slate-500);
}

.calculator-results {
    background: var(--cream-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.75rem;
    border: 1px solid var(--cream-300);
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--slate-400);
}

.result-row.highlight {
    color: var(--text-dark);
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--cream-300);
    margin-bottom: 1rem;
}

.value.negative {
    color: var(--error);
    font-weight: 600;
}

.value.positive {
    color: var(--success);
    font-weight: 600;
}

.savings-total {
    text-align: center;
    padding-top: 0.5rem;
}

.savings-label {
    display: block;
    font-size: 0.85rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.savings-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-green-light), var(--success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.savings-period {
    font-size: 0.9rem;
    color: var(--slate-400);
    margin-top: 0.25rem;
}

.calculator-card .btn-primary {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
    box-shadow: 0 4px 20px rgba(252, 162, 47, 0.4);
}

.calculator-card .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(252, 162, 47, 0.5);
}

.calculator-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--slate-500);
    margin-top: 1rem;
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    padding: 3.5rem 0;
    position: relative;
    border-bottom: none;
    overflow: hidden;
}

.social-proof::before {
    display: none;
}

.social-proof .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.proof-item {
    text-align: center;
    padding: 1.25rem;
}

.proof-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.proof-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    margin-bottom: 1.25rem;
}

.section-header p {
    font-size: 1.2rem;
}

/* ===== PROBLEM SECTION ===== */
.problem {
    background: var(--bg-primary);
}

.problem-content {
    max-width: 850px;
    margin: 0 auto;
}

.problem-intro {
    font-size: 1.25rem;
    color: var(--text-dark-secondary);
    margin-bottom: 3.5rem;
    text-align: center;
}

.problem-list {
    display: grid;
    gap: 1.5rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--cream-100);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--error);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.problem-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.problem-item svg {
    color: var(--error);
    flex-shrink: 0;
    margin-top: 2px;
    width: 24px;
    height: 24px;
}

.problem-item p {
    font-size: 1.05rem;
    color: var(--text-dark-secondary);
}

.problem-conclusion {
    text-align: center;
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.08), rgba(248, 113, 113, 0.03));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.problem-conclusion p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--error);
}

/* ===== SOLUTION SECTION ===== */
.solution {
    background: var(--cream-200);
}

.solution-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 5rem;
}

.solution-intro h3 {
    font-size: 1.5rem;
    color: var(--brand-green);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.solution-intro h2 {
    margin-bottom: 1.75rem;
}

.solution-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.pillar-card {
    background: var(--bg-primary);
    padding: 2.75rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--cream-300);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-orange));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-green);
    box-shadow: var(--shadow-lg);
}

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

.pillar-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(116, 171, 70, 0.15), rgba(116, 171, 70, 0.05));
    border-radius: var(--radius-lg);
    margin-bottom: 1.75rem;
}

.pillar-icon svg {
    color: var(--brand-green);
    width: 30px;
    height: 30px;
}

.pillar-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pillar-card p {
    font-size: 1.05rem;
    line-height: 1.75;
}

.solution-cta {
    text-align: center;
}

/* ===== PROCESS SECTION ===== */
.process {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    position: relative;
    overflow: hidden;
}

.process::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.process .section-header h2 {
    color: #ffffff;
}

.process .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.process .text-accent {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: var(--brand-orange);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 4px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-green);
    margin: 0 auto 1.75rem;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.process-step:hover .step-number {
    background: var(--brand-orange);
    color: #ffffff;
    border-color: var(--brand-orange);
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.process-step h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #ffffff;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* ===== ABOUT SECTION ===== */
.about-new {
    background: var(--bg-primary);
    color: var(--text-dark);
}

.about-new .section-header h2,
.about-new .section-header p {
    color: var(--text-dark);
}

.about-new .section-header p {
    color: var(--text-dark-secondary);
}

.about-new .text-accent {
    color: var(--brand-green);
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: var(--bg-primary);
    border: 1px solid var(--cream-300);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.about-card::before {
    background: linear-gradient(90deg, var(--brand-green-light), var(--brand-orange));
}

.about-card.featured {
    border-color: var(--brand-green);
    box-shadow: var(--shadow-md);
    background: var(--cream-200);
}

.about-card.featured::before {
    transform: scaleX(1);
}

.about-card h3,
.about-card p {
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-dark-secondary);
}

.about-card .pillar-icon {
    background: rgba(116, 171, 70, 0.1);
}

.about-card .pillar-icon svg {
    color: var(--brand-green);
}

.about-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    text-align: right;
}

.badge-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand-green);
    background: none;
    -webkit-text-fill-color: initial;
    line-height: 1;
}

.badge-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.partner-logos-mini {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mini-logo {
    height: 24px;
    opacity: 0.7;
}

/* About Narrative */
.about-narrative {
    background: var(--cream-200);
    border-radius: var(--radius-xl);
    padding: 3rem;
    border: 1px solid var(--cream-300);
}

.narrative-content {
    max-width: 800px;
    margin: 0 auto;
}

.narrative-highlight {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.narrative-highlight strong {
    color: var(--brand-green);
    font-weight: 700;
}

.narrative-highlight svg {
    color: var(--success);
    vertical-align: middle;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.narrative-quote {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-dark-secondary);
    border-left: 4px solid var(--brand-green);
    padding-left: 1.5rem;
    margin: 0 0 2rem;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quote-author-photo {
    width: 56px;
    height: 56px;
    min-width: 56px;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--brand-green);
    flex-shrink: 0;
    /* Prevent squashing on mobile */
}

.quote-author-name {
    font-weight: 700;
    color: var(--text-dark);
    display: block;
}

.quote-author-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== WHY US SECTION ===== */
.why-us {
    background: var(--cream-200);
}

.comparison-table {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.5rem 2rem;
    background: var(--brand-green);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-header span:nth-child(2),
.comparison-header span:nth-child(3) {
    text-align: center;
}

.comparison-row-table {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--cream-300);
    transition: background var(--transition-fast);
}

.comparison-row-table:hover {
    background: var(--cream-100);
}

.comparison-row-table:last-child {
    border-bottom: none;
}

.comparison-row-table span {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: var(--text-dark-secondary);
}

.comparison-row-table span:nth-child(2),
.comparison-row-table span:nth-child(3) {
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 700;
}

.icon-x {
    color: var(--error) !important;
}

.icon-check {
    color: var(--success-dark) !important;
}

/* ===== INCLUDED SECTION ===== */
.included {
    background: var(--bg-primary);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.included-item {
    padding: 2.5rem;
    background: var(--cream-100);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.included-item:hover {
    background: var(--bg-primary);
    border-color: var(--brand-green);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.included-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.included-icon svg {
    width: 26px;
    height: 26px;
}

.included-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.included-item p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--bg-primary);
    overflow: hidden;
    padding: 5rem 0;
    border-top: 1px solid var(--cream-300);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--text-dark);
}

.testimonials .section-header p {
    color: var(--text-dark-secondary);
}

.testimonials .text-accent {
    color: var(--brand-green);
}

.reviews-slider-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-slider-wrapper::before,
.reviews-slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.reviews-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.reviews-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollReviews 120s linear infinite;
    padding: 1.5rem 0;
}

@media (hover: hover) {
    .reviews-track:hover {
        animation-play-state: paused;
    }
}

.review-card {
    background: #FFFFFF;
    color: var(--text-dark);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    width: 420px;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.google-logo {
    height: 22px;
    width: auto;
}

.review-stars {
    color: var(--warning);
    display: flex;
    gap: 3px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark-secondary);
    flex-grow: 1;
    font-style: italic;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-300);
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.review-author h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.review-author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.review-savings {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--brand-green-dark);
    font-weight: 600;
    background: rgba(116, 171, 70, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== GUARANTEES SECTION ===== */
.guarantees {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    position: relative;
    overflow: hidden;
}

.guarantees::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.guarantees .section-header h2 {
    color: #ffffff;
}

.guarantees .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.guarantees .text-accent {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: var(--brand-orange);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.guarantee-item {
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.guarantee-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(116, 171, 70, 0.15), rgba(116, 171, 70, 0.05));
    border-radius: 50%;
    margin: 0 auto 1rem;
    color: var(--brand-green);
}

.guarantee-years {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.guarantee-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.guarantee-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ===== FAQ SECTION ===== */
.faq {
    background: var(--bg-primary);
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--cream-300);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--brand-green);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    background: var(--cream-100);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--cream-200);
}

.faq-question svg {
    color: var(--brand-green);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

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

.faq-answer-content {
    padding: 1.5rem 2rem 2rem;
}

.faq-answer-content p {
    font-size: 1.05rem;
    color: var(--text-dark-secondary);
    line-height: 1.8;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, var(--brand-orange));
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.final-cta .text-accent {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: var(--brand-orange);
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.final-cta .btn-primary {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
    box-shadow: var(--shadow-glow-orange);
}

.final-cta .btn-primary:hover {
    box-shadow: 0 0 60px rgba(252, 162, 47, 0.5);
}

.final-cta-reassurance {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.final-cta-reassurance span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.final-cta-reassurance svg {
    color: #ffffff;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-900);
    padding: 5rem 0 2rem;
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--slate-400);
    font-size: 1rem;
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-800);
    border-radius: 50%;
    color: var(--slate-400);
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--brand-green);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--slate-400);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid var(--navy-700);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-bottom p {
    color: var(--slate-500);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--slate-500);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .calculator-card {
        max-width: 100%;
        margin: 0;
    }

    .solution-pillars,
    .about-pillars,
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-steps::before {
        display: none;
    }

    .guarantees-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .footer-brand {
        grid-column: span 2;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-brand p {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-menu,
    .nav-badge {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid var(--cream-300);
        animation: slideDown 0.3s ease-out forwards;
        z-index: 1000;
        gap: 0;
    }

    .nav-menu.active li {
        width: 100%;
        opacity: 0;
        animation: fadeIn 0.3s ease-out forwards;
    }

    .nav-menu.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        animation-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(4) {
        animation-delay: 0.25s;
    }

    .nav-menu.active li:nth-child(5) {
        animation-delay: 0.3s;
    }

    .nav-menu.active .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--cream-200);
        width: 100%;
        text-align: center;
    }

    .nav-menu.active .nav-link:hover {
        color: var(--brand-green);
        padding-left: 10px;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

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

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateX(-10px);
        }

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

    .mobile-menu-btn {
        display: flex;
    }

    .nav-actions .btn-small {
        white-space: nowrap;
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .hero-tagline {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .hero .container {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-benefits {
        align-items: flex-start;
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3rem;
    }

    .hero-benefits li {
        text-align: left;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-partners {
        justify-content: center;
    }

    .solution-pillars,
    .about-pillars,
    .included-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-header,
    .comparison-row-table {
        padding: 1rem 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .final-cta-reassurance {
        flex-direction: column;
        gap: 1rem;
    }

    .review-card {
        width: 320px;
    }

    .reviews-slider-wrapper::before,
    .reviews-slider-wrapper::after {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .btn-large {
        padding: 18px 32px;
        font-size: 1rem;
    }

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

    .calculator-card {
        padding: 2rem;
    }

    .bill-amount-display {
        font-size: 2.5rem;
    }

    .savings-amount {
        font-size: 2rem;
    }

    .social-proof .container {
        gap: 1rem;
    }

    .proof-number {
        font-size: 2rem;
    }

    .proof-item {
        padding: 0.75rem;
    }

    .proof-label {
        font-size: 0.85rem;
    }
}