/* ============================================
   BRAVORA - CSS RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Warm, Empowering, Trustworthy */
    --primary-color: #E86D43;
    --primary-dark: #D15A30;
    --primary-light: #FF8B65;
    --secondary-color: #2C7A7B;
    --secondary-dark: #1F5556;
    --accent-gold: #F6AD55;
    --accent-green: #48BB78;

    /* Neutrals */
    --text-primary: #2D3748;
    --text-secondary: #4A5568;
    --text-light: #718096;
    --bg-white: #FFFFFF;
    --bg-cream: #FFF9F5;
    --bg-light: #F7FAFC;
    --bg-gray: #EDF2F7;
    --border-color: #E2E8F0;

    /* Emotional Colors */
    --urgent-red: #FC8181;
    --success-green: #48BB78;
    --trust-blue: #4299E1;
    --warning-yellow: #F6AD55;

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
}

strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-main);
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #B8461F 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.btn-block {
    width: 100%;
}

.btn-subtext {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(232, 109, 67, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(232, 109, 67, 0);
    }
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: auto;
    height: 60px;
    max-width: 200px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.cta-btn-small {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.cta-btn-small:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 109, 67, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 2rem 0;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-headline {
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(232, 109, 67, 0.2);
    z-index: -1;
}

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-promise {
    background: white;
    padding: 1.25rem;
    border-left: 4px solid var(--accent-green);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-stats {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.rating-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.badge-text span {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ============================================
   PAIN SECTION
   ============================================ */

.pain-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pain-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all var(--transition-normal);
}

.pain-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pain-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.pain-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.pain-validation {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.validation-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-bg {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

/* ============================================
   PROMISE SECTION
   ============================================ */

.promise-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.promise-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promise-before,
.promise-after {
    padding: 1rem;
    border-radius: var(--radius-md);
}

.promise-before {
    background: #FEE;
    border-left: 3px solid var(--urgent-red);
}

.promise-after {
    background: #EFE;
    border-left: 3px solid var(--accent-green);
}

.promise-arrow {
    font-size: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.promise-cta {
    text-align: center;
    margin-top: 2rem;
}

.promise-headline {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
    padding: 5rem 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    position: relative;
    padding: 2rem;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-card h3 {
    margin-top: 1rem;
    font-size: 1.25rem;
}

.how-proof {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 0;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.proof-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.proof-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    max-width: 200px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.product-tier {
    margin-bottom: 4rem;
}

.tier-header {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
}

.tier-urgent {
    background: linear-gradient(135deg, #FFF5F5 0%, #FED7D7 100%);
    border: 2px solid var(--urgent-red);
}

.tier-foundation {
    background: linear-gradient(135deg, #F0FFF4 0%, #C6F6D5 100%);
    border: 2px solid var(--accent-green);
}

.tier-transform {
    background: linear-gradient(135deg, #EBF8FF 0%, #BEE3F8 100%);
    border: 2px solid var(--trust-blue);
}

.tier-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.tier-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tier-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.product-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

.product-badge {
    position: absolute;
    top: -15px;
    right: 1.5rem;
    background: var(--accent-gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.product-promise {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
    border-top: 2px solid var(--border-color);
}

.product-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-comparison {
    font-size: 0.875rem;
    color: var(--text-light);
}

.product-guarantee {
    text-align: center;
    margin-top: 1rem;
}

.product-guarantee small {
    color: var(--accent-green);
    font-weight: 600;
}

/* Flagship Product */
.flagship-product {
    background: linear-gradient(135deg, #FFFAF0 0%, #FEEBC8 100%);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-xl);
    position: relative;
}

.flagship-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gold);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.flagship-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.flagship-name {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.flagship-subtitle {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.flagship-promise {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.flagship-includes h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.include-icon {
    color: var(--accent-green);
    font-weight: 800;
    font-size: 1.125rem;
}

.total-value {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 1.125rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.flagship-right {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flagship-pricing {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.price-strike {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-current {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-subtext {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.flagship-guarantee {
    display: flex;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee-text strong {
    color: var(--primary-color);
    font-size: 1.0625rem;
}

.guarantee-text p {
    font-size: 0.9375rem;
    margin-top: 0.5rem;
}

.flagship-social-proof {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
}

.social-proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sp-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.sp-label {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    font-size: 1.25rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-location {
    font-size: 0.875rem;
    color: var(--text-light);
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-question {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--text-secondary);
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-headline {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.final-cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.choice-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    box-shadow: var(--shadow-xl);
}

.choice-before {
    border: 3px solid var(--urgent-red);
}

.choice-after {
    border: 3px solid var(--accent-green);
}

.choice-card h3 {
    margin-bottom: 1rem;
}

.final-cta-action {
    margin-top: 3rem;
}

.final-cta-promise {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.final-cta-question {
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2.5rem;
}

.final-trust-elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-element {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--accent-green);
}

.trust-text {
    font-size: 0.9375rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.footer-links h4,
.footer-guarantee h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-guarantee p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-social a:hover {
    color: var(--primary-light);
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-primary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .flagship-content {
        grid-template-columns: 1fr;
    }

    .includes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left var(--transition-normal);
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .choice-grid {
        grid-template-columns: 1fr;
    }

    .final-trust-elements {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .btn-large,
    .btn-xl {
        padding: 1rem 2rem;
        font-size: 1.0625rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .flagship-product {
        padding: 1.5rem;
    }

    .price-current {
        font-size: 3rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}