/* FiftyPlus Brand Colors */
:root {
    --primary: #3A6C5D;
    --secondary: #B9FB9F;
    --body: #000000;
    --background: #F7FBFE;
    --pattern: #C9CBBF;
    --bs-primary: #3A6C5D;
    --bs-primary-rgb: 58, 108, 93;
    --bs-secondary: #B9FB9F;
    --bs-secondary-rgb: 185, 251, 159;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    
    /* Extended Color Tokens for Redefine */
    --primary-light: #4A8A77;
    --primary-dark: #2A5246;
    --primary-darker: #1E3D34;
    --primary-subtle: rgba(58, 108, 93, 0.08);
    --primary-muted: rgba(58, 108, 93, 0.15);
    --secondary-light: #D4FDCA;
    --secondary-dark: #8CD975;
    --secondary-darker: #5FB347;
    --secondary-muted: #8CD975;
    --secondary-subtle: rgba(185, 251, 159, 0.15);
    --gray-200: #E8ECEB;
    --gray-300: #D4DAD8;
    --gray-700: #3D4743;
    --danger: #C94A4A;
    
    /* Typography Scale - Base 18px */
    --font-size-xs: 0.778rem;    /* 14px */
    --font-size-sm: 0.889rem;    /* 16px */
    --font-size-base: 1rem;      /* 18px */
    --font-size-md: 1.111rem;    /* 20px */
    --font-size-lg: 1.333rem;    /* 24px */
    --font-size-xl: 1.556rem;    /* 28px */
    --font-size-2xl: 1.778rem;   /* 32px */
    --font-size-3xl: 2.222rem;   /* 40px */
    --font-size-4xl: 2.667rem;   /* 48px */
    --font-size-5xl: 3.333rem;   /* 60px */
    
    --line-height-tight: 1.15;
    --line-height-normal: 1.25;
    --line-height-relaxed: 1.65;
    --line-height-loose: 1.7;
    
    --shadow-glow-secondary: 0 4px 20px rgba(185, 251, 159, 0.3);
}

/* Emergency mobile overflow fix */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Montserrat', sans-serif;
}



.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
}

/* Sticky Navbar */
.navbar.sticky-top {
    z-index: 1020;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Bootstrap Button Overrides */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--background);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--background);
    opacity: 0.9;
}

.btn-secondary {
    background-color: var(--secondary) !important;
    border: 2px solid var(--secondary) !important;
    color: var(--primary) !important;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active {
    background-color: transparent !important;
    border-color: var(--secondary) !important;
    color: var(--secondary) !important;
    opacity: 1;
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--background);
}

.btn-outline-secondary {
    border: 2px solid var(--secondary) !important;
    color: var(--secondary) !important;
    background-color: transparent !important;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary.active {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: var(--primary) !important;
}

/* Scroll Animation Classes - sitewide */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Show classes - applied when in view */
.fade-in.show,
.slide-left.show,
.slide-right.show,
.scale-up.show {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .slide-left,
    .slide-right,
    .scale-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Faster animations on mobile */
@media (max-width: 768px) {
    .fade-in,
    .slide-left,
    .slide-right,
    .scale-up {
        transition-duration: 0.5s;
    }
}


/* Section Container - sitewide */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

/* Section Title - sitewide */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-intro,
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Form Styles - sitewide */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-500);
}

/* Bootstrap form control overrides - sitewide */
.form-control,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #fff;
    color: var(--body);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Gradient border effect on focus - brand green with gradient */
.form-control:focus,
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="number"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 0;
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), 
                      linear-gradient(135deg, var(--primary), var(--secondary));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 0 0.2rem rgba(58, 108, 93, 0.25),
                0 0 8px rgba(58, 108, 93, 0.3);
    background-color: #fff;
    color: var(--body);
}

.age-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.age-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

/* Button Large - sitewide */
.btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Footer Styles */
.footer-custom {
    background-color: var(--primary) !important;
}

.footer-link {
    transition: color 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--secondary) !important;
    opacity: 1;
}

