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

:root {
    /* Solar Color Palette */
    --primary-blue: #1e3a8a;
    --primary-blue-light: #3b82f6;
    --primary-blue-dark: #1e40af;
    --solar-green: #059669;
    --solar-green-light: #10b981;
    --solar-green-dark: #047857;
    --urgent-orange: #ea580c;
    --urgent-red: #dc2626;
    --warning-yellow: #f59e0b;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    --solar-gradient: linear-gradient(135deg, var(--solar-green) 0%, var(--solar-green-light) 100%);
    --urgent-gradient: linear-gradient(135deg, var(--urgent-orange) 0%, var(--urgent-red) 100%);
    --hero-gradient: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 50%, var(--solar-green) 100%);
    
    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-light: #6b7280;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-gray: #f1f5f9;
    --bg-blue: #eff6ff;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease-out;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* Urgent Notification Bar */
.urgent-notification {
    background: var(--urgent-gradient);
    color: var(--text-white);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    font-weight: 600;
    animation: urgentPulse 2s infinite;
}

@keyframes urgentPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.urgent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
}

.countdown-inline {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 3rem;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: 2rem;
}

.nav-logo i {
    font-size: 1.5rem;
    color: var(--solar-green);
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-main {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--solar-gradient);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button-secondary-nav {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
    min-height: 44px;
    flex-shrink: 0;
}

.cta-button-secondary-nav:hover {
    background: var(--primary-blue);
    color: var(--text-white);
}

.cta-button-nav {
    background: var(--urgent-gradient);
    border: none;
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    animation: ctaPulse 3s infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.cta-button-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button-nav {
    font-size: 0.875rem;
    padding: 0.6rem 1.2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0 4rem;
    margin-top: 1rem;
    background: 
        linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(5, 150, 105, 0.75) 100%),
        url('../images/hero-solar-home-clean.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(5, 150, 105, 0.1) 25%, 
        transparent 50%, 
        rgba(234, 88, 12, 0.1) 75%, 
        transparent 100%);
    animation: heroShimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroShimmer {
    0%, 100% { opacity: 0.3; transform: translateX(-100%); }
    50% { opacity: 0.6; transform: translateX(100%); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--urgent-gradient);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    animation: urgentBlink 2s infinite;
}

@keyframes urgentBlink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.7; }
}

.hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Countdown Timer */
.countdown-timer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--urgent-orange);
    position: relative;
    overflow: hidden;
}

.countdown-timer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--urgent-orange), var(--urgent-red), var(--warning-yellow), var(--urgent-orange));
    background-size: 300% 300%;
    border-radius: var(--radius-xl);
    z-index: -1;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.countdown-text {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 1rem;
    border-radius: var(--radius-md);
    min-width: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    animation: timeUnitPulse 2s ease-in-out infinite;
}

.time-unit::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: timeUnitShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes timeUnitPulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-md); }
    50% { transform: scale(1.05); box-shadow: var(--shadow-lg); }
}

@keyframes timeUnitShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(0%) translateY(0%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.time-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    position: relative;
    z-index: 2;
    animation: numberFlip 1s ease-in-out;
}

@keyframes numberFlip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.time-label {
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.25rem;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.deadline-text {
    text-align: center;
    color: var(--urgent-red);
    font-weight: 700;
    font-size: 1.125rem;
    animation: deadlineGlow 2s ease-in-out infinite;
}

@keyframes deadlineGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(220, 38, 38, 0.5); }
    50% { text-shadow: 0 0 20px rgba(220, 38, 38, 0.8), 0 0 30px rgba(220, 38, 38, 0.6); }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-button-primary {
    background: var(--urgent-gradient);
    border: none;
    color: var(--text-white);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    text-align: center;
    justify-content: center;
    min-height: 44px;
}

.cta-button-secondary:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    transform: translateY(-2px);
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    font-weight: 600;
    background: rgba(5, 150, 105, 0.2);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 150, 105, 0.3);
}

/* Hero Form Container */
.hero-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem 2rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 2px solid var(--solar-green);
    position: relative;
    overflow: visible;
    min-height: 200px;
}

.hero-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.1), transparent);
    animation: formShimmer 3s ease-in-out infinite;
}

@keyframes formShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.form-intro {
    text-align: center;
    margin-bottom: 1rem;
}

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.progressive-form {
    position: relative;
}

