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

html {
    scroll-behavior: smooth;
}

/* Hero Insurance Check Button */
.hero-insurance-check {
    margin-bottom: 25px;
    text-align: center;
}

.btn-insurance-hero {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #1E40AF 0%, #1D4ED8 100%);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s infinite;
}

.btn-insurance-hero i {
    margin-right: 12px;
    font-size: 1.4rem;
}

.btn-insurance-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.6);
    background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
}

.btn-insurance-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-insurance-hero:hover::before {
    width: 300px;
    height: 300px;
}

.insurance-vote-message {
    margin-top: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fade-in-up 1s ease-out;
}

/* Secondary Button */
.btn-secondary-hero {
    display: inline-block;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #93C5FD;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(147, 197, 253, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-secondary-hero i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-secondary-hero:hover {
    transform: translateY(-3px);
    background: rgba(147, 197, 253, 0.25);
    border-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(147, 197, 253, 0.5);
}

/* Responsive: Stack buttons on mobile */
@media (max-width: 768px) {
    .btn-insurance-hero,
    .btn-secondary-hero {
        display: block;
        width: 90%;
        margin: 10px auto;
        font-size: 1.2rem;
        padding: 20px;
    }
    
    .btn-insurance-hero {
        margin-right: auto !important;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(30, 64, 175, 0.7);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Insurance Demand Section */
.insurance-demand-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.insurance-demand-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.demand-hero {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.demand-hero .section-title {
    color: white !important;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.demand-hero .section-subtitle {
    color: rgba(255,255,255,0.95) !important;
}

.demand-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.flow-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1E40AF, #1D4ED8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.flow-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.flow-step h3 {
    color: #1F2937;
    margin: 20px 0 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.flow-step p {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
}

.flow-arrow {
    color: rgba(255,255,255,0.7);
    font-size: 2rem;
    margin: 0 20px;
}

.demand-cta {
    position: relative;
    z-index: 1;
}

.cta-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.key-message {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.message-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.message-content h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 600;
}

.message-content p {
    color: rgba(255,255,255,0.95);
    margin: 0;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .demand-flow {
        flex-direction: column;
        gap: 40px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .flow-step {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
        margin-right: 0 !important;
    }
    
    .key-message {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .btn-insurance-hero {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
    
    .insurance-vote-message {
        font-size: 0.9rem;
    }
    
    .insurance-demand-section {
        padding: 60px 0;
    }
    
    .demand-hero .section-title {
        font-size: 2rem;
    }
    
    .flow-step h3 {
        font-size: 1.3rem;
    }
}

:root {
    --primary-color: #4F46E5;
    --primary-dark: #3730A3;
    --primary-light: #6366F1;
    --secondary-color: #1E40AF;
    --accent-color: #F59E0B;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --text-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-bg-light: rgba(255, 255, 255, 0.15);
    --glass-bg-dark: rgba(255, 255, 255, 0.35);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-border-light: rgba(255, 255, 255, 0.1);
    --glass-border-dark: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --glass-shadow-light: 0 4px 16px 0 rgba(31, 38, 135, 0.2);
    --glass-shadow-dark: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
    --glass-blur: blur(8px);
    --glass-blur-light: blur(4px);
    --glass-blur-dark: blur(12px);
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--glass-shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem; /* Add gap between logo and menu */
}

.nav-logo h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.5rem;
    margin-right: 2rem; /* Add right margin to logo */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--glass-bg-dark);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur-light);
    -webkit-backdrop-filter: var(--glass-blur-light);
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--glass-bg-dark);
    color: white;
    padding: 12px 24px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    z-index: 15;
    box-shadow: var(--glass-shadow);
}

.carousel-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 15;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border-light);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-blur-light);
    -webkit-backdrop-filter: var(--glass-blur-light);
}

.dot.active {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    transform: scale(1.2);
    box-shadow: var(--glass-shadow-light);
}

.dot:hover {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transform: scale(1.1);
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 10;
    background: transparent;
}

.hero-title-main {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.9), 0 4px 8px rgba(0, 0, 0, 0.8), 0 0 0 3px rgba(79, 70, 229, 0.8);
    background: var(--glass-bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
}

.hero-title-sub {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1), 0 0 10px rgba(0, 0, 0, 0.9), 0 4px 8px rgba(0, 0, 0, 0.8);
    background: var(--glass-bg-light);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    font-weight: 500;
    line-height: 1.8;
    font-style: italic;
    letter-spacing: 0.01em;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
}

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

.hero-disclaimer {
    background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-dark);
}

.hero-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
}

.hero-disclaimer i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    color: #1E40AF;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow-light);
}

.security-badge i {
    color: #1E40AF;
}

.hero-story {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    margin: 0.5rem 0;
    box-shadow: var(--shadow);
}