.social-link {
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.social-link svg {
    transition: fill 0.3s ease;
}

.social-link:hover svg {
    fill: var(--secondary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   REDEFINE LANDING PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* Section Spacing */
.section-padding {
    padding: 3.5rem 1rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 5rem 2rem;
    }
}

/* Section Backgrounds */
.section-bg-primary {
    background-color: var(--primary);
}

.section-bg-light {
    background-color: var(--background);
}

/* Hero Section */
.hero-section {
    background: radial-gradient(circle, #2A5A46 0%, #1B3D2F 100%);
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 3rem 1rem 4rem 1rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero-section {
        min-height: 85vh;
        padding: 5rem 0;
    }
}

.hero-eyebrow {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-headline {
    color: #FFFFFF;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 1.75rem;
    line-height: var(--line-height-normal);
    text-wrap: balance;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: var(--font-size-3xl);
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) {
    .hero-headline {
        font-size: var(--font-size-4xl);
    }
}

.hero-subheadline {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-base);
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: var(--line-height-relaxed);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subheadline {
        font-size: var(--font-size-lg);
    }
}

/* Price Box */
.price-box {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    width: 90%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

@media (min-width: 768px) {
    .price-box {
        padding: 2.5rem;
    }
}

.price-badge {
    background: var(--secondary);
    color: var(--primary-darker);
    font-size: var(--font-size-sm);
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.price-amount {
    color: var(--secondary);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

@media (min-width: 768px) {
    .price-amount {
        font-size: 3.5rem;
    }
}

@media (min-width: 1200px) {
    .price-amount {
        font-size: 4rem;
    }
}

.price-subtext {
    color: #FFFFFF;
    font-size: var(--font-size-sm);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* CTA Buttons */
.btn-cta-primary {
    background-color: var(--secondary);
    border: none;
    border-radius: 0.5rem;
    color: #1B3D2F;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--font-size-md);
    font-weight: 600;
    padding: 1rem 2rem;
    min-height: 52px;
    box-shadow: 0 4px 14px rgba(185, 251, 159, 0.35);
    transition: all 0.2s ease;
    text-transform: none;
}

@media (min-width: 768px) {
    .btn-cta-primary {
        padding: 1.125rem 2.5rem;
    }
}

.btn-cta-primary:hover:not(:disabled) {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 251, 159, 0.50);
    color: #1B3D2F;
}

.btn-cta-primary:active:not(:disabled) {
    background-color: var(--secondary-dark);
    transform: translateY(0);
}

.btn-cta-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(185, 251, 159, 0.5);
}

.btn-cta-secondary {
    background-color: var(--secondary);
    border: none;
    border-radius: 0.5rem;
    color: #1B3D2F;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--font-size-md);
    font-weight: 600;
    padding: 1rem 2.5rem;
    min-height: 52px;
    box-shadow: 0 4px 20px rgba(185, 251, 159, 0.4);
    transition: all 0.2s ease;
}

.btn-cta-secondary:hover:not(:disabled) {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(185, 251, 159, 0.5);
    color: #1B3D2F;
}

.btn-cta-secondary:active:not(:disabled) {
    background-color: var(--secondary-dark);
    transform: translateY(0);
}

.btn-cta-secondary:focus {
    box-shadow: 0 0 0 0.25rem rgba(185, 251, 159, 0.5);
}

.hero-cta-wrapper {
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .hero-cta-wrapper {
        margin-bottom: 3rem;
    }
}

.hero-cta-sub-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.9;
    padding-top: 0.5rem;
}

@media (min-width: 768px) {
    .trust-indicators {
        gap: 2rem;
        padding-top: 0;
    }
}

.trust-indicator {
    color: #FFFFFF;
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-indicator::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
    font-size: var(--font-size-base);
    margin-right: 0.5rem;
}

@media (max-width: 575.98px) {
    .trust-indicators {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}

/* Credentials Section - Dark Background (Primary) */
.credential-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: transform 0.2s ease, background 0.2s ease;
}

@media (min-width: 768px) {
    .credential-card {
        padding: 2rem;
    }
}

.credential-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.credential-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

@media (min-width: 768px) {
    .credential-icon {
        font-size: 3rem;
    }
}

.credential-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.111rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.credential-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* Credentials Section - Light Background */
.credential-card-light {
    background: rgba(58, 108, 93, 0.06);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: transform 0.2s ease, background 0.2s ease;
}

@media (min-width: 768px) {
    .credential-card-light {
        padding: 2rem;
    }
}

.credential-card-light:hover {
    background: rgba(58, 108, 93, 0.1);
    transform: translateY(-2px);
}

.credential-icon-light {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

@media (min-width: 768px) {
    .credential-icon-light {
        font-size: 3rem;
    }
}

.credential-title-light {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.111rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.credential-description-light {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

/* Value Stack Card - Light Background */
.value-stack-card {
    background: var(--primary-subtle);
    border-radius: 0.75rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .value-stack-card {
        padding: 2.5rem;
    }
}

/* Value Stack Card - Dark Background */
.value-stack-card-dark {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .value-stack-card-dark {
        padding: 2.5rem;
    }
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--primary-muted);
    gap: 1.5rem;
}

.value-item .value-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.value-item:last-of-type {
    border-bottom: none;
}

.value-label {
    color: var(--gray-700);
    flex: 1;
    line-height: var(--line-height-relaxed);
    font-weight: 600;
}

.value-stack-card-dark .value-label {
    color: rgba(255, 255, 255, 0.9);
}

.value-stack-card-dark .value-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.value-item-checkmark {
    color: var(--primary);
    font-size: 1.25rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    font-weight: 700;
}

.value-stack-card-dark .value-item-checkmark {
    color: var(--secondary);
}

.value-amount {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
    min-width: 110px;
}

.value-stack-card-dark .value-amount {
    color: var(--secondary);
}

.value-total-comparison {
    border-top: 2px solid var(--primary);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.value-stack-card-dark .value-total-comparison {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.value-strikethrough {
    text-decoration: none;
    color: var(--gray-500);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.value-stack-card-dark .value-strikethrough {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 400;
}

.value-current-price {
    color: var(--primary);
    font-size: 1.75rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.value-stack-card-dark .value-current-price {
    color: rgba(255, 255, 255, 0.9);
}

.value-price-label {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 1rem;
}

.value-stack-card-dark .value-price-label {
    color: rgba(255, 255, 255, 0.9);
}

.value-price-amount {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.75rem;
}

.value-per-session {
    color: var(--gray-600);
    font-size: 0.95rem;
    display: block;
}

.value-stack-card-dark .value-per-session {
    color: rgba(255, 255, 255, 0.85);
}

/* Guarantee Box */
.guarantee-box {
    background: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(185, 251, 159, 0.2);
}

@media (min-width: 768px) {
    .guarantee-box {
        padding: 3rem;
    }
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

@media (min-width: 768px) {
    .guarantee-icon {
        font-size: 3.5rem;
    }
}

.guarantee-title {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.guarantee-promise {
    color: var(--secondary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.guarantee-text {
    color: #FFFFFF;
    font-size: var(--font-size-md);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* Step Indicator - Light Background */
.step-indicator-light {
    width: 72px;
    height: 72px;
    background: var(--secondary);
    color: var(--primary-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: var(--shadow-glow-secondary);
    border: 3px solid rgba(58, 108, 93, 0.1);
}

@media (min-width: 768px) {
    .step-indicator-light {
        width: 88px;
        height: 88px;
        font-size: 2.25rem;
    }
}

.step-title-light {
    color: var(--primary);
    margin-bottom: 1rem;
    margin-top: 1.25rem;
    font-weight: 600;
    font-size: 1.222rem;
}

.step-description-light {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1rem;
}

/* Step Indicator - Dark Background (Primary) */
.step-indicator {
    width: 72px;
    height: 72px;
    background: var(--secondary);
    color: var(--primary-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: var(--shadow-glow-secondary);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .step-indicator {
        width: 88px;
        height: 88px;
        font-size: 2.25rem;
    }
}

.step-title {
    color: #FFFFFF;
    margin-bottom: 1rem;
    margin-top: 1.25rem;
    font-weight: 600;
    font-size: 1.222rem;
}

.step-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
}

/* Hero Pain Points - Dark Background */
.hero-pain-points-dark {
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-pain-point-dark {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    font-size: 1.111rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.hero-agitation-text-dark {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.055rem;
    line-height: 1.7;
    margin: 2rem auto 1.5rem;
    max-width: 700px;
    text-align: center;
}

.hero-transition-line-dark {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.222rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Hero Pain Points - Light Background */
.hero-pain-points {
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-pain-point {
    color: var(--gray-700);
    font-style: italic;
    font-size: 1.111rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.hero-agitation-text {
    color: var(--gray-600);
    font-size: 1.055rem;
    line-height: 1.7;
    margin: 2rem auto 1.5rem;
    max-width: 700px;
    text-align: center;
}

.hero-transition-line {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.222rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Who For Items - Dark Background */
.who-for-item-dark {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.who-for-item-dark:last-child {
    border-bottom: none;
}

.who-for-checkmark-dark {
    color: var(--secondary);
    font-size: 1.333rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.who-for-text-dark {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.055rem;
    line-height: 1.7;
    flex: 1;
}

/* Who For Items - Light Background */
.who-for-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.who-for-item:last-child {
    border-bottom: none;
}

.who-for-checkmark {
    color: var(--primary);
    font-size: 1.333rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.who-for-text {
    color: var(--gray-700);
    font-size: 1.055rem;
    line-height: 1.7;
    flex: 1;
}

/* Cost of Inaction - Dark Background */
.cost-of-inaction-paragraph-dark {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.055rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.closing-line-box-dark {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--secondary);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

/* Cost of Inaction - Light Background */
.cost-of-inaction-paragraph {
    color: var(--gray-600);
    font-size: 1.055rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.closing-line-box {
    background: var(--primary-subtle);
    border-left: 4px solid var(--primary);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-question {
    color: var(--primary);
    font-size: 1.167rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 1.222rem;
    }
}

.faq-answer {
    color: var(--gray-600);
    font-size: 1.055rem;
    line-height: 1.7;
    margin: 0;
}

/* Scarcity Badge */
.scarcity-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary-darker);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Payment Form Card */
.payment-form-card {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    max-width: 560px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .payment-form-card {
        padding: 2.5rem;
    }
}

.payment-form-title {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.payment-trust-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.payment-trust-footer a {
    color: var(--primary);
    text-decoration: none;
}

.payment-trust-footer a:hover {
    text-decoration: underline;
}

.payment-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.payment-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.payment-trust-badge-icon {
    font-size: 1rem;
}

/* Stripe Card Element Styling */
#card-element {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.5rem;
    background-color: #FFFFFF;
    min-height: 52px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#card-element:focus,
#card-element.focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(58, 108, 93, 0.15);
}

#card-element.StripeElement--invalid {
    border-color: var(--danger);
}

#card-errors {
    min-height: 1.5rem;
    font-size: var(--font-size-sm);
}

/* Payment Processing State */
.payment-processing {
    padding: 2rem 1rem;
}

.payment-processing .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Content Container */
.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.content-container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--font-size-3xl);
    }
}

.section-intro {
    font-size: var(--font-size-md);
    line-height: var(--line-height-relaxed);
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .btn-cta-primary,
    .btn-cta-secondary {
        transition: none !important;
    }
    
    .btn-cta-primary:hover,
    .btn-cta-secondary:hover {
        transform: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REDEFINE LAYOUT HEADER
   ═══════════════════════════════════════════════════════════════════════════ */

.redefine-header {
    background-color: var(--primary);
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

.redefine-logo-wrapper {
    display: flex;
    align-items: center;
}

.redefine-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.redefine-logo-link:hover {
    opacity: 0.85;
}

.redefine-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
}

@media (min-width: 768px) {
    .redefine-header {
        padding: 1.25rem 0;
    }
    
    .redefine-logo {
        height: 45px;
    }
}
