@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN TOKENS --- */
:root {
    /* Color Palette */
    --color-navy: #173B6C;
    --color-navy-dark: #0b1e38;
    --color-navy-light: #24518c;
    --color-green: #4CAF50;
    --color-green-dark: #388E3C;
    --color-green-light: #E8F5E9;
    --color-orange: #F28C28;
    --color-orange-dark: #D67416;
    --color-orange-light: #FFF3E0;
    --color-charcoal: #222222;
    --color-charcoal-light: #555555;
    --color-white: #FFFFFF;
    --color-light-gray: #F7F8FA;
    --color-border: #E5E8EB;
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(23, 59, 108, 0.05);
    --shadow-lg: 0 20px 50px rgba(23, 59, 108, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(23, 59, 108, 0.06);
    --shadow-btn: 0 4px 14px rgba(242, 140, 40, 0.3);
    
    /* Border Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
}

/* --- BASE STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.75rem;
    letter-spacing: -0.01em;
}

p {
    color: var(--color-charcoal-light);
    font-size: 1.1rem;
    line-height: 1.75;
}

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

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

/* --- LAYOUT UTILITIES --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section {
    padding: 7.5rem 0;
    position: relative;
}

.section-bg-light {
    background-color: var(--color-light-gray);
}

.section-bg-dark {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark p {
    color: var(--color-white);
}

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

.max-w-700 {
    max-width: 700px;
    margin: 0 auto;
}

.margin-bottom-sm { margin-bottom: 1.5rem; }
.margin-bottom-md { margin-bottom: 3rem; }
.margin-bottom-lg { margin-bottom: 5rem; }

/* --- HERO GRID CONFIGS --- */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* --- BUTTONS --- */
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(23, 59, 108, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 59, 108, 0.25);
    background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-navy-dark) 100%);
}

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

.btn-secondary:hover {
    background-color: rgba(23, 59, 108, 0.05);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-btn);
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    padding: 1.2rem 2.8rem;
    text-transform: uppercase;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 140, 40, 0.5);
    filter: brightness(1.05);
}

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

/* --- NAVIGATION --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(23, 59, 108, 0.05);
    z-index: 1000;
    transition: var(--transition-fast);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    height: 70px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: -0.02em;
}

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

.logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-green);
    margin-left: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-charcoal-light);
}

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

.nav-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1100;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-navy);
    position: absolute;
    left: 0;
    transition: var(--transition-fast);
}

.mobile-toggle span:nth-child(1) { top: 2px; }
.mobile-toggle span:nth-child(2) { top: 11px; }
.mobile-toggle span:nth-child(3) { top: 20px; }

/* Open State mobile toggle */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 11px;
}

/* --- PAGE 1: HOME LAYOUTS --- */
.home-hero {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    overflow: hidden;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--color-charcoal-light);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--color-light-gray);
    width: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Philosophy Section */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.philosophy-visual {
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(23, 59, 108, 0.03) 0%, rgba(76, 175, 80, 0.03) 100%);
    padding: 3.5rem;
    border: 1px solid rgba(23, 59, 108, 0.05);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-quote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-navy);
    font-style: italic;
    line-height: 1.5;
    position: relative;
    font-weight: 500;
}

.philosophy-quote::before {
    content: "“";
    font-size: 5rem;
    position: absolute;
    top: -2.5rem;
    left: -1.5rem;
    color: rgba(76, 175, 80, 0.15);
    font-family: serif;
}

/* Why Good Habits Matter */
.habits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.habit-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.habit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(23, 59, 108, 0.1);
}

.habit-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.habit-card:hover .habit-icon-wrapper {
    background-color: var(--color-green-light);
    color: var(--color-green);
}

.habit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.habit-card p {
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Featured Program Card */
.featured-card {
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
    border-radius: var(--radius-xl);
    padding: 4.5rem 5rem;
    color: var(--color-white);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.featured-card::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.featured-content h4 {
    color: var(--color-green);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.featured-content h3 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.featured-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-badge {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    width: 100%;
}

.badge-tag {
    background-color: var(--color-orange);
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.badge-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.badge-btn {
    width: 100%;
}

/* --- PAGE 2: SALES FUNNEL LAYOUTS --- */
.sales-hero {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 5rem;
    background: radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.04) 0%, transparent 60%);
}

.limited-badge {
    background-color: var(--color-orange-light);
    border: 1px solid var(--color-orange);
    color: var(--color-orange-dark);
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--color-orange);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.sales-hero h1 {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--color-navy);
}

.sales-hero p.sub {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.price-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.price-original {
    font-size: 1.3rem;
    text-decoration: line-through;
    color: var(--color-charcoal-light);
}

.price-current {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-navy);
    font-family: var(--font-heading);
}

.trust-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    width: 100%;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-charcoal-light);
}

.trust-item svg {
    color: var(--color-green);
    width: 16px;
    height: 16px;
}

/* The Problem Section */
.problem-card {
    background-color: var(--color-white);
    border: 1px solid rgba(23, 59, 108, 0.08);
    border-radius: var(--radius-xl);
    padding: 4rem 5rem;
    box-shadow: var(--shadow-md);
}

.problem-intro {
    font-size: 1.3rem;
    color: var(--color-navy);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2.5rem 0;
}

