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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Page Load Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
}

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

/* Smooth Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

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

.skip-link:focus {
    top: 6px;
}

/* Hero Layout Styles */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: center;
    min-height: 250px;
}

.hero-text-side {
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-card-side {
    z-index: 2;
}

.hero-card-compact {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 320px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.hero-features-compact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hero-feature-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(245, 158, 11, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.1);
    font-weight: 500;
    font-size: 0.875rem;
}

.feature-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.trust-indicators-compact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-item-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.trust-icon {
    font-size: 0.875rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    font-size: 0.875rem;
}

.trust-icon {
    font-size: 1.1rem;
}

.trust-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
}

/* Enhanced CTAs */
.cta-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-primary:focus {
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: #f59e0b;
    color: white;
    border: 2px solid #f59e0b;
}

.btn-primary:hover {
    background-color: #d97706;
    border-color: #d97706;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background-color: white;
    color: #f59e0b;
    border: 2px solid #f59e0b;
}

.btn-secondary:hover {
    background-color: #f59e0b;
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
    }
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 56px;
    width: auto;
    max-width: 240px;
}

@media (max-width: 1024px) {
    .logo-image {
        height: 48px;
        max-width: 200px;
    }
}

@media (max-width: 767px) {
    .logo-image {
        height: 40px;
        max-width: 180px;
    }
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #f59e0b;
}

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

.hidden-mobile {
    display: none;
}