.hero-story p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.hero-story i {
    color: #ff6b6b;
    margin-right: 0.5rem;
}

.hero-story strong {
    color: var(--text-dark);
    font-weight: 600;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.hero-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(79, 70, 229, 0.1);
}

.hero-placeholder {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-placeholder p {
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
}

/* Target Audience Section */
.target-audience {
    background-color: var(--bg-light);
    padding: 80px 0;
}

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

.audience-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow-dark);
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border-dark);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.audience-icon i {
    font-size: 2rem;
    color: white;
}

.audience-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.audience-card p {
    text-align: center;
    margin-bottom: 1.5rem;
}

.example {
    background: var(--glass-bg-light);
    border-left: 4px solid var(--secondary-color);
    padding: 1rem;
    border-radius: 0 16px 16px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur-light);
    -webkit-backdrop-filter: var(--glass-blur-light);
    box-shadow: var(--glass-shadow-light);
}

.example strong {
    color: var(--secondary-color);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow-dark);
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border-dark);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.service-image {
    margin: 1rem 0;
    text-align: center;
}

.service-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(79, 70, 229, 0.1);
}

.feature-tag {
    background: var(--glass-bg-light);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur-light);
    -webkit-backdrop-filter: var(--glass-blur-light);
    box-shadow: var(--glass-shadow-light);
}

/* App Features Section */
.app-features {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow-dark);
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border-dark);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #1D4ED8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.benefit-tag {
    background: var(--glass-bg-light);
    color: var(--secondary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur-light);
    -webkit-backdrop-filter: var(--glass-blur-light);
    box-shadow: var(--glass-shadow-light);
}

/* Community & Success Stories Section */
.community {
    background-color: var(--bg-white);
    padding: 5rem 0;
}

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

.story-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow-dark);
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border-dark);
}

.story-card.featured {
    border: 2px solid var(--primary-color);
    background: var(--glass-bg-dark);
    box-shadow: var(--glass-shadow-dark);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.story-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.story-avatar i {
    font-size: 1.5rem;
    color: white;
}

.story-info h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.story-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.story-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.story-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Live Community Feed */
.live-community-section {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.live-community-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.live-community-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
}

.community-feed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.community-post {
    background: var(--glass-bg);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--glass-shadow-light);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.community-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow);
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border-dark);
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.post-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.post-info {
    flex: 1;
}

.post-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.post-meta {
    font-size: 0.8rem;
    color: var(--text-light);
}

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

.post-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.post-content p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.post-engagement {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.post-reactions,
.post-comments {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Community Engagement Stats */
.community-engagement {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--secondary-color), #1D4ED8);
    border-radius: 12px;
}

.engagement-item {
    text-align: center;
    color: white;
}

.engagement-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.engagement-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* B2B Calendar Management Section */
.b2b-calendar {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.b2b-content {
    margin-top: 3rem;
}

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

.b2b-feature-card {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.b2b-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow-dark);
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border-dark);
}

.b2b-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.b2b-icon i {
    font-size: 2rem;
    color: white;
}

.b2b-feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.b2b-feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.b2b-benefits {
    list-style: none;
    padding: 0;
}

.b2b-benefits li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.b2b-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.b2b-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.b2b-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.b2b-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.b2b-cta-subtext {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
}

.b2b-contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.2rem;
}

.b2b-cta-button {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.b2b-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.real-example {
    background: var(--glass-bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0 16px 16px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur-light);
    -webkit-backdrop-filter: var(--glass-blur-light);
    box-shadow: var(--glass-shadow-light);
}

.real-example strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--bg-light);
}

.dual-tabs {
    max-width: 900px;
    margin: 0 auto;
}

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

.tab-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.customer-benefits,
.pa-requirements {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    margin-top: 2rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.customer-benefits h3,
.pa-requirements h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.customer-benefits ul,
.pa-requirements ul {
    list-style: none;
    padding: 0;
}

.customer-benefits li,
.pa-requirements li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.customer-benefits i,
.pa-requirements i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.customer-benefits strong,
.pa-requirements strong {
    color: var(--text-dark);
}

/* PA Benefits Section */
.pa-benefits {
    background-color: var(--bg-white);
}

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

.pa-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.benefits-list {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefit-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.disclaimer {
    color: var(--accent-color);
    font-style: italic;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block;
}

.pa-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pa-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.pa-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.pa-placeholder p {
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.pa-placeholder small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Verification Section */
.verification {
    background-color: var(--bg-light);
}

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

.verification-item {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.verification-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-dark);
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border-dark);
}

.verification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.verification-icon i {
    font-size: 2rem;
    color: white;
}

.verification-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.verification-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.verification-note {
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.verification-note p {
    margin: 0;
    color: var(--text-dark);
}

.verification-note strong {
    color: var(--primary-color);
}

/* Hero Mission */
.hero-mission {
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 1rem 0;
    color: white;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
}

.hero-mission p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1), 0 0 10px rgba(0, 0, 0, 0.9), 0 4px 8px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero-mission i {
    color: #ff6b6b;
    margin-right: 0.5rem;
}

.hero-mission strong {
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 0 0 25px rgba(0, 0, 0, 1), 0 0 15px rgba(0, 0, 0, 0.9), 0 6px 12px rgba(0, 0, 0, 0.8);
    font-size: 1.3rem;
    letter-spacing: 0.02em;
}

/* Security Section */
.security {
    background-color: var(--bg-light);
    padding: 80px 0;
}

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

.security-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    text-align: center;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.security-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow-dark);
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border-dark);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E40AF, #1D4ED8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.security-icon i {
    font-size: 2rem;
    color: white;
}

