/* Quantel Data - Simplified Main Stylesheet */
/* Mobile-first responsive design for 2-product launch */
/* Updated: Oct 28, 2025 - Comprehensive styling fixes applied */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility - Skip Links */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #1a365d;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 4px;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Typography - Mobile First */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a365d;
}

/* Mobile-first font sizes */
h1 {
    font-size: 1.875rem; /* 30px */
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem; /* 24px */
    margin-bottom: 1rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.25rem; /* 20px */
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

a {
    color: #2b6cb0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2c5282;
    text-decoration: underline;
}

/* Layout Components - Mobile Optimized */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Mobile-first section padding */
.section {
    padding: 2.5rem 0;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

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

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

/* Better mobile spacing */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .grid {
        gap: 1rem;
    }
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
}

.logo a {
    color: #1a365d;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-img {
        height: 32px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 28px;
        max-width: 120px;
    }
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: #4a5568;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2b6cb0;
    text-decoration: none;
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4a5568;
}

/* Hero Section - Mobile Optimized */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.hero h1 {
    color: white;
    font-size: 2rem; /* Smaller on mobile */
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.125rem; /* 18px - better mobile readability */
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.95);
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-stats .stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Mobile-specific hero adjustments */
@media (max-width: 480px) {
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero h1 {
        font-size: 1.75rem; /* 28px */
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* CTA Buttons - Mobile Optimized */
.cta-button {
    display: inline-block;
    background-color: #48bb78;
    color: white;
    padding: 0.875rem 1.5rem; /* Slightly smaller for mobile */
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem; /* 14px */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    min-height: 44px; /* Touch target minimum */
    min-width: 44px;
}

.cta-button:hover {
    background-color: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72,187,120,0.3);
    text-decoration: none;
    color: white;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: #2b6cb0;
}

/* Secondary button for light backgrounds */
.section .cta-button.secondary,
.container .cta-button.secondary {
    background-color: transparent;
    border: 2px solid #2b6cb0;
    color: #2b6cb0;
}

.section .cta-button.secondary:hover,
.container .cta-button.secondary:hover {
    background-color: #2b6cb0;
    color: white;
}

/* Mobile CTA button styling */
@media (max-width: 768px) {
    .cta-button {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-button:last-child {
        margin-bottom: 0;
    }
    
    /* Button groups on mobile */
    .hero .cta-button {
        margin-right: 0 !important;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Card Components - Mobile Optimized */
.card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card h3 {
    color: #1a365d;
    margin-bottom: 0.75rem;
    font-size: 1.125rem; /* 18px */
}

.card p {
    color: #4a5568;
    font-size: 0.875rem; /* 14px */
    line-height: 1.5;
}

/* Mobile card adjustments */
@media (max-width: 480px) {
    .card {
        padding: 1.25rem;
        border-radius: 8px;
    }
    
    .card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .card p {
        font-size: 0.875rem;
    }
}

/* Product Cards - Mobile Optimized */
.product-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    border-color: #48bb78;
}

.product-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: white;
}

/* Mobile product card adjustments */
@media (max-width: 768px) {
    .product-card {
        padding: 1.5rem;
    }
    
    .product-card h2 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .product-card h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .product-card {
        padding: 1.25rem;
        border-radius: 8px;
    }
    
    .product-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .product-card h2 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
}

/* Features Section */
.features {
    background-color: #f7fafc;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: #e6fffa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #319795;
    flex-shrink: 0;
}

/* Value Propositions */
.value-props {
    background-color: #1a365d;
    color: white;
}

.value-props h2,
.value-props h3 {
    color: white;
}

.value-props p {
    color: rgba(255,255,255,0.9);
}

/* Cards within value-props section need proper contrast */
.value-props .card h3 {
    color: #1a365d !important;
}

.value-props .card p {
    color: #4a5568 !important;
}

/* Stats Section - Mobile Optimized */
.stats {
    background-color: #2d3748;
    color: white;
    text-align: center;
}

.stat-item {
    padding: 1rem 0.5rem;
}

.stat-item h3 {
    color: white;
    font-size: 2rem; /* Smaller on mobile */
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem; /* 14px */
    line-height: 1.4;
}

/* Mobile stats adjustments */
@media (max-width: 768px) {
    .stats .grid {
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 0.75rem 0.25rem;
    }
    
    .stat-item h3 {
        font-size: 1.75rem;
    }
    
    .stat-item p {
        font-size: 0.8125rem; /* 13px */
    }
}

@media (max-width: 480px) {
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .stat-item p {
        font-size: 0.75rem; /* 12px */
    }
}

/* Geographic Coverage */
.geo-coverage {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.state-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.state-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.state-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Footer - Mobile Optimized */
.footer {
    background-color: #1a2332;
    color: #ffffff;
    padding: 2rem 0 1rem;
}

/* Ensure company name is highly visible */
.footer-section h3 {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.025em;
}

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



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

.footer-section p {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #d1d5db;
    font-size: 0.875rem;
    padding: 0.25rem 0;
    display: block;
    min-height: 32px;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #60a5fa;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #4b5563;
    padding-top: 1rem;
    text-align: center;
    color: #d1d5db;
    font-size: 0.8125rem;
    font-weight: 500;
}

.contact-info p {
    color: #ffffff !important;
    font-weight: 500;
}

/* Mobile footer adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section h4 {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
    }
    
    .footer-section ul li a {
        color: #d1d5db !important;
        font-weight: 400;
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        color: #d1d5db !important;
        font-weight: 400;
        font-size: 0.75rem;
    }
}

@media (min-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

/* Form Styles - Mobile Optimized */
.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #4a5568;
    font-size: 0.875rem;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    min-height: 44px; /* Touch target minimum */
    -webkit-appearance: none;
    appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

/* Mobile form improvements */
@media (max-width: 768px) {
    .form-field input,
    .form-field textarea,
    .form-field select {
        padding: 1rem;
        font-size: 1rem; /* Prevents zoom on iOS */
        border-radius: 6px;
    }
    
    .form-field textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    /* Better touch targets */
    .form-field input[type="checkbox"],
    .form-field input[type="radio"] {
        min-height: 20px;
        min-width: 20px;
    }
}

/* Improved select styling for mobile */
.form-field select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.hidden {
    display: none;
}

/* Mobile-specific utilities */
.mobile-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.touch-target {
    min-height: 44px;
    min-width: 44px;
}

/* Hide on mobile */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Show only on mobile */
.show-mobile {
    display: none;
}

@media (max-width: 767px) {
    .show-mobile {
        display: block;
    }
    
    .mobile-stack {
        display: flex;
    }
    
    .mobile-center {
        text-align: center;
    }
}

/* Enhanced Responsive Design */

/* Small tablets and large phones */
@media (min-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.25rem; /* 36px */
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.375rem;
    }
}

/* Tablets */
@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nav-menu {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.75rem; /* 44px */
    }
    
    .section {
        padding: 3.5rem 0;
    }
    
    .card {
        padding: 2rem;
    }
    
    .product-card {
        padding: 2.5rem;
    }
    
    .product-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .stat-item p {
        font-size: 1.1rem;
    }
    
    /* Desktop font sizes */
    h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Large tablets and small desktops */
@media (min-width: 992px) {
    .hero h1 {
        font-size: 3.25rem; /* 52px */
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .section {
        padding: 4rem 0;
    }
}

/* Large desktops */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero h1 {
        font-size: 3.5rem; /* 56px */
    }
    
    .hero {
        padding: 6rem 0;
    }
}

/* Extra large screens */
@media (min-width: 1200px) {
    .hero h1 {
        font-size: 3.75rem; /* 60px */
    }
}

/* SEO and Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* Mobile-specific enhancements */
@media (max-width: 767px) {
    /* Improve text readability on mobile */
    body {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    p {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #4a5568;
    }
    
    /* Ensure good contrast on all text elements */
    h1, h2, h3, h4, h5, h6 {
        color: #1a365d !important;
    }
    
    /* Better visibility for links */
    a {
        color: #2b6cb0 !important;
        font-weight: 500;
    }
    
    a:hover {
        color: #2c5282 !important;
    }
    
    /* Better spacing for mobile content */
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Optimize cards for mobile viewing */
    .card, .product-card {
        margin-bottom: 1rem;
    }
    
    /* Mobile-friendly lists */
    ul, ol {
        padding-left: 1.25rem;
    }
    
    li {
        margin-bottom: 0.25rem;
    }
    
    /* Mobile navigation improvements */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    /* Better mobile form experience */
    .form-field {
        margin-bottom: 1.25rem;
    }
    
    /* Mobile-optimized feature icons */
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    /* Stack elements vertically on very small screens */
    @media (max-width: 360px) {
        .container {
            padding: 0 0.5rem;
        }
        
        .hero h1 {
            font-size: 1.5rem;
        }
        
        .hero p {
            font-size: 0.875rem;
        }
        
        .cta-button {
            padding: 0.75rem 1rem;
            font-size: 0.8125rem;
        }
    }
}

/* Dark mode considerations for mobile - Improved contrast */
@media (prefers-color-scheme: dark) and (max-width: 767px) {
    .card, .product-card {
        background-color: #1a202c;
        color: white;
        border: 1px solid #4a5568;
    }
    
    .card h3, .product-card h2, .product-card h3 {
        color: #f7fafc;
    }
    
    .card p, .product-card p {
        color: #e2e8f0;
    }
}

/* Override dark mode for better readability - Force light mode on cards */
@media (max-width: 767px) {
    .card, .product-card {
        background-color: white !important;
        color: #333 !important;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    .card h3, .product-card h2, .product-card h3 {
        color: #1a365d !important;
    }
    
    .card p, .product-card p {
        color: #4a5568 !important;
    }
    
    /* Improve button contrast on mobile */
    .cta-button {
        background-color: #2b6cb0 !important;
        color: white !important;
        font-weight: 600 !important;
        border: none !important;
    }
    
    .cta-button:hover {
        background-color: #2c5282 !important;
        color: white !important;
    }
    
    .cta-button.secondary {
        background-color: transparent !important;
        border: 2px solid #2b6cb0 !important;
        color: #2b6cb0 !important;
    }
    
    .cta-button.secondary:hover {
        background-color: #2b6cb0 !important;
        color: white !important;
    }
    
    /* Force readable colors for any inline styles */
    [style*="color: #666"] {
        color: #4a5568 !important;
    }
    
    [style*="color: #777"] {
        color: #4a5568 !important;
    }
    
    [style*="color: #888"] {
        color: #4a5568 !important;
    }
    
    [style*="color: #999"] {
        color: #4a5568 !important;
    }
    
    [style*="color: #aaa"],
    [style*="color: #bbb"],
    [style*="color: #ccc"] {
        color: #4a5568 !important;
    }
    
    /* Ensure footer links are always readable */
    .footer a {
        color: #cbd5e0 !important;
    }
    
    .footer a:hover {
        color: #f7fafc !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cta-button {
        border: 2px solid currentColor;
    }
    
    .card, .product-card {
        border: 1px solid #4a5568;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .card:hover,
    .product-card:hover,
    .state-card:hover {
        transform: none;
    }
}

/* Pricing Page Specific Styles */
.pricing-section,
.pricing-tables {
    background-color: #f7fafc;
    padding: 3rem 0;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #48bb78;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1.5rem;
}

.pricing-header h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: #4a5568;
    font-size: 1rem;
    margin: 0;
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.tier:hover {
    border-color: #48bb78;
    background-color: #f0fff4;
}

.tier.popular {
    border-color: #48bb78;
    background-color: #f0fff4;
    border-width: 2px;
}

.tier.enterprise {
    border-color: #667eea;
    background-color: #f0f4ff;
}

.tier-badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: #48bb78;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tier-volume {
    font-weight: 600;
    color: #1a365d;
    flex: 1;
}

.tier-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #48bb78;
    text-align: center;
    flex: 1;
}

.price-unit {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4a5568;
}

.tier-total {
    font-weight: 600;
    color: #4a5568;
    text-align: right;
    flex: 1;
}

.custom-quote {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.custom-quote h4 {
    color: white;
    margin-bottom: 1rem;
}

.custom-quote p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.coming-soon {
    opacity: 0.6;
    position: relative;
}

.coming-soon-badge {
    background: #e53e3e;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.pricing-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.pricing-features .feature {
    background: rgba(72, 187, 120, 0.1);
    color: #48bb78;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Mobile pricing adjustments */
@media (max-width: 768px) {
    .pricing-grid {
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-tiers {
        gap: 0.75rem;
    }
    
    .tier {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 0.5rem;
    }
    
    .tier-volume,
    .tier-price,
    .tier-total {
        flex: none;
    }
    
    .tier-price {
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .pricing-features {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-features .feature {
        text-align: center;
        min-width: 200px;
    }
}

/* Custom Packages Section */
.custom-packages {
    background-color: #f7fafc;
    padding: 3rem 0;
}

.custom-packages h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 2rem;
}

.custom-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.custom-option {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.custom-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.custom-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.custom-option h3 {
    color: #1a365d;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.custom-option p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.custom-pricing {
    font-size: 1.125rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    display: inline-block;
}

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

.custom-features li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.custom-features li:before {
    content: "✓";
    color: #48bb78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Desktop pricing layout */
@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .pricing-card {
        padding: 2.5rem;
    }
    
    .custom-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Contact Page Specific Styles */
.contact-methods {
    background-color: #f7fafc;
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #48bb78;
}

.contact-card.primary {
    border-color: #48bb78;
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.05), rgba(72, 187, 120, 0.1));
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    color: #1a365d;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.contact-description {
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.contact-hours {
    color: #48bb78;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.contact-form-section {
    background-color: white;
    padding: 3rem 0;
}

/* Contact responsive layout */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Sample Request Page Specific Styles */
.sample-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.sample-benefits .benefit {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.sample-form-section {
    background-color: #f7fafc;
    padding: 3rem 0;
}

.sample-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.sample-features {
    background-color: white;
    padding: 3rem 0;
}

.sample-process {
    background-color: #f7fafc;
    padding: 3rem 0;
}

.sample-testimonials {
    background-color: #1a365d;
    color: white;
    padding: 3rem 0;
}

.sample-testimonials h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .sample-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .sample-benefits .benefit {
        text-align: center;
        min-width: 200px;
    }
}

/* API Pricing Section */
.api-pricing {
    background-color: white;
    padding: 3rem 0;
}

.api-pricing h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 2rem;
}

.api-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.api-plan {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.api-plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.api-plan.featured {
    border-color: #48bb78;
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.05), rgba(72, 187, 120, 0.1));
}

.api-plan.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #48bb78;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.api-plan h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.api-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: #4a5568;
}

.api-limits {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.api-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
}

.api-features li {
    color: #4a5568;
    margin-bottom: 0.75rem;
    padding-left: 0;
    font-size: 0.875rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
}

.btn-outline {
    background-color: transparent;
    border-color: #667eea;
    color: #667eea;
}

.btn-outline:hover {
    background-color: #667eea;
    color: white;
}

.btn-primary {
    background-color: #48bb78;
    color: white;
    border-color: #48bb78;
}

.btn-primary:hover {
    background-color: #38a169;
    border-color: #38a169;
}

/* Volume Discount Structure */
.discount-table {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.discount-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.discount-header h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.discount-header p {
    color: #4a5568;
    margin: 0;
}

.discount-tiers {
    display: grid;
    gap: 1rem;
}

.discount-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.discount-tier:hover {
    border-color: #48bb78;
    background-color: #f0fff4;
}

.discount-tier.highlighted {
    border-color: #48bb78;
    background-color: #f0fff4;
    border-width: 2px;
}

.tier-range {
    font-weight: 600;
    color: #1a365d;
    flex: 1;
}

.tier-discount {
    font-size: 1.125rem;
    font-weight: 700;
    color: #48bb78;
    text-align: center;
    flex: 1;
}

.tier-description {
    color: #4a5568;
    text-align: right;
    flex: 1;
    font-size: 0.875rem;
}

/* About Page Specific Styles */
.our-story {
    background-color: #f7fafc;
    padding: 3rem 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-text h2 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-intro {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.story-timeline {
    text-align: left;
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #48bb78;
    align-items: flex-start;
}

.timeline-year {
    font-weight: 700;
    color: #48bb78;
    font-size: 1.25rem;
    min-width: 80px;
    margin-right: 1.5rem;
}

.timeline-content h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.timeline-content p {
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

.timeline-content {
    flex: 1;
}

/* Mission & Values Section */
.mission-values {
    background-color: white;
    padding: 3rem 0;
}

.mission-values h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 2rem;
}

.mission-values-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
    grid-template-columns: 1fr;
}

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

.mission-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.mission-card:hover {
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.1);
    transform: translateY(-2px);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.mission-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.mission-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

.mission-card ul {
    text-align: left;
    margin-top: 1rem;
    padding-left: 1rem;
}

.mission-card li {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

/* Why Choose Us / Advantages Section */
.why-choose-us {
    background-color: #f7fafc;
    padding: 4rem 0;
}

.why-choose-us h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 3rem;
}

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

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

@media (min-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advantage-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    transform: translateY(-3px);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.advantage-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.advantage-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advantage-card ul {
    margin: 0;
    padding-left: 1rem;
}

.advantage-card li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Certifications Section */
.certifications {
    background-color: white;
    padding: 4rem 0;
}

.certifications h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 3rem;
}

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

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

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

.cert-item {
    background: #f7fafc;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.cert-item:hover {
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.1);
    transform: translateY(-2px);
}

.cert-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.cert-item h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cert-item p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Business Info Section (Contact Page) */
.business-info {
    background-color: #f7fafc;
    padding: 4rem 0;
}

.business-info-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

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

.business-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.business-card:hover {
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.1);
    transform: translateY(-2px);
}

.business-card h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hours-list {
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.day {
    font-weight: 500;
    color: #1a365d;
}

.time {
    color: #4a5568;
}

.hours-note {
    color: #718096;
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    display: flex;
    align-items: center;
}

.why-choose .benefit {
    margin-bottom: 1.5rem;
}

.why-choose .benefit strong {
    display: block;
    color: #1a365d;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.why-choose .benefit p {
    color: #4a5568;
    margin: 0;
    font-size: 0.9rem;
}

.values-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #48bb78;
    background: white;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    color: #1a365d;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Our Team Section */
.our-team {
    background-color: #f7fafc;
    padding: 3rem 0;
}

.our-team h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: 600;
}

.team-member h3 {
    color: #1a365d;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #48bb78;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.member-bio {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.member-expertise {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.member-expertise li {
    background: rgba(72, 187, 120, 0.1);
    color: #48bb78;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Our Expertise Section */
.our-expertise {
    background-color: white;
    padding: 3rem 0;
}

.our-expertise h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 2rem;
}

.expertise-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #48bb78;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: white;
}

.expertise-card h3 {
    color: #1a365d;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.expertise-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.expertise-features {
    list-style: none;
    padding: 0;
}

.expertise-features li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
}

.expertise-features li:before {
    content: "✓";
    color: #48bb78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Data Quality Section */
.data-quality {
    background-color: #1a365d;
    color: white;
    padding: 3rem 0;
}

.data-quality h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.data-quality p {
    color: rgba(255,255,255,0.9);
}

.quality-metrics {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f7fafc;
    padding: 4rem 0;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    color: #1a365d;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #48bb78;
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
    background-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-group .form-help {
    font-size: 0.75rem;
    color: #718096;
    margin-top: 0.25rem;
}

.contact-form .btn {
    align-self: flex-start;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Contact Info Sidebar */
.contact-info {
    background: #1a365d;
    border-radius: 12px;
    padding: 2rem;
    color: white;
    margin-top: 2rem;
}

.contact-info h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info strong {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #68d391;
    text-decoration: none;
}

.contact-info a:hover {
    color: #9ae6b4;
    text-decoration: underline;
}

/* Form Validation States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #48bb78;
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

.form-error {
    color: #e53e3e;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.form-success {
    color: #48bb78;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Responsive adjustments for about page */
@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-metrics {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row.full-width {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-form-container {
        padding: 4rem;
    }
}

/* Product Features Section */
.product-features {
    background-color: white;
    padding: 3rem 0;
}

.product-features h2 {
    text-align: center;
    color: #1a365d;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #48bb78;
    background: white;
}

.feature-icon {
    font-size: 2.5rem;
    color: #48bb78;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: #1a365d;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1rem;
}

.feature-list li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
}

.feature-list li:before {
    content: "✓";
    color: #48bb78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Product details responsive grid */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Additional missing utility classes */
.section {
    padding: 3rem 0;
}

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

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

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

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

/* Form styling improvements */
.form-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.form-header h2 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #4a5568;
    margin: 0;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    color: #1a365d;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-row {
    display: grid;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #4a5568;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

/* Mobile responsive adjustments */
@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .api-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .discount-tier {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .api-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .discount-tiers {
        gap: 1.5rem;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-button,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        color: black;
        background: white;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .section {
        padding: 1rem 0;
    }
    
    .card, .product-card {
        border: 1px solid #ccc;
        break-inside: avoid;
        margin-bottom: 1rem;
    }
}

/* State Products Section */
.state-products {
    background-color: #f8fafc;
    padding: 3rem 0;
}

.state-products h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}

.pricing-note {
    background-color: #e0f2fe;
    border: 1px solid #0284c7;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.pricing-note p {
    margin: 0;
    color: #0f172a;
}

/* Responsive adjustments for products grid */
@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

/* Legal Content Styling */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-content h2 {
    color: #1a365d;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #2d3748;
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.25rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: #4a5568;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: #2d3748;
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
    padding: 4rem 0;
    margin: 3rem 0 0 0;
    color: white;
}

.about-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.about-cta p {
    color: #e2e8f0;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.about-cta .cta-actions {
    margin-bottom: 1rem;
}

.about-cta .cta-actions a {
    margin: 0 0.5rem;
}

.about-cta .cta-note {
    color: #cbd5e0;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Contact FAQ Section */
.contact-faq {
    background: #f7fafc;
    padding: 3rem 0;
    margin: 2rem 0;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a365d;
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Alternative Contact Section */
.alternative-contact {
    padding: 3rem 0;
    background: white;
}

.alternative-contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a365d;
}

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

.alt-option {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.alt-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.alt-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.alt-option h3 {
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.alt-option p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.alt-option .btn {
    margin-top: auto;
}

/* Coming Soon Section */
.coming-soon-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    margin: 3rem 0;
}

.coming-soon-card {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.coming-soon-badge {
    background: #e53e3e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.coming-soon-card h2 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.coming-soon-features {
    margin: 2rem 0;
}

.coming-soon-features .feature {
    text-align: left;
    padding: 1rem;
}

.coming-soon-features .feature h4 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.coming-soon-cta {
    margin-top: 2rem;
}

.waitlist-note {
    margin-top: 0.5rem;
    color: #4a5568;
    font-size: 0.875rem;
}

/* Multi-State Section */
.multi-state-section {
    background: #f7fafc;
    padding: 3rem 0;
    margin: 2rem 0;
}

.multi-state-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1a365d;
}

.multi-state-section > .container > p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: #4a5568;
}

.multi-state-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.multi-state-benefits .benefit {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #2d3748;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.multi-state-section .cta-section {
    text-align: center;
    margin-top: 2rem;
}

.multi-state-section .cta-section a {
    margin: 0 0.5rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: #f8fafc;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb nav {
    display: flex;
    align-items: center;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #64748b;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #cbd5e0;
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
    color: #1f2937;
    font-weight: 500;
}

/* Bundle Selector Styles */
.bundle-selector {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.selector-header {
    text-align: center;
    margin-bottom: 2rem;
}

.selector-header h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.selector-header p {
    color: #64748b;
    font-size: 1rem;
}

.quick-bundles {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.bundle-preset {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.bundle-preset:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

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

.state-selector {
    position: relative;
}

.state-card {
    display: block;
    cursor: pointer;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.2s ease;
    position: relative;
    height: 100%;
}

.state-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.state-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.state-card input[type="checkbox"]:checked + .card-content {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.state-card input[type="checkbox"]:checked + .card-content::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.card-content {
    position: relative;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.2s ease;
}

.state-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.state-emoji {
    font-size: 1.5rem;
}

.state-name {
    font-size: 1.25rem;
    font-weight: 600;
    flex: 1;
    margin-left: 0.5rem;
}

.state-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
}

.state-card input[type="checkbox"]:checked + .card-content .state-price {
    color: #fff;
}

.state-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.address-count {
    font-weight: 600;
    font-size: 0.9rem;
}

.coverage {
    font-size: 0.8rem;
    opacity: 0.8;
}

.bundle-summary {
    background: white;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.summary-header h4 {
    color: #1a365d;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.selected-items {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.selected-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 600;
    color: #1a365d;
}

.item-details {
    font-size: 0.9rem;
    color: #64748b;
}

.item-price {
    font-weight: 600;
    color: #059669;
}

.pricing-breakdown {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.price-row.total {
    border-top: 2px solid #e2e8f0;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    font-size: 1.25rem;
}

.price-row.discount {
    color: #dc2626;
}

.discount-amount {
    font-weight: 600;
}

.savings-highlight {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}

.savings-icon {
    margin-right: 0.5rem;
}

.bundle-checkout {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bundle-checkout:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.bundle-checkout:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.traditional-products {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

/* Mobile Responsiveness for Bundle Selector */
@media (max-width: 768px) {
    .bundle-selector {
        padding: 1.5rem;
    }
    
    .quick-bundles {
        flex-direction: column;
        align-items: center;
    }
    
    .bundle-preset {
        width: 100%;
        max-width: 300px;
    }
    
    .selection-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .state-header {
        flex-wrap: wrap;
    }
    
    .state-name {
        margin-left: 0.5rem;
        margin-right: auto;
    }
    
    .bundle-summary {
        padding: 1.5rem;
    }
    
    .price-row {
        font-size: 0.9rem;
    }
    
    .price-row.total {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .state-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .state-name {
        margin: 0;
    }
    
    .state-price {
        align-self: flex-end;
    }
}

/* Enhanced Bundle Selector Styles */
.selector-subtitle {
    font-size: 1.1rem;
    color: #475569;
    margin: 0.5rem 0 1.5rem;
    font-weight: 500;
}

.bundle-summary {
    transition: all 0.3s ease;
    transform: translateY(-10px);
    opacity: 0;
}

.bundle-summary[style*="block"] {
    transform: translateY(0);
    opacity: 1;
}

.bundle-benefits {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border: 1px solid #cbd5e1;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1e293b;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.2rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.selection-guide {
    margin: 1rem 0 0;
    padding: 1rem;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    color: #92400e;
    font-size: 0.95rem;
}

.bundle-info-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

/* Mobile Responsiveness for Enhanced Bundle */
@media (max-width: 768px) {
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .bundle-benefits {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
    
    .selector-subtitle {
        font-size: 1rem;
    }
    
    .bundle-info-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
}

/* Waitlist Modal */
.waitlist-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.waitlist-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.waitlist-modal-content {
    position: relative;
    background: white;
    max-width: 500px;
    margin: 5% auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.waitlist-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.waitlist-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.waitlist-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.waitlist-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.waitlist-modal-body {
    padding: 2rem;
}

.waitlist-modal-body p {
    margin: 0 0 1.5rem 0;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.5;
}

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

.waitlist-modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.waitlist-modal .form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.waitlist-modal .form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.waitlist-modal .btn {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}

.waitlist-modal .btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
}

.waitlist-modal .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .waitlist-modal-content {
        margin: 2rem 1rem;
        max-width: none;
    }
    
    .waitlist-modal-header,
    .waitlist-modal-body {
        padding: 1.5rem;
    }
}