/* ============================================
   NERDFIT AFFILIATE LANDING PAGE STYLES
   Official Brand Colors: Amber, Orange, Teal
   Updated: 2025-12-18
   ============================================ */

/* CSS Variables - Official Nerdfit Brand */
:root {
    /* ========== OFFICIAL BRAND COLORS ========== */
    /* Primary - Amber/Beer (Main brand color) */
    --brand-amber: #ed8922;
    --brand-amber-light: #f4a54a;
    --brand-amber-dark: #d4780f;
    
    /* Secondary - Orange (Depth & hover states) */
    --brand-orange: #d76327;
    --brand-orange-light: #e07a3d;
    --brand-orange-dark: #b8521f;
    
    /* Contrast - Teal (Dark sections & balance) */
    --brand-teal: #1a535c;
    --brand-teal-light: #247580;
    --brand-teal-dark: #0f3a40;
    
    /* Text - Near Black */
    --brand-black: #444445;
    --brand-black-light: #5a5a5b;
    --brand-black-dark: #2d2d2e;
    
    /* ========== SEMANTIC COLOR MAPPING ========== */
    --color-primary: var(--brand-amber);
    --color-primary-hover: var(--brand-orange);
    --color-primary-dark: var(--brand-amber-dark);
    --color-secondary: var(--brand-teal);
    --color-secondary-hover: var(--brand-teal-light);
    --color-accent: var(--brand-orange);
    
    /* Text Colors */
    --text-primary: var(--brand-black);
    --text-secondary: #5a5a5b;
    --text-muted: #777777;
    --text-light: #999999;
    --text-white: #ffffff;
    
    /* ========== GRADIENTS ========== */
    --gradient-brand: linear-gradient(135deg, #ed8922 0%, #d76327 100%);
    --gradient-brand-reverse: linear-gradient(135deg, #d76327 0%, #ed8922 100%);
    --gradient-dark: linear-gradient(135deg, #1a535c 0%, #0f3a40 100%);
    --gradient-warm: linear-gradient(180deg, #ed8922 0%, #d76327 50%, #b8521f 100%);
    --gradient-subtle: linear-gradient(180deg, rgba(237, 137, 34, 0.08) 0%, rgba(215, 99, 39, 0.04) 100%);
    
    /* ========== NEUTRALS ========== */
    --white: #ffffff;
    --off-white: #faf9f7;
    --cream: #fdf8f3;
    --gray-50: #f9f9f8;
    --gray-100: #f3f3f2;
    --gray-200: #e8e8e6;
    --gray-300: #d4d4d2;
    --gray-400: #a3a3a1;
    --gray-500: #737372;
    --gray-600: #525251;
    --gray-700: #3d3d3c;
    --gray-800: #262625;
    --gray-900: #171716;
    
    /* ========== TYPOGRAPHY ========== */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* ========== SPACING ========== */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    
    /* ========== BORDER RADIUS ========== */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* ========== SHADOWS ========== */
    --shadow-sm: 0 1px 2px 0 rgb(68 68 69 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(68 68 69 / 0.08), 0 2px 4px -2px rgb(68 68 69 / 0.06);
    --shadow-lg: 0 10px 15px -3px rgb(68 68 69 / 0.08), 0 4px 6px -4px rgb(68 68 69 / 0.04);
    --shadow-xl: 0 20px 25px -5px rgb(68 68 69 / 0.1), 0 8px 10px -6px rgb(68 68 69 / 0.06);
    --shadow-glow: 0 0 40px rgba(237, 137, 34, 0.25);
    --shadow-glow-lg: 0 0 60px rgba(237, 137, 34, 0.35);
    --shadow-teal: 0 4px 20px rgba(26, 83, 92, 0.15);
    
    /* ========== TRANSITIONS ========== */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* ========== CONTAINER ========== */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

/* ============================================
   HEADER
   ============================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-100);
    padding: var(--spacing-md) 0;
    transition: all var(--transition-normal);
}

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

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.logo-link {
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast);
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-nerdfit {
    height: 44px;
    width: auto;
}

.logo-wellsync {
    height: 32px;
    width: auto;
    opacity: 0.8;
}

.partnership-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient-brand);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--gradient-brand-reverse);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--brand-teal);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--brand-teal-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--gray-200);
    width: 100%;
    margin-top: var(--spacing-md);
}

.btn-outline:hover {
    border-color: var(--brand-amber);
    color: var(--brand-amber);
    background: rgba(237, 137, 34, 0.05);
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1rem;
}

.btn-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: var(--shadow-glow);
    }
    50% {
        box-shadow: var(--shadow-glow-lg);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    padding: var(--spacing-4xl) 0;
    overflow: hidden;
    background: var(--cream);
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(237, 137, 34, 0.06) 0%, rgba(215, 99, 39, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-3xl);
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.hero-title .highlight {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.hero-description strong {
    color: var(--brand-amber);
    font-weight: 700;
}

/* Hero Products */
.hero-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

/* Product Cards */
.product-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(237, 137, 34, 0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card-featured {
    border: 2px solid var(--brand-amber);
    background: linear-gradient(180deg, rgba(237, 137, 34, 0.03) 0%, var(--white) 100%);
}

.product-card-featured::before {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--gradient-brand);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
}

.product-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-teal);
    background: rgba(26, 83, 92, 0.1);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

.product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    margin-bottom: var(--spacing-lg);
}

.product-image {
    max-height: 160px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 80px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    color: var(--gray-400);
}

.product-image-placeholder svg {
    width: 40px;
    height: 40px;
}

.product-info {
    flex: 1;
    text-align: center;
}

.product-name {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.product-name strong {
    font-weight: 700;
    color: var(--brand-teal);
}

.product-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.product-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: var(--spacing-lg);
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-amber);
}

.price-amount {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-amber);
    line-height: 1;
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.product-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: var(--brand-teal);
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.product-cta:hover {
    background: var(--brand-teal-light);
    transform: translateY(-2px);
}

.product-cta .btn-icon svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    position: relative;
    padding: var(--spacing-4xl) 0;
    background: var(--white);
    overflow: hidden;
}

.section-watermark {
    position: absolute;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 83, 92, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-label {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-amber);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-3xl);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 220px;
    position: relative;
}

.step-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: all var(--transition-normal);
}

