/* 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: #374151;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    font-size: 1.125rem;
    color: #6b7280;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4.5rem;
    }
    
    h2 {
        font-size: 3rem;
    }
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    z-index: 10;
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    color: white;
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e3a8a, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    border-color: #d1d5db;
    background-color: #f9fafb;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.logo-icon span {
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
}

.logo h1 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 640px) {
    .logo h1 {
        font-size: 1.125rem;
    }
    
    .logo-icon {
        width: 1.75rem;
        height: 1.75rem;
        margin-right: 0.5rem;
    }
    
    .logo-icon span {
        font-size: 0.875rem;
    }
}

.nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #111827;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 640px) {
    .header-actions {
        gap: 0.5rem;
    }
    
    .header-actions .btn-secondary {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .header-actions .btn-primary {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc, #ffffff, #eff6ff);
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
    animation: pulse 4s ease-in-out infinite;
}

.bg-circle-1 {
    width: 20rem;
    height: 20rem;
    background: #dbeafe;
    top: -10rem;
    right: -10rem;
}

.bg-circle-2 {
    width: 20rem;
    height: 20rem;
    background: #e0e7ff;
    bottom: -10rem;
    left: -10rem;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    min-height: calc(100vh - 5rem);
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
    color: #1e40af;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #1e40af;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #1e40af, #1e3a8a, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 32rem;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-stats {
        justify-content: flex-start;
    }
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.stat-divider {
    width: 1px;
    height: 2rem;
    background: #d1d5db;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-visual {
        justify-content: flex-end;
    }
}

.dashboard-mockup {
    width: 100%;
    max-width: 28rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.dashboard-header {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.control.red {
    background: #ef4444;
}

.control.yellow {
    background: #eab308;
}

.control.green {
    background: #22c55e;
}

.dashboard-content {
    padding: 1.5rem;
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-high {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.alert-medium {
    background: #fffbeb;
    border: 1px solid #fed7aa;
}

.alert-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-high .alert-icon {
    background: #dc2626;
    color: white;
}

.alert-medium .alert-icon {
    background: #d97706;
    color: white;
}

.alert-icon svg {
    width: 1rem;
    height: 1rem;
}

.alert-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.alert-high .alert-content h4 {
    color: #991b1b;
}

.alert-medium .alert-content h4 {
    color: #92400e;
}

.alert-content p {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.alert-high .alert-content p {
    color: #b91c1c;
}

.alert-medium .alert-content p {
    color: #d97706;
}

.alert-content span {
    font-size: 0.75rem;
    color: #6b7280;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1rem;
}

.dashboard-stat {
    text-align: center;
}

.dashboard-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.dashboard-stat-label {
    font-size: 0.75rem;
    color: #6b7280;
}

.floating-element {
    position: absolute;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
}

.floating-1 {
    top: 2.5rem;
    right: -1rem;
}

.floating-2 {
    bottom: 2.5rem;
    left: -1rem;
}

.floating-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.floating-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.floating-label {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Problem Section */
.problem {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.3s ease;
}

.problem-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-card:nth-child(1) .problem-icon {
    background: #fef2f2;
    color: #dc2626;
}

.problem-card:nth-child(2) .problem-icon {
    background: #fffbeb;
    color: #d97706;
}

.problem-card:nth-child(3) .problem-icon {
    background: #eff6ff;
    color: #2563eb;
}

.problem-icon svg {
    width: 2rem;
    height: 2rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    line-height: 1.7;
}