.form-step {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.form-step.active {
    display: block;
}

.form-step .form-group {
    display: block;
}

.step-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.form-step input,
.form-step select {
    width: 100% !important;
    padding: 1rem 1.5rem !important;
    border: 2px solid #e5e7eb !important;
    border-radius: var(--radius-md);
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
    transition: var(--transition);
    box-sizing: border-box !important;
}

.form-step input:focus,
.form-step select:focus {
    outline: none;
    border-color: var(--solar-green);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.next-btn {
    background: var(--solar-gradient);
    border: none;
    color: var(--text-white);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    min-height: 60px;
}

.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.progress-container {
    display: none !important;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--solar-gradient);
    width: 20%;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: flex-start;
    align-items: center;
}

.hero-image-container {
    width: 100%;
}

.consultation-preview {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.video-frame {
    width: 100%;
}

.video-header {
    background: #f3f4f6;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.video-controls {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.video-title {
    font-weight: 600;
    color: var(--text-primary);
}

.video-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.consultant,
.homeowner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
}

.consultant-avatar,
.homeowner-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.25rem;
}

.consultant-info,
.homeowner-info {
    display: flex;
    flex-direction: column;
}

.consultant-info strong,
.homeowner-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

.consultant-info span,
.homeowner-info span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-white);
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--solar-green);
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.badge-text span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Two-Path Section */
.consultation-paths {
    padding: 6rem 0;
    background: var(--bg-light);
}

.paths-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.paths-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: start;
}

.path-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.path-card.recommended {
    border-color: var(--solar-green);
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}

.path-card.recommended:hover {
    transform: scale(1.03);
}

.path-card.secondary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.path-badge {
    position: absolute;
    top: -10px;
    right: 2rem;
    background: var(--solar-gradient);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.path-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2rem;
}

.path-card.recommended .path-icon {
    background: var(--solar-gradient);
}

.path-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.path-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.path-benefits {
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.benefit i {
    color: var(--solar-green);
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

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

.path-button {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.path-button.primary {
    background: var(--solar-gradient);
    border: none;
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.path-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.path-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-size: 0.875rem;
    text-align: center;
    justify-content: center;
    min-height: 44px;
    white-space: normal;
    line-height: 1.2;
    padding: 0.75rem 1rem;
}

.path-button.secondary:hover {
    background: var(--primary-blue);
    color: var(--text-white);
}

.path-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* Social Proof Section */
.social-proof {
    padding: 6rem 0;
    background: var(--bg-white);
}

.social-proof-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--bg-blue);
    border-radius: var(--radius-xl);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
}

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

.testimonial {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--solar-green);
    position: relative;
}

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

.stars {
    display: flex;
    gap: 0.25rem;
    color: var(--warning-yellow);
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.savings-highlight {
    background: var(--solar-gradient);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-block;
}

.local-expertise {
    background: var(--bg-blue);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.local-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
}

.local-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.local-benefits {
    margin-bottom: 2rem;
}

.local-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.local-benefit i {
    color: var(--primary-blue);
    font-size: 1.25rem;
    width: 20px;
}

.powered-by {
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--solar-green);
}

.powered-by strong {
    color: var(--solar-green);
}

.illinois-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container {
    text-align: center;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.map-container i {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.coverage-text strong {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.coverage-text span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Urgency Section */
.urgency-section {
    background: var(--urgent-gradient);
    color: var(--text-white);
    padding: 4rem 0;
}

.urgency-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.urgency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.urgency-text h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.urgency-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.money-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.125rem;
}

.countdown-timer-large {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.time-unit-large {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 100px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: largePulse 3s ease-in-out infinite;
}

.time-unit-large::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent, rgba(255, 255, 255, 0.3));
    border-radius: var(--radius-md);
    animation: borderFlow 2s linear infinite;
    z-index: -1;
}

@keyframes largePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes borderFlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.time-number-large {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6); }
}