@media (min-width: 640px) {
    .hidden-mobile {
        display: inline-flex;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background-color: #6b7280;
    transition: all 0.3s ease;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.nav-mobile.active {
    display: flex;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 767px) {
    .hero {
        min-height: 50vh;
        padding: 0;
    }
    
    .hero-bg-image {
        object-position: center center;
        object-fit: cover;
        height: 100%;
        min-height: 50vh;
        width: 100%;
    }
    
    .hero-image {
        height: 100%;
        min-height: 50vh;
    }
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 300px;
    background-color: transparent;
    padding: 1rem;
    border-radius: 0.75rem;
}

@media (max-width: 767px) {
    .hero-text {
        padding: 1rem;
        margin: 0.5rem;
        max-width: 300px;
    }
}

.hero-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

@media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Stats Section */
.stats {
    padding: 2rem 0;
    background-color: #f9fafb;
}

@media (max-width: 767px) {
    .stats {
        padding: 1.5rem 0;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
    .stat-number {
        font-size: 1.875rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (max-width: 767px) {
    .section-header {
        margin-bottom: 2rem;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Features Section */
.features {
    padding: 3rem 0;
}

@media (max-width: 767px) {
    .features {
        padding: 2rem 0;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
    .feature-card {
        padding: 2rem 1.5rem;
        text-align: center;
        align-items: center;
    }
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 3rem 0;
    background-color: #f9fafb;
}

@media (max-width: 767px) {
    .how-it-works {
        padding: 2rem 0;
    }
}

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

@media (max-width: 767px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.step-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

@media (max-width: 767px) {
    .step-card {
        padding: 1.5rem;
    }
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: #d97706;
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.step-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Who We Serve Section */
.who-we-serve {
    padding: 5rem 0;
}

@media (max-width: 767px) {
    .who-we-serve {
        padding: 3rem 0;
    }
}

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

@media (max-width: 767px) {
    .schools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.school-card {
    background-color: #fef3c7;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.school-card:hover {
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .school-card {
        padding: 1.5rem;
    }
}

.school-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.school-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.school-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.school-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.school-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    display: block;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background-color: #d97706;
    text-align: center;
}

@media (max-width: 767px) {
    .cta {
        padding: 3rem 0;
    }
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

@media (max-width: 767px) {
    .cta-title {
        font-size: 1.75rem;
    }
}

.cta-subtitle {
    font-size: 1.125rem;
    color: #fed7aa;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0 1rem;
}

@media (max-width: 767px) {
    .footer {
        padding: 2rem 0 1rem;
    }
}

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

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

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

@media (max-width: 767px) {
    .footer-logo {
        justify-content: center;
    }
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d97706;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legal-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal-link:hover,
.legal-link:focus {
    color: #f59e0b;
    text-decoration: underline;
}

.privacy-notice {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.privacy-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    margin: 0;
}

.privacy-icon {
    font-size: 1rem;
}

/* Comparison Table Styles */
.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .comparison-table {
        margin: 0 1rem;
        border-radius: 8px;
    }
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-header > div {
    padding: 1.5rem 1rem;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid #e5e7eb;
}

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

.comparison-row:nth-child(even) {
    background-color: #f9fafb;
}

.comparison-feature {
    padding: 1.25rem 1rem;
    font-weight: 500;
    color: #374151;
    text-align: left;
}

.comparison-competitor,
.comparison-beeline {
    padding: 1.25rem 1rem;
    text-align: center;
    font-size: 0.95rem;
}

.comparison-competitor {
    color: #dc2626;
    background-color: rgba(254, 242, 242, 0.5);
}

.comparison-beeline {
    color: #16a34a;
    background-color: rgba(240, 253, 244, 0.5);
    font-weight: 500;
}

/* Case Studies Section */
.case-studies {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fefbf3 0%, #fff7ed 100%);
}

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

.case-study-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.school-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.school-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.school-size, .school-location {
    font-size: 0.875rem;
    color: #6b7280;
    background: #f9fafb;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

.case-study-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.case-study-badge.district {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.case-study-badge.small {
    background: linear-gradient(135deg, #10b981, #059669);
}

.case-study-challenge, .case-study-solution, .case-study-results {
    margin-bottom: 1.5rem;
}

.challenge-title, .solution-title, .results-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.challenge-title:before {
    content: "⚠️";
    font-size: 1rem;
}

.solution-title:before {
    content: "⚡";
    font-size: 1rem;
}

.results-title:before {
    content: "📊";
    font-size: 1rem;
}

.challenge-text {
    color: #6b7280;
    line-height: 1.6;
}

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

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

.solution-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.result-metric {
    text-align: center;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.metric-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.case-study-quote {
    background: #f8fafc;
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #374151;
    border-radius: 0 8px 8px 0;
}

.case-study-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    font-style: normal;
}

.case-studies-cta {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-card-compact {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .trust-item {
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 280px;
    }
    
    /* Case studies mobile responsiveness */
    .case-studies {
        padding: 3rem 0;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-study-card {
        padding: 1.5rem;
    }
    
    .case-study-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .school-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .results-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .case-studies-cta {
        padding: 2rem 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    /* Contact form mobile responsiveness */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-table {
        margin: 0 0.5rem;
        overflow: visible;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .comparison-header,
    .comparison-row {
        display: grid;
        grid-template-columns: 2fr 1.2fr 1.2fr;
        gap: 0;
    }
    
    .comparison-header > div {
        padding: 1.2rem 0.8rem;
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .comparison-feature {
        padding: 1.2rem 0.8rem;
        font-weight: 500;
        color: #374151;
        text-align: left;
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .comparison-competitor,
    .comparison-beeline {
        padding: 1.2rem 0.6rem;
        text-align: center;
        font-size: 0.8rem;
        line-height: 1.2;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .legal-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .privacy-text {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* FAQ Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(245, 158, 11, 0.05);
}

.accordion-header[aria-expanded="true"] {
    background-color: rgba(245, 158, 11, 0.1);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #f59e0b;
    transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
    max-height: 200px;
    padding: 0 2rem 1.5rem 2rem;
}

.accordion-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-content.active {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

/* Feature Image Styles */
.feature-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

/* Step Image Styles */
.step-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-image:hover {
    transform: scale(1.02);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.popup-small {
    max-width: 300px;
}

@media (max-width: 767px) {
    .popup-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .popup-small {
        max-width: 280px;
    }
}

.popup-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.popup-header p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.popup-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
}

.popup-source {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 1rem;
}





/* Trees and Landscape */
.landscape {
    position: absolute;
    bottom: 25%;
    left: 0;
    width: 100%;
    height: 30%;
}

.tree {
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 60px;
}

.tree::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 20px;
    background-color: #92400e;
}

.tree::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: #16a34a;
    border-radius: 50%;
}

/* Car Animation */
.car {
    position: absolute;
    width: 50px;
    height: 25px;
    background-color: #3b82f6;
    border-radius: 6px;
    transition: left 0.2s ease-in-out;
}

.car::before {
    content: '';
    position: absolute;
    top: 3px;
    right: 6px;
    width: 20px;
    height: 10px;
    background-color: #dbeafe;
    border-radius: 2px;
}

.car::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 6px;
    width: 8px;
    height: 8px;
    background-color: #1f2937;
    border-radius: 50%;
    box-shadow: 24px 0 0 #1f2937;
}

/* Student/Child Animation */
.child {
    position: absolute;
    width: 12px;
    height: 20px;
    transition: all 0.3s ease;
}

.child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: #fbbf24;
    border-radius: 50%;
}

.child::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 12px;
    background-color: #3b82f6;
    border-radius: 2px;
}

/* Process Flow Styles */
.process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1.5rem;
    margin-bottom: 4rem;
    padding: 3rem 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-visual {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    margin-bottom: 1rem;
}

.step-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background-color: white;
    border: 3px solid #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    color: #f59e0b;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.detail-badge {
    background-color: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.process-arrow {
    display: flex;
    align-items: center;
    opacity: 0.7;
}

.process-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border-radius: 1rem;
}

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

.benefit-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #f59e0b;
    margin-bottom: 0.25rem;
}

.benefit-stat .stat-label {
    font-size: 0.875rem;
    color: #92400e;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .process-flow {
        flex-direction: column;
        gap: 3rem;
        padding: 2rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .process-arrow svg {
        width: 40px;
        height: 60px;
    }
    
    .process-step {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .process-step {
        max-width: 100%;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        bottom: -3px;
        right: -3px;
    }
    
    .step-content h3 {
        font-size: 1.125rem;
    }
    
    .step-description {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .detail-badge {
        font-size: 0.625rem;
        padding: 0.2rem 0.5rem;
    }
    
    .process-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .benefit-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .benefit-stat .stat-label {
        font-size: 0.75rem;
    }
    
    .process-arrow {
        display: none;
    }
}

/* Comprehensive Mobile Responsiveness */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .comparison-table {
        margin: 0;
        border-radius: 6px;
        font-size: 0.8rem;
    }
    
    .comparison-header > div {
        padding: 1rem 0.4rem;
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .comparison-feature {
        padding: 1rem 0.4rem;
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .comparison-competitor,
    .comparison-beeline {
        padding: 1rem 0.3rem;
        font-size: 0.7rem;
        line-height: 1.1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .app-store-badge {
        height: 40px;
        width: 120px;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }
    
    .process-flow {
        padding: 1rem 0.5rem;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .feature-title {
        font-size: 1.125rem;
    }
    
    .feature-description {
        font-size: 0.875rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .pricing-table {
        grid-template-columns: 140px repeat(3, 110px);
        min-width: 470px;
        font-size: 0.7rem;
    }
    
    .pricing-feature-column,
    .feature-name {
        padding: 0.5rem 0.25rem;
        font-size: 0.7rem;
    }
    
    .pricing-plan-column,
    .feature-value {
        padding: 0.5rem 0.25rem;
        font-size: 0.7rem;
    }
    
    .plan-price {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .plan-header h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .solution-card {
        padding: 1.5rem;
        margin: 0.75rem 0;
    }
}

/* Solutions Carousel Styles */
.solutions-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.solutions-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    min-height: 240px;
}

.solution-slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.solution-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.solution-slide.prev {
    transform: translateX(-100%);
}

.solution-card {
    text-align: center;
    padding: 1.5rem 1rem;
    margin: 0;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #d1d5db;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #f59e0b;
}

.indicator:hover {
    background-color: #9ca3af;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: #f59e0b;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.carousel-nav:hover {
    background-color: #f59e0b;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

@media (max-width: 1024px) {
    .solution-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.solution-card {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 1.5rem 0;
    padding: 2.5rem 2rem;
}

.solution-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.solution-benefits li {
    padding: 0.5rem 0;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
}

.solution-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .solutions-carousel {
        padding: 1rem 0;
    }
    
    .solution-slide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .solution-card {
        padding: 2rem 1.5rem;
        min-height: 200px;
        margin: 1rem 0;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .carousel-nav.prev {
        left: -20px;
    }
    
    .carousel-nav.next {
        right: -20px;
    }
    
    .carousel-indicators {
        margin-top: 1.5rem;
    }
}

/* Safety Carousel Styles */
.safety-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.safety-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    min-height: 400px;
}

.safety-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
}

.safety-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.safety-card {
    text-align: center;
    padding: 2rem;
    margin: 0;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.safety-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.safety-subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
}

.safety-image-container {
    margin-bottom: 1rem;
    text-align: center;
}

.safety-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 0 auto 1rem auto;
    display: block;
}

.safety-source {
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: italic;
}

.weather-stats {
    display: grid;
    gap: 2rem;
}

.weather-stat {
    text-align: center;
    padding: 1rem;
    background-color: #fef3c7;
    border-radius: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #d97706;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.weather-conditions {
    text-align: left;
    margin-top: 1.5rem;
}

.weather-conditions h4 {
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 600;
}

.weather-conditions ul {
    list-style: none;
    padding: 0;
}

.weather-conditions li {
    padding: 0.5rem 0;
    color: #6b7280;
}

@media (max-width: 767px) {
    .safety-carousel {
        padding: 1rem 0;
    }
    
    .safety-card {
        padding: 1.5rem;
        min-height: 320px;
    }
    
    .safety-title {
        font-size: 1.25rem;
    }
    
    .weather-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Pricing Table Styles */
.pricing-table-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.pricing-table {
    display: grid;
    grid-template-columns: 300px repeat(3, 1fr);
    gap: 0;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-width: 800px;
}

@media (max-width: 1024px) {
    .pricing-table {
        grid-template-columns: 250px repeat(3, 1fr);
        min-width: 700px;
    }
    
    .pricing-feature-column {
        padding: 1rem;
    }
    
    .pricing-plan-column {
        padding: 1rem;
    }
    
    .plan-header h3 {
        font-size: 1.25rem;
    }
    
    .plan-price {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .pricing-table-container {
        overflow-x: auto;
        padding: 0 1rem 1rem;
        margin: 0 -1rem;
    }
    
    .pricing-table {
        grid-template-columns: 180px repeat(3, 140px);
        min-width: 600px;
        font-size: 0.8rem;
    }
    
    .pricing-feature-column {
        padding: 0.75rem 0.5rem;
    }
    
    .pricing-feature-column h3 {
        font-size: 1rem;
    }
    
    .pricing-plan-column {
        padding: 0.75rem 0.5rem;
    }
    
    .plan-header h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .plan-price {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .plan-badge {
        top: -6px;
        padding: 0.3rem 0.6rem;
        font-size: 0.625rem;
    }
    
    .btn-small {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .feature-name {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
    
    .feature-value {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
    
    .pricing-row {
        border-bottom: 1px solid #f1f5f9;
    }
}

.pricing-header {
    display: contents;
}

.pricing-feature-column {
    padding: 1.5rem 1.5rem;
    background-color: #f8fafc;
    border-right: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.pricing-feature-column h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.pricing-plan-column {
    padding: 1.5rem 1.5rem;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    position: relative;
}

.pricing-plan-column:last-child {
    border-right: none;
}

.pricing-plan-column.featured {
    background-color: #fef3c7;
    border-left: 3px solid #f59e0b;
    border-right: 3px solid #f59e0b;
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f59e0b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 30;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
}

.pricing-plan-column.featured {
    margin-top: 15px;
    background-color: #fef3c7;
    border-left: 3px solid #f59e0b;
    border-right: 3px solid #f59e0b;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 1.5rem;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.pricing-row {
    display: contents;
}

.feature-name {
    padding: 1rem 1.5rem;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    font-weight: 500;
    color: #475569;
}

.feature-value {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    text-align: center;
    color: #1e293b;
}

.feature-value:last-child {
    border-right: none;
}

.pricing-plan-column.featured .feature-value {
    background-color: #fffbeb;
}

@media (max-width: 768px) {
    .pricing-table-container {
        padding: 0 1rem;
    }
    
    .pricing-table {
        grid-template-columns: 200px repeat(3, 150px);
        min-width: 650px;
    }
    
    .pricing-feature-column,
    .feature-name {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .pricing-plan-column,
    .feature-value {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .plan-header h3 {
        font-size: 1.125rem;
    }
    
    .plan-price {
        font-size: 1.5rem;
    }
}

/* Cross-browser compatibility */
@supports not (backdrop-filter: blur(10px)) {
    .hero-text {
        background-color: rgba(255, 255, 255, 0.95);
    }
}

/* App Store Links */
.app-store-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.app-store-link {
    display: inline-block;
    transition: transform 0.2s ease;
}

.app-store-link:hover {
    transform: scale(1.05);
}

.app-store-badge {
    height: 50px;
    width: 150px;
    border-radius: 4px;
    object-fit: contain;
    background: transparent;
}

@media (min-width: 768px) {
    .app-store-links {
        flex-direction: row;
        gap: 1rem;
    }
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-btn,
    .nav-mobile,
    .popup-overlay {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    * {
        box-shadow: none !important;
    }
}