/* Solution Section */
.solution {
    padding: 5rem 0;
    background: white;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-reverse {
    direction: rtl;
}

.feature-reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.feature-badge svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.feature:nth-child(1) .feature-badge {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #dbeafe;
}

.feature:nth-child(2) .feature-badge {
    background: #faf5ff;
    color: #7c3aed;
    border: 1px solid #e9d5ff;
}

.feature:nth-child(3) .feature-badge {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.feature h3 {
    margin-bottom: 1rem;
}

.feature p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #374151;
}

.feature-list li::before {
    content: '✓';
    color: #16a34a;
    font-weight: 600;
    margin-right: 0.75rem;
}

.feature-visual {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .feature-visual {
        justify-content: flex-end;
    }
}

.feature-mockup {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    width: 100%;
    max-width: 20rem;
}

.feature-mockup h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.redaction-items, .audit-items, .letter-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.redaction-item, .audit-item, .letter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.redaction-item {
    border: 1px solid;
}

.redaction-high {
    background: #fef2f2;
    border-color: #fecaca;
}

.redaction-medium {
    background: #fffbeb;
    border-color: #fed7aa;
}

.redaction-low {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.redaction-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background: #dc2626;
}

.audit-item {
    border: 1px solid #e5e7eb;
}

.audit-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

.audit-meta {
    font-size: 0.75rem;
    color: #6b7280;
}

.audit-btn {
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
}

.audit-export {
    text-align: center;
    padding: 0.75rem;
}

.audit-export-btn {
    color: #2563eb;
    font-weight: 500;
    font-size: 0.875rem;
    background: none;
    border: none;
    cursor: pointer;
}

.letter-item {
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid;
}

.letter-denial {
    background: #fef2f2;
    border-color: #fecaca;
}

.letter-partial {
    background: #fffbeb;
    border-color: #fed7aa;
}

.letter-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.letter-denial .letter-dot {
    background: #dc2626;
    animation: pulse 2s ease-in-out infinite;
}

.letter-partial .letter-dot {
    background: #d97706;
}

.letter-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

.letter-meta {
    font-size: 0.75rem;
    color: #6b7280;
}

.letter-footer {
    text-align: center;
    padding: 0.5rem;
}

.letter-footer span {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: white;
}

.pricing-toggle {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-featured {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    color: white;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #111827;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-card p {
    margin-bottom: 1.5rem;
}

.pricing-featured p {
    color: #dbeafe;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.period {
    color: #6b7280;
    font-size: 1.125rem;
}

.pricing-featured .period {
    color: #dbeafe;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #374151;
}

.pricing-featured .pricing-features li {
    color: #dbeafe;
}

.pricing-features li::before {
    content: '✓';
    color: #16a34a;
    font-weight: 600;
    margin-right: 0.75rem;
}

.pricing-featured .pricing-features li::before {
    color: #dbeafe;
}

/* Security Section */
.security {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .security-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.security-item {
    text-align: center;
}

.security-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.security-item:nth-child(1) .security-icon {
    background: #eff6ff;
    color: #2563eb;
}

.security-item:nth-child(2) .security-icon {
    background: #f0fdf4;
    color: #16a34a;
}

.security-item:nth-child(3) .security-icon {
    background: #faf5ff;
    color: #7c3aed;
}

.security-item:nth-child(4) .security-icon {
    background: #fffbeb;
    color: #d97706;
}

.security-icon svg {
    width: 2rem;
    height: 2rem;
}

.security-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #dbeafe;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
    }
}

.cta .btn-primary {
    background: white;
    color: #1e40af;
}

.cta .btn-primary:hover {
    background: #f9fafb;
}

.cta .btn-secondary {
    border-color: white;
    color: white;
    background: transparent;
}

.cta .btn-secondary:hover {
    background: white;
    color: #1e40af;
}

.cta-benefits {
    color: #dbeafe;
    font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
    background: #f9fafb;
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #1e40af;
    flex-shrink: 0;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.char-count {
    text-align: right;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.g-recaptcha {
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    margin-bottom: 3rem;
}

.footer-brand .logo h3 {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.footer-brand p {
    color: #9ca3af;
    margin: 1rem 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: 1rem;
    width: 100%;
    max-width: 32rem;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #374151;
}

.modal-content {
    padding: 1.5rem;
}

.modal-content p {
    margin-bottom: 1.5rem;
    color: #6b7280;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Responsive Design */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
}