.time-label-large {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    display: block;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Booking Section */
.booking {
    padding: 6rem 0;
    background: var(--bg-light);
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.booking-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking-features {
    margin-bottom: 2rem;
}

.booking-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.booking-feature i {
    color: var(--solar-green);
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.pricing {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 2px solid var(--solar-green);
}

.price-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-current {
    font-size: 3rem;
    font-weight: 800;
    background: var(--solar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-original {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--text-light);
}

.price-note {
    color: var(--text-light);
    font-size: 0.875rem;
}

.urgency-reminder {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--urgent-gradient);
    color: var(--text-white);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    animation: urgentPulse 2s infinite;
}

/* Calendar Widget */
.calendar-widget {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--primary-blue);
}

.calendar-header {
    text-align: center;
    padding: 2rem;
    background: var(--primary-gradient);
    color: var(--text-white);
}

.calendar-subtitle {
    margin-top: 0.5rem;
    opacity: 0.9;
    font-size: 1rem;
}

.booking-widget-container {
    padding: 1rem;
    background: var(--bg-white);
}

.calendar-nav {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.calendar-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.calendar-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--bg-gray);
    border-bottom: 1px solid #e5e7eb;
}

.weekday {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 1rem;
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.calendar-day:hover {
    background: rgba(30, 58, 138, 0.1);
}

.calendar-day.available {
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.3);
}

.calendar-day.available:hover {
    background: rgba(5, 150, 105, 0.2);
}

.calendar-day.selected {
    background: var(--solar-gradient);
    color: var(--text-white);
}

.calendar-day.disabled {
    color: var(--text-light);
    cursor: not-allowed;
}

.calendar-day.other-month {
    color: var(--text-light);
    opacity: 0.5;
}

.time-slots {
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
}

.time-slots-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.select-date-message {
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    font-style: italic;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.time-slot-btn {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-weight: 500;
    color: var(--text-primary);
}

.time-slot-btn:hover {
    border-color: var(--primary-blue);
    background: rgba(30, 58, 138, 0.05);
}

.time-slot-btn.selected {
    background: var(--solar-gradient);
    color: var(--text-white);
    border-color: transparent;
}

.time-slot-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f3f4f6;
}

/* Booking Form */
.booking-form {
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
}

.form-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.book-button {
    width: 100%;
    background: var(--solar-gradient);
    border: none;
    color: var(--text-white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Final CTA Section */
.final-cta {
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 4rem 0;
}

.final-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.final-cta-content {
    text-align: center;
}

.final-urgency h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.final-urgency p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.final-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button-secondary-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
    text-align: center;
    justify-content: center;
    min-height: 44px;
    white-space: normal;
    line-height: 1.2;
}

.cta-button-secondary-large:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.final-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    text-align: center;
    animation: modalSlide 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

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

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

.modal-header i {
    font-size: 4rem;
    color: var(--solar-green);
    margin-bottom: 1rem;
}

.modal-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.125rem;
}

.booking-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    text-align: left;
}

.next-steps {
    background: var(--bg-blue);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    text-align: left;
}

