/* ============================================================================
   COLORADO SPRINGS HEALTH COLLECTIVE - STYLES
   Fresh rewrite with clean, organized code
   ============================================================================ */

/* CSS Variables */
:root {
    --primary-navy: #1a202c;
    --secondary-gray: #2d3748;
    --accent-teal: #4fd1c7;
    --text-light: #ffffff;
    --text-gray: #a0aec0;
    --text-dark: #2d3748;
    --mountain-opacity: 0.9;
    --scroll-opacity: 1;
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
    background: url('mountain-sunset-dark.png') center center/cover no-repeat fixed;
}

/* Mobile styles - properly working parallax mountain background */
@media (max-width: 768px) {
    html {
        height: 100%;
        overflow-x: hidden;
    }
    
    body {
        background: url('mountain-sunset-dark.png') center top/cover no-repeat fixed !important;
        background-attachment: fixed !important;
        min-height: 100vh !important;
    }
    
    /* iOS Safari fix for background-attachment: fixed */
    @supports (-webkit-overflow-scrolling: touch) {
        body {
            background-attachment: scroll !important;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: url('mountain-sunset-dark.png') center center/cover no-repeat;
            background-size: cover;
            background-position: center center;
            z-index: -10;
            will-change: transform;
        }
    }
    
    /* Fix mobile header spacing */
    .header {
        padding: 1rem 0 !important;
        background: rgba(26, 32, 44, 0.9) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .nav {
        gap: 1rem !important;
    }
    
    .logo {
        height: 40px !important;
    }
    
    .nav-toggle {
        margin-left: auto !important;
    }
    
    .hero {
        background: transparent !important;
        min-height: 100vh !important;
        padding: 6rem 0 4rem !important;
        position: relative !important;
    }
    
    .hero-content {
        padding: 2rem 1rem !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    /* Content sections completely cover mountain for readability */
    .why-dpc,
    .about-us,
    .vision,
    .pricing,
    .waitlist {
        background: #1a202c !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .testimonial {
        background: #1a202c !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .footer {
        background: #1a202c !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    .title-prefix,
    .title-main {
        font-size: 2.5rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .title-sub {
        font-size: 1.4rem !important;
        margin-top: 0.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
        max-width: 100% !important;
    }
    
    .cta-button {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
}

/* Section overlays for readability - bright and inviting throughout */
.why-dpc,
.services-section,
.comparison-section,
.provider-section,
.vision,
.pricing,
.waitlist {
    background: rgba(45, 55, 72, 0.9);
    padding: 80px 0;
    margin: 40px 0;
    border-top: 1px solid rgba(79, 209, 199, 0.2);
    position: relative;
}

/* Alternating section backgrounds for better distinction */
.services-section,
.provider-section {
    background: rgba(52, 63, 82, 0.92);
}

.testimonial {
    background: rgba(26, 32, 44, 0.65);
    padding: 80px 0;
    margin: 40px 0;
}

.footer {
    background: rgba(26, 32, 44, 0.85);
    margin-top: 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(79, 209, 199, 0.1);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4fd1c7;
    letter-spacing: 0.5px;
}

.navigation {
    position: relative;
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.desktop-menu a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.desktop-menu a:hover {
    color: #4fd1c7;
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4fd1c7, #38b2ac);
    transition: width 0.3s ease;
}

.desktop-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    color: #1a202c !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 209, 199, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(79, 209, 199, 0.4);
}

.nav-cta::after {
    display: none;
}

/* Mobile Navigation */
.mobile-navigation {
    display: none;
    position: relative;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #e2e8f0;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

.mobile-menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(26, 32, 44, 0.95);
    border: 1px solid rgba(79, 209, 199, 0.2);
    border-radius: 12px;
    margin-top: 10px;
    padding: 20px 0;
    min-width: 200px;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
}

.mobile-menu-dropdown.show {
    display: block;
}

.mobile-menu-dropdown a {
    display: block;
    padding: 15px 25px;
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(79, 209, 199, 0.1);
    transition: all 0.2s ease;
}

.mobile-menu-dropdown a:last-child {
    border-bottom: none;
}

.mobile-menu-dropdown a:hover {
    background: rgba(79, 209, 199, 0.1);
    color: #4fd1c7;
}

.mobile-cta {
    background: linear-gradient(135deg, #4fd1c7, #38b2ac) !important;
    color: #1a202c !important;
    margin: 10px 20px !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-weight: 600 !important;
    border-bottom: none !important;
}

.mobile-cta:hover {
    background: linear-gradient(135deg, #38b2ac, #319795) !important;
    color: #1a202c !important;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-navigation {
        display: block;
    }
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: rgba(26, 32, 44, 0.4);
}

/* Mobile responsive styles for hero - merged with background fix above */





/* Clean hero section - mountain background from body */

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    margin-bottom: 2rem;
    line-height: 1.2;
}

.title-prefix,
.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.4);
}

.title-sub {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 400;
    color: #4fd1c7;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cbd5e0;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    color: #1a202c;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(79, 209, 199, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(79, 209, 199, 0.4);
}

/* ============================================================================
   WHY DIRECT PRIMARY CARE SECTION
   ============================================================================ */

.why-dpc {
    padding: 6rem 0;
    /* REMOVED: background blocking mountain */
    position: relative;
    overflow: hidden;
}

/* Subtle topographic background for why-dpc section */
/* Removed topographic overlay */

/* Removed contour lines */

.why-dpc h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4rem;
    position: relative;
}

/* Removed decorative line */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(79, 209, 199, 0.1), rgba(85, 60, 154, 0.1));
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(79, 209, 199, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Removed hover effect pseudo-element */

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(79, 209, 199, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a202c;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #cbd5e0;
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================================================
   ABOUT US SECTION
   ============================================================================ */

.about-us {
    padding: 6rem 0;
    /* REMOVED: background to show mountain */
    position: relative;
}

/* Subtle topographic element for about section */
/* Removed topographic overlay */

.about-us h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

/* Removed decorative line */

.about-content {
    position: relative;
    z-index: 2;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f7fafc;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-item {
    /* REMOVED: background blocking mountain */
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(79, 209, 199, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 209, 199, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    color: #4fd1c7;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.service-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.service-item p {
    font-size: 0.9rem;
    color: #a0aec0;
    line-height: 1.5;
}

.perks-section {
    background: rgba(45, 55, 72, 0.4);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 1px solid rgba(79, 209, 199, 0.1);
}

.perks-section h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.perks-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(79, 209, 199, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(79, 209, 199, 0.2);
}

.perk-icon {
    color: #4fd1c7;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.perk-item span:last-child {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.provider-section {
    /* REMOVED: background blocking mountain */
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(79, 209, 199, 0.1);
}

.provider-section h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.provider-card {
    /* REMOVED: background blocking mountain */
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(79, 209, 199, 0.1);
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 209, 199, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.provider-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4fd1c7 0%, #38b2ac 100%);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

.provider-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.provider-title {
    font-size: 0.9rem;
    color: #4fd1c7;
    font-weight: 500;
    margin-bottom: 1rem;
}

.provider-bio {
    font-size: 0.85rem;
    color: #cbd5e0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-us {
        padding: 4rem 0;
    }
    
    .about-us h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .perks-section,
    .provider-section {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .perks-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .provider-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Testimonial section removed */

/* Vision note with enhanced readability */
.vision-note {
    margin-top: 1.5rem;
}

.vision-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #e2e8f0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    font-style: italic;
}

/* Footer disclaimer with enhanced readability */
.footer-disclaimer {
    background: rgba(26, 32, 44, 0.9);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-top: 0.5rem;
    border: 1px solid rgba(79, 209, 199, 0.2);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #cbd5e0;
    margin: 0;
    line-height: 1.4;
}

/* ============================================================================
   VISION SECTION
   ============================================================================ */

.vision {
    padding: 6rem 0;
    /* REMOVED: background to show mountain */
    position: relative;
}

.vision .container {
    /* REMOVED: background blocking mountain */
    border-radius: 24px;
    padding: 3rem 2rem;
    border: 1px solid rgba(79, 209, 199, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Elegant topographic background for vision section */
/* Removed topographic overlay */

.vision h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

/* Removed decorative line */

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.vision-content p {
    font-size: 1.1rem;
    color: #f7fafc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

/* ============================================================================
   PRICING SECTION
   ============================================================================ */

.pricing {
    padding: 6rem 0;
    /* REMOVED: background to show mountain */
    position: relative;
    overflow: hidden;
}

/* Subtle topographic background for pricing section */
/* Removed topographic overlay */

/* Removed contour lines */

.pricing h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
}

/* Removed decorative line */

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(45, 55, 72, 0.6);
    border-radius: 20px;
    border: 2px solid rgba(79, 209, 199, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 209, 199, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: #4fd1c7;
    background: rgba(79, 209, 199, 0.1);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: translateY(-5px) scale(1.02);
}

.pricing-card.urgent-care {
    border-color: rgba(156, 163, 175, 0.3);
    background: rgba(75, 85, 99, 0.4);
}

.pricing-card.urgent-care:hover {
    transform: translateY(-5px);
    border-color: rgba(156, 163, 175, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-note {
    color: #a0aec0;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
    text-align: center;
}

.pricing-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.pricing-promo {
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    color: #1a202c;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin: 0.5rem auto 0;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(79, 209, 199, 0.3);
}

.price-display {
    margin-bottom: 2rem;
}

.price {
    color: #4fd1c7;
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.period {
    color: #cbd5e0;
    font-size: 1.2rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    color: #e2e8f0;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    color: #4fd1c7;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.pricing-benefits {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.annual-discount {
    background: rgba(79, 209, 199, 0.1);
    border: 2px solid #4fd1c7;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.annual-discount h4 {
    color: #4fd1c7;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.discount-details p {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}



@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .annual-discount,
    .pricing-notes {
        padding: 1.2rem;
    }
}

/* ============================================================================
   MEDICAL DISCLAIMER POPUP
   ============================================================================ */

.disclaimer-overlay {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.disclaimer-overlay.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.disclaimer-popup {
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid #4fd1c7;
    border-radius: 50px;
    padding: 1rem 2rem;
    max-width: 600px;
    min-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

@media (max-width: 768px) {
    .disclaimer-overlay {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        transform: translateX(0) translateY(50px);
    }
    
    .disclaimer-overlay.show {
        transform: translateX(0) translateY(0);
    }
    
    .disclaimer-popup {
        min-width: auto;
        max-width: none;
        padding: 1rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        border-radius: 20px;
    }
}

.disclaimer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.disclaimer-popup h3 {
    color: #4fd1c7;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.disclaimer-popup p {
    color: #cbd5e0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .disclaimer-popup h3 {
        font-size: 1rem;
        text-align: center;
    }
    
    .disclaimer-popup p {
        font-size: 0.85rem;
        text-align: center;
    }
}

.disclaimer-button {
    background: #4fd1c7;
    color: #1a202c;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.disclaimer-button:hover {
    background: #38b2ac;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 209, 199, 0.3);
}

.disclaimer-button:active {
    transform: translateY(0);
}

/* ============================================================================
    font-size: 1.1rem;
    color: #cbd5e0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.document-section {
    margin-bottom: 4rem;
}

.document-section:last-child {
    margin-bottom: 0;
}

.document-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #4fd1c7;
    margin-bottom: 2rem;
    text-align: center;
}

.document-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #4fd1c7;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 209, 199, 0.2);
}

.document-header {
    margin-bottom: 2rem;
}

.document-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.document-status {
    background: #4fd1c7;
    color: #1a202c;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.document-description {
    color: #cbd5e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.document-actions {
    margin-top: 2rem;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.document-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(79, 209, 199, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.document-item:hover {
    border-color: rgba(79, 209, 199, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.document-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #4fd1c7;
    margin: 0 0 1rem 0;
}

.document-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.document-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(79, 209, 199, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.document-links a:hover {
    color: #1a202c;
    background: #4fd1c7;
    border-color: #4fd1c7;
}

.enrollment-steps {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid #4fd1c7;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #4fd1c7;
    color: #1a202c;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #4fd1c7;
    margin: 0 0 0.5rem 0;
}

.step-content p {
    color: #cbd5e0;
    margin: 0;
    line-height: 1.5;
}

/* Button Styles for Forms Page */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #4fd1c7;
    color: #1a202c;
}

.btn-primary:hover {
    background: #38b2ac;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 209, 199, 0.3);
}

.btn-outline {
    background: transparent;
    color: #4fd1c7;
    border: 2px solid #4fd1c7;
}

.btn-outline:hover {
    background: #4fd1c7;
    color: #1a202c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 209, 199, 0.3);
}

/* Mobile Responsiveness for Forms Page */
@media (max-width: 768px) {
    .forms-hero h1 {
        font-size: 2.5rem;
    }
    
    .forms-subtitle {
        font-size: 1.1rem;
    }
    
    .document-card {
        padding: 2rem;
    }
    
    .document-header h2 {
        font-size: 1.8rem;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .document-links {
        flex-direction: column;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}


.waitlist {
    padding: 6rem 0;
    /* REMOVED: background blocking mountain */
    position: relative;
}

/* Premium topographic accent for waitlist section */
/* Removed topographic overlay */

.waitlist h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

/* Removed decorative line */

.waitlist-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.launch-announcement {
    margin: 2rem auto 3rem;
    padding: 2rem;
    background: rgba(79, 209, 199, 0.1);
    border: 2px solid #4fd1c7;
    border-radius: 20px;
    max-width: 600px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.launch-date h3 {
    color: #4fd1c7;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
}

.launch-date p {
    color: #cbd5e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.waitlist-form-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.waitlist-form {
    background: rgba(45, 55, 72, 0.6);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(79, 209, 199, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.waitlist-form.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(79, 209, 199, 0.2);
    border-radius: 12px;
    background: rgba(26, 32, 44, 0.8);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.form-group input:hover {
    border-color: rgba(79, 209, 199, 0.4);
    background: rgba(26, 32, 44, 0.9);
}

.form-group input:focus {
    outline: none;
    border-color: #4fd1c7;
    box-shadow: 0 0 0 3px rgba(79, 209, 199, 0.1);
    background: rgba(26, 32, 44, 1);
}

.form-group input::placeholder {
    color: #a0aec0;
    transition: color 0.3s ease;
}

.form-group input:focus::placeholder {
    color: #cbd5e0;
}

.form-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #4fd1c7 0%, #38b2ac 100%);
    color: #1a202c;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(79, 209, 199, 0.2);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 209, 199, 0.4);
    background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
}

.form-submit:active {
    transform: translateY(-1px);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.thank-you-message {
    display: none;
    text-align: center;
    padding: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.thank-you-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.thank-you-message p {
    font-size: 1.3rem;
    color: #4fd1c7;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 10px rgba(79, 209, 199, 0.3);
}

@media (max-width: 768px) {
    .waitlist {
        padding: 4rem 0;
    }
    
    .waitlist h2 {
        font-size: 2.2rem;
    }
    
    .waitlist-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .waitlist-form-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .waitlist-form {
        padding: 2rem;
    }
    
    .form-group input {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .form-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .thank-you-message p {
        font-size: 1.1rem;
    }
}


.footer {
    background: #0f172a;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(79, 209, 199, 0.1);
    position: relative;
    overflow: hidden;
}

/* Subtle topographic background for footer */
/* Removed topographic background */

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4fd1c7;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4fd1c7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    color: #1a202c;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 209, 199, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(79, 209, 199, 0.1);
    color: #a0aec0;
    position: relative;
    z-index: 2;
}

   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 768px) {
    /* Mobile navigation container */
    .nav {
        position: relative;
    }
    
    /* Mobile dropdown menu */
    .mobile-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: -20px;
        right: -20px;
        background: rgba(26, 32, 44, 0.95);
        border: 1px solid rgba(79, 209, 199, 0.2);
        border-radius: 12px;
        margin-top: 10px;
        padding: 20px 0;
        z-index: 9999;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(20px);
    }
    
    .mobile-dropdown.show {
        display: block;
    }
    
    .mobile-dropdown a {
        display: block;
        padding: 15px 25px;
        color: #e2e8f0;
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px solid rgba(79, 209, 199, 0.1);
        transition: all 0.2s ease;
    }
    
    .mobile-dropdown a:last-child {
        border-bottom: none;
    }
    
    .mobile-dropdown a:hover {
        background: rgba(79, 209, 199, 0.1);
        color: #4fd1c7;
    }
    
    .mobile-dropdown .mobile-cta {
        background: linear-gradient(135deg, #4fd1c7, #38b2ac);
        color: #1a202c;
        margin: 10px 20px;
        border-radius: 8px;
        text-align: center;
        font-weight: 600;
        border-bottom: none;
    }
    
    .mobile-dropdown .mobile-cta:hover {
        background: linear-gradient(135deg, #38b2ac, #319795);
        color: #1a202c;
    }

    .nav-menu li {
        text-align: center !important;
        width: 100% !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(79, 209, 199, 0.1) !important;
    }
    
    .nav-menu li:last-child {
        border-bottom: none !important;
    }
    
    .nav-menu a {
        font-size: 1rem !important;
        padding: 1rem !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        transition: background 0.2s ease !important;
    }
    
    .nav-menu a::after {
        display: none !important;
    }
    
    .nav-menu a:hover {
        background: rgba(79, 209, 199, 0.1) !important;
        color: #4fd1c7 !important;
    }
    
    .nav-cta {
        background: linear-gradient(135deg, #4fd1c7, #38b2ac) !important;
        color: white !important;
        border-radius: 8px !important;
        margin: 0.25rem 0.5rem !important;
    }

    /* Lighter overlays on mobile to show mountain beauty */
    .hero {
        /* NO background overlay - let mountain show through */
        padding-top: 100px !important;
    }

    .why-dpc {
        background: rgba(26, 32, 44, 0.75) !important;
    }

    .about-us {
        background: rgba(26, 32, 44, 0.65) !important;
    }

    .vision {
        background: rgba(26, 32, 44, 0.55) !important;
    }

    .vision .container {
        background: rgba(26, 32, 44, 0.8) !important;
        border-radius: 24px !important;
        padding: 2rem 1rem !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(79, 209, 199, 0.2) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    }

    .pricing {
        background: rgba(26, 32, 44, 0.90) !important;
    }

    .waitlist {
        background: rgba(26, 32, 44, 0.95) !important;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7) !important;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefit-card {
        padding: 2rem;
        background: rgba(26, 32, 44, 0.8) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(79, 209, 199, 0.2) !important;
    }

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

    .provider-card {
        background: rgba(26, 32, 44, 0.8) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(79, 209, 199, 0.2) !important;
    }

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

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

@media (max-width: 480px) {

    .container {
        padding: 0 15px;
    }

    .title-prefix,
    .title-main {
        font-size: 2rem;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7) !important;
    }
    
    .title-sub {
        font-size: 1.2rem;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7) !important;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7) !important;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        background: linear-gradient(135deg, #4fd1c7, #38b2ac) !important;
        box-shadow: 0 4px 15px rgba(79, 209, 199, 0.3) !important;
    }

    .why-dpc h2,
    .about-practice h2,
    .vision h2,
    .pricing h2,
    .waitlist h2 {
        font-size: 2.2rem;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8) !important;
    }

    /* Ensure dark overlays on small mobile */
    .hero {
        background: rgba(26, 32, 44, 0.88) !important;
    }

    .why-dpc {
        background: rgba(26, 32, 44, 0.95) !important;
    }

    .about-us {
        background: rgba(26, 32, 44, 0.78) !important;
    }

    .vision {
        background: rgba(26, 32, 44, 0.68) !important;
    }

    .pricing {
        background: rgba(26, 32, 44, 0.90) !important;
    }

    .waitlist {
        background: rgba(26, 32, 44, 0.95) !important;
    }

    .benefit-card {
        padding: 1.5rem;
        background: rgba(26, 32, 44, 0.8) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(79, 209, 199, 0.2) !important;
    }

    .provider-card {
        padding: 1.5rem;
        background: rgba(26, 32, 44, 0.8) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(79, 209, 199, 0.2) !important;
    }

    .vision .container {
        padding: 1.5rem 1rem !important;
    }
}

/* ============================================================================
   FORMS PAGE
   ============================================================================ */

.forms-page {
    background: #1a202c;
    color: #e2e8f0;
    min-height: 100vh;
}

.forms-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    position: relative;
    overflow: hidden;
}

/* Removed topographic overlay */

.forms-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #4fd1c7;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.forms-subtitle {
    font-size: 1.2rem;
    color: #cbd5e0;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.main-content {
    padding: 4rem 0;
}

.document-section {
    margin-bottom: 4rem;
}

.document-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #4fd1c7;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.document-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(45, 55, 72, 0.6);
    border: 1px solid rgba(79, 209, 199, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.document-item:hover {
    border-color: rgba(79, 209, 199, 0.4);
    background: rgba(45, 55, 72, 0.8);
}

.document-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0;
    flex: 1;
}

.document-link {
    display: flex;
}

.document-links {
    display: flex;
    gap: 1rem;
}

.document-link a,
.document-links a {
    color: #4fd1c7;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(79, 209, 199, 0.3);
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.document-link a:hover,
.document-links a:hover {
    background: rgba(79, 209, 199, 0.2);
    border-color: rgba(79, 209, 199, 0.5);
    transform: translateY(-1px);
}

/* Mobile responsiveness for forms */
@media (max-width: 768px) {
    .forms-hero {
        padding: 6rem 0 3rem;
    }
    
    .forms-hero h1 {
        font-size: 2.5rem;
    }
    
    .forms-subtitle {
        font-size: 1rem;
    }
    
    .document-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
    
    .document-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .document-link a,
    .document-links a {
        text-align: center;
        flex: 1;
    }
}

/* ============================================================================
   ANIMATIONS & EFFECTS
   ============================================================================ */

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

.benefit-card,
.provider-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #4fd1c7;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-bg,
    .mountain-overlay,
    .texture-overlay {
        display: none;
    }
    
    .hero {
        background: #000000;
    }
    
    .benefit-card,
    .provider-card {
        border: 2px solid #4fd1c7;
    }
}

/* ============================================================================
   NEW CLEAN SECTIONS STYLING
   ============================================================================ */

/* Services Section */
.services-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 1rem;
}

.services-subtitle {
    text-align: center;
    color: #4fd1c7;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-category {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(79, 209, 199, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-category:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 209, 199, 0.5);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 30px rgba(79, 209, 199, 0.2);
}

.service-category h3 {
    color: #4fd1c7;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}


.service-category p {
    color: #f7fafc;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Comparison Section */
.comparison-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 1rem;
}

.comparison-subtitle {
    text-align: center;
    color: #cbd5e0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(79, 209, 199, 0.3);
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    background: rgba(79, 209, 199, 0.1);
    border-bottom: 1px solid rgba(79, 209, 199, 0.2);
}

.header-category {
    padding: 1.5rem;
    background: rgba(79, 209, 199, 0.05);
    border-right: 1px solid rgba(79, 209, 199, 0.2);
}

.header-item {
    padding: 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(79, 209, 199, 0.2);
}

.header-item:last-child {
    border-right: none;
}

.header-item h3 {
    color: #4fd1c7;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    border-bottom: 1px solid rgba(79, 209, 199, 0.1);
    transition: background 0.3s ease;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

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

.comparison-category {
    padding: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(79, 209, 199, 0.05);
    border-right: 1px solid rgba(79, 209, 199, 0.2);
    display: flex;
    align-items: center;
}

.comparison-us {
    padding: 1.5rem;
    color: #4fd1c7;
    font-weight: 500;
    border-right: 1px solid rgba(79, 209, 199, 0.1);
    display: flex;
    align-items: center;
}

.comparison-them {
    padding: 1.5rem;
    color: #cbd5e0;
    display: flex;
    align-items: center;
    font-weight: 400;
}

/* Provider Section */
.provider-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.provider-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(79, 209, 199, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
}

.provider-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 209, 199, 0.5);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 35px rgba(79, 209, 199, 0.25);
}

.provider-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4fd1c7, #38b2ac);
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(79, 209, 199, 0.3);
}

.provider-card h4 {
    color: #4fd1c7;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.provider-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.provider-bio {
    color: #f7fafc;
    line-height: 1.6;
    text-align: left;
    margin: 0;
    font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-category {
        padding: 1.5rem;
    }
    
    .service-category h3 {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .comparison-table {
        margin: 0 1rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: rgba(79, 209, 199, 0.2);
    }
    
    .comparison-category {
        grid-column: 1 / -1;
        background: rgba(79, 209, 199, 0.15);
        border-right: none;
        border-bottom: 1px solid rgba(79, 209, 199, 0.3);
        justify-content: center;
        font-size: 0.95rem;
        padding: 1rem;
        margin-bottom: 1px;
    }
    
    .comparison-us {
        background: rgba(26, 32, 44, 0.95);
        border-right: none;
        justify-content: flex-start;
        padding: 1rem;
        font-size: 0.9rem;
        position: relative;
    }
    
    .comparison-us::before {
        content: "✓ ";
        color: #4fd1c7;
        font-weight: bold;
        margin-right: 0.5rem;
    }
    
    .comparison-them {
        background: rgba(45, 55, 72, 0.95);
        border-right: none;
        justify-content: flex-start;
        padding: 1rem;
        font-size: 0.9rem;
        position: relative;
    }
    
    .comparison-them::before {
        content: "⚠ ";
        color: #a0aec0;
        font-weight: bold;
        margin-right: 0.5rem;
    }
    
    .comparison-header {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: rgba(79, 209, 199, 0.2);
    }
    
    .header-category {
        display: none;
    }
    
    .header-item {
        border-right: none;
        border-bottom: none;
        padding: 1rem;
        font-size: 0.95rem;
        background: rgba(26, 32, 44, 0.9);
    }
    
    .header-item h3 {
        font-size: 1rem;
        margin: 0;
    }
    
    .provider-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .provider-card {
        padding: 2rem 1.5rem;
    }
}

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