.security-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.security-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background-color: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive Design */

/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        text-align: center;
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-title-main {
        font-size: 2.5rem;
    }

    .hero-title-sub {
        font-size: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* App Access Mobile Responsive */
    .platform-features {
        flex-direction: column;
        gap: 1rem;
    }

    .app-platform {
        padding: 1.5rem;
    }

    .platform-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .download-actions {
        flex-direction: column;
        align-items: center;
    }

    .app-store-badge img {
        height: 50px !important;
    }

    .audience-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }

    .services-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }
    
    /* Guarantee Banner Mobile */
    .guarantee-banner {
        padding: 0.75rem 0;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .guarantee-text strong {
        font-size: 1rem;
    }
    
    .guarantee-text span {
        font-size: 0.85rem;
    }
    
    .guarantee-link {
        align-self: center;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    section {
        padding: 60px 0;
    }

    .hero-title-main {
        font-size: 2rem;
    }

    .hero-title-sub {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .audience-card,
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* Ensure single column layout on mobile */
    .audience-grid,
    .services-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }

    .customer-benefits,
    .driver-requirements {
        padding: 1.5rem;
    }
}

/* Desktop Title - One Line */
@media (min-width: 1024px) {
    .hero-title-main {
        line-height: 1.1; /* Keep title on one line */
        white-space: nowrap; /* Prevent title from wrapping */
    }
    
    /* Desktop Hero Section UX/UI Improvements */
    .hero {
        padding: 140px 0 0; /* Remove bottom padding to eliminate gap */
    }
    
    .hero-container {
        max-width: 1400px; /* Increase max-width further to prevent overlap */
        text-align: left;
    }
    
    .hero-content {
        display: flex;
        flex-direction: row; /* Change to row for two-column layout */
        gap: 4rem; /* Increase gap to prevent overlap */
        align-items: flex-start;
        justify-content: space-between;
    }
    
    .hero-text {
        flex: 1;
        max-width: 700px; /* Increase max-width for better text display */
        margin-right: 2rem; /* Add right margin for extra spacing */
    }
    
    .hero-actions {
        flex-shrink: 0;
        width: 450px; /* Increase width to prevent overlap */
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .hero-title-main {
        font-size: 3.2rem; /* Further reduce font size to prevent overlap */
        margin-bottom: 1.5rem;
        color: #FFFFFF;
        font-weight: 700;
        line-height: 1.1;
        white-space: nowrap;
    }
    
    .hero-description {
        font-size: 1.25rem; /* Slightly reduce font size */
        line-height: 1.6;
        margin-bottom: 2rem;
        color: #FFFFFF;
    }
    
    .hero-mission {
        background: rgba(79, 70, 229, 0.15);
        border: 2px solid rgba(79, 70, 229, 0.4);
        padding: 1.5rem 2rem;
        border-radius: 12px;
        margin-bottom: 0; /* Remove bottom margin */
        backdrop-filter: blur(5px);
    }
    
    .hero-mission p {
        margin: 0;
        font-size: 1.1rem;
        line-height: 1.5;
        color: #FFFFFF;
    }
    
    .hero-mission strong {
        color: #FFFFFF;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 0; /* Remove bottom margin */
        width: 100%;
    }
    
    .hero-buttons .btn {
        padding: 14px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-align: center;
        width: 100%;
    }
    
    .hero-buttons .btn-primary {
        background: var(--primary-color);
        color: white;
        border: none;
    }
    
    .hero-buttons .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    }
    
    .hero-buttons .btn-secondary {
        background: transparent;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }
    
    .hero-buttons .btn-secondary:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }
    
    .hero-disclaimer {
        background: rgba(245, 158, 11, 0.1);
        border: 1px solid var(--accent-color);
        border-left: 4px solid var(--accent-color);
        padding: 1.5rem;
        margin-bottom: 0; /* Remove bottom margin */
        border-radius: 8px;
        width: 100%;
    }
    
    .hero-disclaimer p {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.5;
        color: var(--text-dark);
    }
    
    .hero-disclaimer i {
        color: var(--accent-color);
        margin-right: 0.5rem;
    }
    
    .security-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: rgba(76, 175, 80, 0.1);
        border: 1px solid rgba(76, 175, 80, 0.3);
        border-radius: 25px;
        padding: 0.75rem 1.5rem;
        color: #1E40AF;
        font-size: 0.95rem;
        font-weight: 600;
        transition: all 0.3s ease;
        width: 100%;
        justify-content: center;
    }
    
    .security-badge:hover {
        background: rgba(76, 175, 80, 0.15);
        transform: translateY(-1px);
    }
    
    .security-badge i {
        color: #1E40AF;
        font-size: 1.1rem;
    }
    
    /* Remove gap between hero and who we help section */
    .target-audience {
        padding-top: 80px; /* Reduce top padding to eliminate gap */
    }
    
    /* Desktop Guarantee Banner Improvements */
    .guarantee-banner {
        padding: 1.5rem 0;
    }
    
    .guarantee-content {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
        align-items: center;
        justify-content: space-between;
        width: 100%; /* Ensure full width usage */
    }
    
    .guarantee-text {
        flex: 1;
        text-align: left;
        max-width: none; /* Remove max-width restriction */
    }
    
    .guarantee-text strong {
        font-size: 1.2rem;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .guarantee-text span {
        font-size: 1rem;
        line-height: 1.5;
        display: block;
        max-width: none; /* Remove max-width restriction */
    }
    
    .guarantee-link {
        align-self: center;
        flex-shrink: 0;
        margin-left: 2rem; /* Add some space from the text */
    }
}

