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

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

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

.brand-container {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.brand-logo-horizontal {
    height: 90px;
    width: auto;
    max-width: 600px;
    opacity: 1 !important;
    transform: none !important;
    display: block !important;
    visibility: visible !important;
}

.brand-fallback {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-fallback .brand-text {
    font-family: 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C2C2C;
    letter-spacing: -0.02em;
}

.brand-fallback .brand-separator {
    color: #E0E0E0;
    font-weight: 300;
}

.brand-fallback .brand-tagline {
    font-family: 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', sans-serif;
    font-size: 0.75rem;
    color: #666666;
    font-weight: 400;
    letter-spacing: 0.01em;
}

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

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

.nav-link:hover {
    color: #2C2C2C;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    background: none;
    border: 1px solid #e9ecef;
    color: #6c757d;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: #2C2C2C;
    color: #2C2C2C;
}

.lang-btn.active {
    background: #2C2C2C;
    border-color: #2C2C2C;
    color: white;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 5;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(44, 44, 44, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 4rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #7a7a7a;
}

.highlight {
    color: #2C2C2C;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}


.hero-cta {
    margin-bottom: 2rem;
}

.cta-button {
    background: #2C2C2C;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #666666;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 102, 102, 0.3);
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.cta-button.full-width {
    width: 100%;
}

.cta-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 15;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #2C2C2C;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 16;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #666666, #2C2C2C, #666666);
    border-radius: 35px;
    z-index: -1;
    opacity: 0.3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    padding: 2rem 1.5rem;
    height: 100%;
}

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

.preview-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2C2C2C, #666666);
    border-radius: 50%;
}

.preview-info {
    flex: 1;
}

.preview-name {
    width: 80px;
    height: 16px;
    background: #e9ecef;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.preview-status {
    width: 120px;
    height: 12px;
    background: #e9ecef;
    border-radius: 6px;
}

.preview-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

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

.card-title {
    font-weight: 600;
    color: #2c3e50;
}

.card-date {
    font-size: 0.9rem;
    color: #6c757d;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #6c757d;
}

.location-icon {
    font-size: 1.2rem;
}

.card-status {
    text-align: right;
}

.status-badge {
    background: #d4edda;
    color: #155724;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Flowchart Section */
.flowchart-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    scroll-margin-top: 200px;
    position: relative;
    z-index: 10;
}

.flowchart-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

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

.flow-label {
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.traditional-label {
    background: #e9ecef;
    color: #6c757d;
    border: 2px solid #dee2e6;
}

.hen-label {
    background: #2C2C2C;
    color: white;
    border: 2px solid #2C2C2C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-start {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.flow-step {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.flow-step:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.common-step {
    background: #f8f9fa;
    color: #2c3e50;
    border-color: #dee2e6;
    font-size: 1rem;
    min-width: 180px;
    padding: 1rem 1.5rem;
}

.flow-arrows-start {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.flow-arrows-end {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.arrow {
    height: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid;
}

.traditional-arrow::after {
    border-top-color: #6c757d;
}

.hen-arrow::after {
    border-top-color: #2C2C2C;
}

.flow-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    min-height: 280px;
    align-items: start;
}

.flow-path {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.traditional-path .flow-step {
    background: white;
    color: #6c757d;
    border-color: #dee2e6;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.traditional-path .flow-step:hover {
    border-color: #adb5bd;
    background: #f8f9fa;
}

.hen-path {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-top: 10rem;
}

.hen-special {
    background: #2C2C2C !important;
    color: white !important;
    border-color: #2C2C2C !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 1.5rem 2rem !important;
    line-height: 1.3;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hen-special:hover {
    background: #444444 !important;
    border-color: #444444 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 44, 44, 0.25) !important;
}

.flow-end {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.final-step {
    background: #2C2C2C !important;
    color: white !important;
    border-color: #2C2C2C !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 1.25rem 2rem !important;
    min-width: 200px;
    letter-spacing: 0.5px;
}

.final-step:hover {
    background: #444444 !important;
    border-color: #444444 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.3) !important;
}

/* Animation for flowchart steps */
.flow-step {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

.traditional-path .flow-step:nth-child(1) { animation-delay: 0.1s; }
.traditional-path .flow-step:nth-child(2) { animation-delay: 0.2s; }
.traditional-path .flow-step:nth-child(3) { animation-delay: 0.3s; }
.traditional-path .flow-step:nth-child(4) { animation-delay: 0.4s; }
.traditional-path .flow-step:nth-child(5) { animation-delay: 0.5s; }
.traditional-path .flow-step:nth-child(6) { animation-delay: 0.6s; }
.traditional-path .flow-step:nth-child(7) { animation-delay: 0.7s; }
.traditional-path .flow-step:nth-child(8) { animation-delay: 0.8s; }

.hen-special { animation-delay: 0.3s; }
.final-step { animation-delay: 1s; }

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

/* Responsive flowchart */
@media (max-width: 768px) {
    .flowchart-section {
        padding: 3rem 0;
    }
    
    .flowchart-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .flowchart-labels {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .flow-label {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .flow-paths {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        min-height: auto;
        align-items: start;
    }
    
    .flow-arrows-start,
    .flow-arrows-end {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .traditional-path {
        gap: 0.3rem;
    }
    
    .hen-path {
        justify-content: center;
        align-items: center;
        padding-top: 10rem;
    }
    
    .traditional-path .flow-step {
        font-size: 0.7rem;
        padding: 0.5rem 0.6rem;
        min-height: 35px;
        line-height: 1.2;
    }
    
    .hen-special {
        font-size: 0.8rem !important;
        padding: 1rem 1.2rem !important;
        min-height: 60px;
        line-height: 1.2;
    }
    
    .final-step {
        font-size: 0.9rem !important;
        padding: 0.8rem 1.2rem !important;
        min-width: 150px;
    }
    
    .common-step {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        min-width: 140px;
    }
    
    .arrow {
        height: 15px;
    }
    
    .arrow::after {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid;
    }
}

@media (max-width: 480px) {
    .flowchart-labels {
        gap: 0.5rem;
    }
    
    .flow-label {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .flow-paths {
        gap: 0.5rem;
    }
    
    .flow-arrows-start,
    .flow-arrows-end {
        gap: 0.5rem;
    }
    
    .traditional-path .flow-step {
        font-size: 0.65rem;
        padding: 0.4rem 0.5rem;
        min-height: 32px;
    }
    
    .hen-special {
        font-size: 0.75rem !important;
        padding: 0.8rem 1rem !important;
        min-height: 55px;
    }
    
    .final-step {
        font-size: 0.8rem !important;
        padding: 0.7rem 1rem !important;
        min-width: 130px;
    }
    
    .common-step {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
        min-width: 120px;
    }
    
    .hen-path {
        padding-top: 6rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: white;
    scroll-margin-top: 200px; /* Add space for fixed header */
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #2c3e50;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2C2C2C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.step-image {
    margin-top: 1rem;
}

.calendar-preview {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #e9ecef;
    max-width: 200px;
    margin: 0 auto;
}

.calendar-header {
    text-align: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 4px;
    background: white;
    color: #6c757d;
}

.calendar-day.selected {
    background: #2C2C2C;
    color: white;
}

.matching-preview {
    display: flex;
    justify-content: center;
}

.match-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #e9ecef;
    text-align: center;
}

.match-score {
    font-size: 2rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

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

.match-line {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
}

.match-line:nth-child(1) { width: 80%; }
.match-line:nth-child(2) { width: 60%; }
.match-line:nth-child(3) { width: 90%; }

.location-preview {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #e9ecef;
    text-align: center;
}

.location-pin {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.location-name {
    font-weight: 500;
    color: #2c3e50;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f8f9fa;
    scroll-margin-top: 200px; /* Add space for fixed header */
}

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

.feature {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.feature:hover {
    transform: translateY(-5px);
    border-color: #2C2C2C;
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.15);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.feature p {
    color: #6c757d;
    line-height: 1.6;
}

/* Screening Process Section */
.screening-process {
    padding: 6rem 0;
    background: #f8f9fa;
    scroll-margin-top: 200px; /* Add space for fixed header */
}

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

.screening-step {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.screening-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 44, 44, 0.05), transparent);
    transition: left 0.5s ease;
}

.screening-step:hover {
    transform: translateY(-5px);
    border-color: #2C2C2C;
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.15);
}

.screening-step:hover::before {
    left: 100%;
}

.screening-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.screening-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.screening-step p {
    color: #6c757d;
    line-height: 1.6;
}

.screening-benefits {
    margin-top: 4rem;
    text-align: center;
}

.screening-benefits h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    color: #28a745;
    font-size: 1.2rem;
}

.benefit span:last-child {
    color: #2c3e50;
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: white;
    scroll-margin-top: 200px; /* Add space for fixed header */
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #6c757d;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2C2C2C;
}

.period {
    font-size: 1rem;
    color: #6c757d;
    text-align: center;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.check {
    color: #28a745;
    font-weight: 700;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2C2C2C 0%, #666666 100%);
    color: white;
    text-align: center;
    scroll-margin-top: 200px; /* Add space for fixed header */
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.final-cta .cta-button {
    background: white;
    color: #2C2C2C;
}

.final-cta .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand .logo {
    width: 24px;
    height: 24px;
}

.footer-brand .brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c8c8c8;
}

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

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

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

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

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.3s ease;
}

.close:hover {
    color: #2C2C2C;
}

.signup-form {
    margin-top: 1rem;
}

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

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2C2C2C;
    box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
}

/* Social Media Modal Styles */
.social-content {
    margin-top: 1rem;
}

.social-instructions {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-contact {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
    border: 1px solid #e9ecef;
}

.message-section {
    margin-bottom: 1.5rem;
}

.message-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.copyable-message {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #2c3e50;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    cursor: text;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.copy-button {
    background: #2C2C2C;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.copy-button:hover {
    background: #666666;
    transform: translateY(-1px);
}

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

.thank-you {
    text-align: center;
    color: #28a745;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 0.2rem 0.5rem;
    }
    
    .nav-brand {
        flex-direction: row;
        align-items: center;
    }
    
    .brand-logo-horizontal {
        height: 80px;
        max-width: 400px;
    }
    
    .nav-links {
        display: none;
    }
    
    .language-switcher {
        display: flex;
        margin-left: 0;
        margin-top: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 1rem 4rem;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screening-steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        margin: 0 1rem;
    }
}