.step:hover .step-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl), var(--shadow-glow-lg);
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.step-connector {
    display: none;
    position: absolute;
    top: 45px;
    left: calc(100% + 20px);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-amber) 0%, var(--gray-200) 100%);
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
    }
    
    .step:last-child .step-connector {
        display: none;
    }
}

.step-number {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-amber);
    background: rgba(237, 137, 34, 0.1);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
}

.step-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */

.testimonial {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

@media (min-width: 768px) {
    .testimonial-content {
        grid-template-columns: 1.2fr 1fr;
    }
}

.testimonial-quote {
    position: relative;
}

.quote-icon {
    width: 56px;
    height: 56px;
    color: var(--brand-amber);
    opacity: 0.4;
    margin-bottom: var(--spacing-lg);
}

.testimonial-quote blockquote {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.testimonial-quote blockquote p {
    margin-bottom: var(--spacing-lg);
}

.highlight-text {
    color: var(--brand-teal);
    font-weight: 600;
}

.testimonial-author {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 2px solid var(--gray-100);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.author-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.testimonial-image {
    position: relative;
}

.image-decoration {
    position: absolute;
    inset: -20px;
    background: var(--gradient-brand);
    opacity: 0.1;
    border-radius: var(--radius-2xl);
    transform: rotate(3deg);
}

.stats-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-xl);
    display: grid;
    gap: var(--spacing-xl);
    border: 1px solid var(--gray-100);
}

.stat {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--brand-amber);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
    padding: var(--spacing-4xl) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.benefit:hover {
    background: rgba(255, 255, 255, 0.05);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    border: 2px solid rgba(237, 137, 34, 0.4);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    background: rgba(237, 137, 34, 0.1);
}

.benefit:hover .benefit-icon {
    border-color: var(--brand-amber);
    background: rgba(237, 137, 34, 0.2);
    box-shadow: 0 0 30px rgba(237, 137, 34, 0.3);
    transform: scale(1.05);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--brand-amber);
}

.benefit-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.benefit-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products-section {
    padding: var(--spacing-4xl) 0;
    background: var(--gray-50);
}

.section-title-dark {
    color: var(--text-primary);
}

.section-title-dark strong {
    color: var(--brand-amber);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card-detailed {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid var(--gray-100);
}

.product-card-detailed:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(237, 137, 34, 0.3);
}

.product-badges {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
}

.badge-bestseller {
    background: var(--gradient-brand);
    color: var(--white);
}

.badge-category {
    background: transparent;
    color: var(--brand-teal);
    border: 1px solid var(--brand-teal);
}

.product-image-large {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    margin-bottom: var(--spacing-xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
}

.product-image-large img {
    max-height: 170px;
    width: auto;
    object-fit: contain;
}

.product-placeholder {
    width: 100px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    color: var(--gray-400);
}

.product-placeholder svg {
    width: 48px;
    height: 48px;
}

.product-name-large {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.product-name-large strong {
    font-weight: 800;
    color: var(--brand-teal);
}

.product-description-large {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature svg {
    width: 20px;
    height: 20px;
    color: var(--brand-amber);
    flex-shrink: 0;
}

.product-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.price-large {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-large .price-currency {
    font-size: 1.5rem;
}

.price-large .price-amount {
    font-size: 3rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--spacing-4xl) 0;
    background: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.cta-title strong {
    color: var(--brand-amber);
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--brand-teal);
    padding: var(--spacing-3xl) 0;
}

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

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.logo-nerdfit-footer {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.logo-wellsync-footer {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer .partnership-text {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.footer-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--brand-amber);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.7;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content,
.hero-products,
.step,
.benefit,
.product-card-detailed {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.hero-products {
    animation-delay: 0.2s;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }

.benefit:nth-child(1) { animation-delay: 0.1s; }
.benefit:nth-child(2) { animation-delay: 0.15s; }
.benefit:nth-child(3) { animation-delay: 0.2s; }
.benefit:nth-child(4) { animation-delay: 0.25s; }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 640px) {
    :root {
        --container-padding: 1rem;
    }
    
    .hero {
        padding: var(--spacing-2xl) 0;
    }
    
    .hero-products {
        grid-template-columns: 1fr;
    }
    
    .product-pricing {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-pricing .btn {
        width: 100%;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-card {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--brand-amber);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid var(--brand-amber);
    }
    
    .product-card {
        border: 2px solid var(--text-primary);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-amber { color: var(--brand-amber); }
.text-orange { color: var(--brand-orange); }
.text-teal { color: var(--brand-teal); }
.bg-amber { background-color: var(--brand-amber); }
.bg-teal { background-color: var(--brand-teal); }