/* Desktop Single Column Layout for Who We Help and Services */
.audience-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns side by side on desktop */
    max-width: 1600px; /* Set reasonable max-width for centering */
    width: 100%; /* Ensure full width */
    margin: 3rem auto 0; /* Center horizontally with auto margins */
    gap: 3.5rem; /* Increase gap for much more space between cards */
    padding: 0 2rem; /* Add padding for proper spacing from edges */
    justify-content: center; /* Center the grid content */
    display: grid; /* Ensure grid display */
}

.services-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns side by side on desktop */
    grid-template-rows: repeat(2, auto); /* 2 rows for 6 services */
    max-width: 1600px; /* Set reasonable max-width for centering */
    width: 100%; /* Ensure full width */
    margin: 3rem auto 0; /* Center horizontally with auto margins */
    gap: 3.5rem; /* Increase gap for much more space between cards */
    padding: 0 2rem; /* Add padding for proper spacing from edges */
    justify-content: center; /* Center the grid content */
    display: grid; /* Ensure grid display */
}

/* Desktop card styling improvements */
.audience-card,
.service-card {
    text-align: center; /* Keep center alignment for side-by-side layout */
    padding: 2.5rem; /* Increase padding for even better content spacing */
    min-width: 350px; /* Increase minimum width for better readability */
}

/* Blog Section Styles */
.blog {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.blog-card {
    background: var(--glass-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow-dark);
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border-dark);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-date {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.blog-category {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-dark);
}

.blog-cta {
    text-align: center;
    padding: 3rem 0;
}

.blog-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Blog Page Styles */
.blog-page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.blog-page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-posts {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.blog-card.coming-soon {
    opacity: 0.7;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
}

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

.blog-newsletter {
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    text-align: center;
    margin-top: 3rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.blog-newsletter h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-newsletter p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-page-header h1 {
        font-size: 2rem;
    }
    
    .blog-page-header p {
        font-size: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .blog-newsletter {
        padding: 2rem 1rem;
    }
}

/* Blog Post Styles */
.blog-post {
    padding: 5rem 0 5rem; /* Increased top padding to account for fixed header */
    background-color: var(--bg-white);
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.blog-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.blog-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-content h2 {
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.blog-content h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-content h4 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.service-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-item ul {
    padding-left: 1.5rem;
    margin: 0;
}

.service-item li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

.benefit-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
}

.benefit-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-item ul {
    padding-left: 1.5rem;
    margin: 0;
}

.benefit-item li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.steps {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.step h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial cite {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.faq {
    margin: 2rem 0;
}

.faq h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq p {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--border-color);
}

.cta-section {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.download-buttons, .application-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        margin: 0 1rem;
    }
    
    .blog-article {
        padding: 0 1rem;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-content h2 {
        font-size: 1.75rem;
    }
    
    .blog-content h3 {
        font-size: 1.4rem;
    }
    
    .service-list, .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .download-buttons, .application-buttons {
        flex-direction: column;
        align-items: center;
    }
}