.problem-list li {
    display: flex;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--color-charcoal-light);
}

.problem-list svg {
    color: var(--color-orange);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.problem-highlight {
    font-size: 1.2rem;
    color: var(--color-navy-dark);
    font-weight: 500;
}

/* Ozempic Alternative transition section */
.transition-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.transition-image-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.transition-content h2 {
    margin-bottom: 1.5rem;
}

.transition-content p {
    margin-bottom: 1.5rem;
}

.transition-quote {
    background-color: var(--color-light-gray);
    border-left: 4px solid var(--color-green);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.transition-quote p {
    font-style: italic;
    color: var(--color-navy);
    font-weight: 500;
    margin: 0;
    font-size: 1.05rem;
}

/* What's included program items */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.included-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(76, 175, 80, 0.2);
}

.included-tag {
    color: var(--color-green);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1rem;
}

.included-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.included-card p {
    font-size: 0.95rem;
}

/* Comparison Matrix Styling */
.comparison-wrapper {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: 3.5rem;
}

.comparison-header-row {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    background-color: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1.5rem 2.5rem;
    text-align: center;
}

.comparison-header-row div:first-child {
    text-align: left;
}

.comparison-header-row .highlight {
    color: var(--color-green-light);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
    text-align: center;
}

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

.comparison-row:nth-child(even) {
    background-color: var(--color-light-gray);
}

.comparison-row div:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--color-navy);
}

.comparison-col-bad {
    color: var(--color-charcoal-light);
    font-size: 0.95rem;
    padding: 0 1rem;
}

.comparison-col-good {
    color: var(--color-navy-dark);
    font-weight: 500;
    font-size: 1.05rem;
    background-color: rgba(76, 175, 80, 0.03);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(76, 175, 80, 0.08);
}

/* Testimonials Grid styling */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

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

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--color-charcoal);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.25rem;
}

.avatar-initial {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-green-light);
    color: var(--color-green-dark);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
}

.avatar-initial.blue {
    background-color: rgba(23, 59, 108, 0.08);
    color: var(--color-navy);
}

.avatar-initial.orange {
    background-color: var(--color-orange-light);
    color: var(--color-orange-dark);
}

.profile-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.profile-info span {
    font-size: 0.8rem;
    color: var(--color-charcoal-light);
}

/* Pricing Grid Callout Section */
.price-block-wrapper {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.price-details {
    padding: 3.5rem;
}

.price-summary {
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
    color: var(--color-white);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.price-summary h4 {
    color: var(--color-orange);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.price-summary .price-strike {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.price-summary .price-giant {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 1rem;
}

.price-summary .price-sub {
    font-size: 0.9rem;
    opacity: 0.8;
}

.guarantees-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.guarantees-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.guarantees-list svg {
    color: var(--color-green);
    width: 18px;
    height: 18px;
}

/* FAQ Accordion Styling */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(23, 59, 108, 0.15);
}

.faq-button {
    width: 100%;
    background: none;
    border: none;
    padding: 1.75rem 2rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-navy);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    background-color: var(--color-navy);
    position: absolute;
    transition: var(--transition-fast);
}

/* horizontal line */
.faq-icon::before {
    top: 11px;
    left: 4px;
    width: 16px;
    height: 2px;
}

/* vertical line */
.faq-icon::after {
    top: 4px;
    left: 11px;
    width: 2px;
    height: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--color-light-gray);
}

.faq-content-inner {
    padding: 0 2rem 2rem 2rem;
    color: var(--color-charcoal-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Final Call To Action Card */
.final-cta-card {
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
    border-radius: var(--radius-xl);
    padding: 5rem 4rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.final-cta-card h2 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.final-cta-card p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--color-navy-dark);
    color: var(--color-white);
    padding: 5rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: var(--color-green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--color-white);
    padding-left: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal-link:hover {
    color: var(--color-white);
}

/* --- ANIMATIONS & INTERSECTION OBSERVER --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* --- RESPONSIVENESS (MOBILE-FIRST) --- */

@media (max-width: 1024px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .btn-group {
        justify-content: center;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .featured-card {
        grid-template-columns: 1fr;
        padding: 3.5rem;
        gap: 3rem;
    }
    
    .transition-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .price-block-wrapper {
        grid-template-columns: 1fr;
    }
    
    .comparison-header-row,
    .comparison-row {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .sales-hero h1 {
        font-size: 2.25rem;
    }
    
    .comparison-header-row {
        grid-template-columns: 1fr 1fr;
        font-size: 1rem;
    }
    
    .comparison-header-row div:nth-child(2) {
        display: none;
    }
    
    .comparison-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .comparison-row div:nth-child(2) {
        display: none;
    }
    
    .comparison-col-good {
        font-size: 0.95rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.4rem; }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .sales-hero h1 {
        font-size: 1.85rem;
    }
    
    .problem-card {
        padding: 2.5rem 1.5rem;
    }
    
    .featured-card {
        padding: 2.5rem 1.5rem;
    }
    
    .price-details {
        padding: 2rem 1.5rem;
    }
    
    .price-summary {
        padding: 2.5rem 1.5rem;
    }
    
    .final-cta-card {
        padding: 3.5rem 1.5rem;
    }
    
    .final-cta-card h2 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}