.next-steps h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.modal-close {
    background: var(--solar-gradient);
    border: none;
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.footer-main {
    max-width: 600px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 1.75rem;
}

.footer-logo .logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    color: var(--solar-green);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-cta-primary {
    background: var(--solar-gradient);
    border: none;
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-cta-secondary {
    background: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
    justify-content: center;
    min-height: 44px;
    white-space: normal;
    line-height: 1.2;
}

.footer-cta-secondary:hover {
    background: var(--text-white);
    color: var(--text-primary);
}

.footer-license {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-column h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--solar-green-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Utility Classes */
.urgent-cta {
    animation: ctaGlow 2s infinite;
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: var(--shadow-md); }
    50% { box-shadow: 0 0 20px rgba(234, 88, 12, 0.5), var(--shadow-lg); }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* This targets touch devices */
    button, .next-btn, .cta-button-primary, .cta-button-secondary,
    .cta-button-nav, .cta-button-secondary-nav, .path-button {
        min-height: 44px; /* iOS recommended touch target */
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    }
    
    /* Disable hover animations on touch devices */
    .urgent-cta {
        animation: none;
    }
    
    /* Larger touch targets for mobile */
    .form-step input,
    .form-step select {
        min-height: 44px !important;
    }
    
    /* Better mobile scrolling */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent zoom on form inputs */
    input, select, textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        border-radius: 0;
    }
}

/* Additional mobile performance optimizations */
@media screen and (max-width: 768px) {
    /* Reduce animations for better performance on mobile */
    *, *::before, *::after {
        animation-duration: 0.2s !important;
        animation-delay: 0s !important;
        transition-duration: 0.2s !important;
    }
    
    /* Optimize background images for mobile */
    .hero {
        background-attachment: scroll; /* Fixed attachment causes issues on mobile */
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .local-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .urgency-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .form-step .form-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .next-btn {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    /* Override all mobile styles to fix layout */
    .urgent-notification {
        padding: 0.5rem 0;
        font-size: 0.85rem;
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
    }
    
    .urgent-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .navbar {
        top: 3rem !important;
        padding: 0.5rem 0;
        position: fixed !important;
        width: 100% !important;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .nav-logo {
        justify-content: center;
        margin: 0;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .nav-links {
        gap: 0.5rem;
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button-nav,
    .cta-button-secondary-nav {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }
    
    /* CRITICAL FIX: Hero section positioning and width */
    .hero {
        margin-top: 12rem !important; /* Increased significantly to fully clear navigation buttons */
        padding: 3rem 0 1rem 0 !important; /* Added extra padding-top to ensure clearance */
        min-height: auto;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .hero-container {
        padding: 0 1rem !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        text-align: center;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.1;
        margin-bottom: 1rem;
        margin-top: 4rem !important; /* Significantly increased margin to push title below nav */
        padding-top: 2rem !important; /* Added padding-top for extra clearance */
        max-width: 100% !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem;
        max-width: 100% !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
    
    .hero-form-container {
        padding: 1rem 0.75rem 1.5rem 0.75rem;
        margin: 0 auto 1.5rem auto;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    .form-title {
        font-size: 1.1rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
    
    .form-step input,
    .form-step select {
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .next-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .countdown-timer {
        margin-bottom: 2rem;
    }
    
    .countdown-display {
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-unit {
        min-width: 50px;
        padding: 0.5rem 0.3rem;
    }
    
    .time-number {
        font-size: 1.2rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
    
    .countdown-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .deadline-text {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: none;
        justify-content: center;
        min-height: 44px; /* iOS touch target */
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .hero-guarantee {
        text-align: center;
        margin-top: 1.5rem;
        font-size: 0.85rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .paths-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .path-card {
        padding: 1.5rem;
    }
    
    .path-card.recommended {
        transform: none;
        order: -1;
    }
    
    .path-button {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        min-height: 44px;
        font-size: 0.8rem;
        min-width: auto;
        max-width: none;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .local-content {
        padding: 0 1rem;
    }
    
    .local-benefits {
        gap: 0.75rem;
    }
    
    .local-benefit {
        font-size: 0.9rem;
    }
    
    .countdown-timer-large {
        flex-direction: column;
        gap: 1rem;
    }
    
    .time-unit-large {
        min-width: auto;
    }
    
    .final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-primary,
    .phone-cta-large {
        width: 100%;
        justify-content: center;
        font-size: 0.75rem;
        min-height: 44px;
        padding: 0.6rem 0.8rem;
    }
    
    .footer-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-cta-primary,
    .footer-cta-secondary {
        width: 100%;
        max-width: none;
        justify-content: center;
        font-size: 0.75rem;
        padding: 0.6rem 0.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .urgent-notification {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    
    .urgent-container span {
        text-align: center;
        line-height: 1.3;
    }
    
    .navbar {
        top: 2rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .brand-sub {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero {
        margin-top: 4.5rem;
        padding: 1.5rem 0;
    }
    
    .hero-container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-form-container {
        padding: 1rem 0.75rem 1.5rem 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .form-title {
        font-size: 1rem;
    }
    
    .form-step input,
    .form-step select {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.95rem !important;
    }
    
    .countdown-display {
        gap: 0.2rem;
    }
    
    .time-unit {
        min-width: 45px;
        padding: 0.4rem 0.2rem;
    }
    
    .time-number {
        font-size: 1rem;
    }
    
    .time-label {
        font-size: 0.6rem;
    }
    
    .trust-badges {
        padding: 0 0.5rem;
    }
    
    .trust-badge {
        padding: 0.75rem;
    }
    
    .badge-text strong {
        font-size: 0.8rem;
    }
    
    .badge-text span {
        font-size: 0.7rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 0.5rem;
    }
}

/* Enhanced Mobile Responsiveness - Critical fixes for mobile layout */
@media (max-width: 768px) {
    /* Fix urgent notification for mobile */
    .urgent-notification {
        position: fixed;
        top: 0;
        z-index: 1001;
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }
    
    .urgent-container {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
        padding: 0 0.5rem;
    }
    
    /* Fix navigation for mobile */
    .navbar {
        position: fixed;
        top: 2.8rem; /* Account for urgent notification */
        padding: 0.5rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
    }
    
    .nav-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.5rem;
        width: 100%;
    }
    
    .nav-logo {
        margin: 0;
        padding: 0.25rem 0;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .cta-button-nav,
    .cta-button-secondary-nav {
        width: 100%;
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        min-height: 44px;
        margin: 0.125rem 0;
    }
    
    /* Fix hero section for mobile - PREVENT OVERLAP WITH NAV */
    .hero {
        margin-top: 5.5rem; /* Account for both notification and nav */
        padding: 1rem 0;
        min-height: auto;
        background-attachment: scroll;
    }
    
    .hero-container {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    /* CRITICAL FIX: Prevent hero text from being covered by nav */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        padding: 0 0.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        padding: 0 0.25rem;
    }
    
    /* Fix hero form for mobile - ENSURE IT FITS SCREEN WIDTH */
    .hero-form-container {
        padding: 1rem 0.5rem 1.5rem 0.5rem;
        margin: 0 auto 1rem auto;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .form-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .form-step input,
    .form-step select {
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .next-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        margin-top: 0.5rem;
        box-sizing: border-box;
    }
    
    /* Fix countdown timer for mobile */
    .countdown-timer {
        margin: 0 auto 1rem auto;
        padding: 1rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .countdown-display {
        gap: 0.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-unit {
        min-width: 45px;
        padding: 0.5rem 0.25rem;
        margin: 0.125rem;
        box-sizing: border-box;
    }
    
    .time-number {
        font-size: 1.1rem;
    }
    
    .time-label {
        font-size: 0.65rem;
    }
    
    .countdown-text {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .deadline-text {
        font-size: 0.75rem;
        margin-top: 0.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix hero buttons for mobile - ENSURE TEXT FITS AND ISN'T COVERED */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: none;
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        min-height: 44px;
        margin: 0.125rem 0;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        line-height: 1.2;
    }
    
    /* SPECIFIC FIX for the hero button text that was being covered */
    .hero-buttons .cta-button-secondary span {
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
        text-align: center;
        display: block;
        max-width: 100%;
    }
    
    .hero-guarantee {
        text-align: center;
        margin-top: 1rem;
        font-size: 0.8rem;
        padding: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    /* Fix trust badges for mobile */
    .trust-badges {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .trust-badge {
        padding: 0.5rem;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix paths section for mobile */
    .paths-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .path-card {
        padding: 1rem;
    }
    
    .path-button {
        width: 100%;
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        min-height: 44px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }
    
    /* Fix testimonials for mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .testimonial {
        padding: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix stats for mobile */
    .stats-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }
    
    /* Fix final CTA for mobile */
    .final-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .final-urgency h3 {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .final-urgency p {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix footer for mobile */
    .footer-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-cta-primary,
    .footer-cta-secondary {
        width: 100%;
        max-width: none;
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Ultra-small mobile devices */
@media (max-width: 480px) {
    .urgent-notification {
        font-size: 0.7rem;
        padding: 0.25rem 0;
    }
    
    .navbar {
        top: 2.5rem;
    }
    
    .nav-container {
        padding: 0.25rem;
    }
    
    .hero {
        margin-top: 5rem;
        padding: 0.5rem 0;
    }
    
    .hero-container {
        padding: 0 0.25rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-form-container {
        padding: 0.75rem 0.25rem 1rem 0.25rem;
    }
    
    .countdown-display {
        gap: 0.125rem;
    }
    
    .time-unit {
        min-width: 40px;
        padding: 0.4rem 0.2rem;
    }
    
    .time-number {
        font-size: 1rem;
    }
    
    .time-label {
        font-size: 0.6rem;
    }
}

/* Force mobile styles - Emergency override for caching issues */
@media (max-width: 768px) {
    /* Force hero text to fit and not be covered */
    .hero-title,
    .hero-subtitle,
    .form-title,
    .form-subtitle,
    .hero-guarantee,
    .countdown-text,
    .deadline-text,
    .testimonial-text,
    .final-urgency h3,
    .final-urgency p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Force hero container to fit screen */
    .hero-container {
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 0 2vw !important;
        box-sizing: border-box !important;
    }
    
    /* Force hero content to fit */
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Force form elements to fit */
    .hero-form-container,
    .countdown-timer,
    .hero-buttons {
        width: 95vw !important;
        max-width: 95vw !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    
    /* Force button text to wrap */
    .hero-buttons .cta-button-secondary span,
    .path-button,
    .footer-cta-secondary {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        text-align: center !important;
        max-width: 100% !important;
    }
    
    /* Force navigation to not overlap */
    .navbar {
        position: fixed !important;
        top: 2.8rem !important;
        z-index: 1000 !important;
    }
    
    .hero {
        margin-top: 5.5rem !important;
        padding-top: 1rem !important;
    }
}