:root {
    --navy-dark: #0d1b2a;
    --navy: #1b263b;
    --navy-light: #2d3e50;
    --emergency-red: #dc2626;
    --emergency-red-dark: #b91c1c;
    --emergency-red-light: #ef4444;
    --teal: #0d9488;
    --teal-light: #14b8a6;
    --teal-pale: #99f6e4;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --hero-gradient: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #2d3e50 100%);
    --cta-gradient: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif; font-size: 16px; line-height: 1.6; color: var(--navy-dark); background: var(--navy-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 16px 0; transition: all 0.3s ease; }
.header-scrolled { background: rgba(13, 27, 42, 0.95); backdrop-filter: blur(12px); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }
.header-content { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 88px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255, 255, 255, 0.8); font-size: 15px; font-weight: 500; transition: color 0.2s ease; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--cta-gradient); color: white !important; padding: 12px 24px; border-radius: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; font-size: 14px; transition: all 0.3s ease; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { width: 24px; height: 2px; background: white; transition: all 0.3s ease; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy-dark); z-index: 100; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.active { display: flex; }
.mobile-menu a { color: white; font-size: 24px; font-weight: 600; }
.mobile-menu-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: white; font-size: 32px; cursor: pointer; }

/* Hero */
.hero { min-height: 100vh; background: url('hero-pattern.svg') center/cover no-repeat, var(--hero-gradient); padding: 120px 0 80px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(220, 38, 38, 0.15); border: 1px solid rgba(220, 38, 38, 0.3); color: var(--emergency-red-light); padding: 8px 16px; border-radius: 100px; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.hero-title { font-size: 4rem; font-weight: 800; color: white; line-height: 1.1; margin: 24px 0; }
.hero-title .highlight { color: var(--emergency-red); position: relative; }
.hero-title .highlight::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 8px; background: var(--teal); opacity: 0.5; transform: skewX(-12deg); }
.hero-subtitle { font-size: 1.25rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 24px; line-height: 1.6; }
.hero-subtitle strong { color: white; }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.trust-row span { color: var(--teal-pale); font-size: 15px; font-weight: 500; }
.hero-rating { display: flex; align-items: center; gap: 8px; color: white; }
.hero-rating .stars { color: #fbbf24; font-size: 20px; }
.hero-rating .count { color: rgba(255, 255, 255, 0.6); font-size: 14px; }

/* Form Card */
.hero-form-card { background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 32px; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4); }
.form-header { text-align: center; margin-bottom: 24px; }
.form-header h2 { color: white; font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.form-header p { color: rgba(255, 255, 255, 0.7); font-size: 15px; }
.form-header .red { color: var(--emergency-red-light); font-weight: 600; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-input { width: 100%; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 12px; padding: 16px 18px; font-size: 16px; color: white; transition: all 0.2s ease; font-family: inherit; }
.form-input::placeholder { color: rgba(255, 255, 255, 0.5); }
.form-input:focus { outline: none; border-color: var(--emergency-red); background: rgba(255, 255, 255, 0.1); box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2); }
.form-input option { background: var(--navy); color: white; }
textarea.form-input { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; background: var(--cta-gradient); color: white; border: none; border-radius: 12px; padding: 18px 32px; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.privacy-note { text-align: center; font-size: 12px; color: rgba(255, 255, 255, 0.5); margin-top: 8px; }
.success-message { display: none; text-align: center; padding: 40px 20px; }
.success-message.show { display: block; }
.success-icon { width: 80px; height: 80px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; color: white; margin: 0 auto 20px; }
.success-message h3 { color: white; font-size: 28px; margin-bottom: 12px; }
.success-message p { color: rgba(255, 255, 255, 0.7); font-size: 16px; }

/* Stats Bar */
.stats-bar { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); border-top: 3px solid var(--emergency-red); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255, 255, 255, 0.1); }
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 32px; margin-bottom: 8px; }
.stat-value { font-size: 28px; font-weight: 800; color: white; }
.stat-label { font-size: 14px; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Section Headers */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-label { display: inline-block; color: var(--teal-light); background: rgba(13, 148, 136, 0.15); padding: 8px 16px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.section-label.dark { color: var(--emergency-red); background: rgba(220, 38, 38, 0.1); }
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
.section-header.light h2 { color: white; }
.section-header p { font-size: 1.125rem; color: var(--gray-500); }
.section-header.light p { color: rgba(255, 255, 255, 0.7); }

/* Services */
.services-section { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 100px 0; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, minmax(180px, auto)); gap: 16px; }
.service-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 28px; transition: all 0.3s ease; display: flex; flex-direction: column; }
.service-card:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--teal); transform: translateY(-4px); }
.service-card--featured { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(220, 38, 38, 0.05) 100%); border-color: rgba(220, 38, 38, 0.3); }
.service-card--featured:hover { border-color: var(--emergency-red); }
.service-card--wide { grid-column: span 2; }
.service-card--image { background-image: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3)), url('emergency-repair.jpg'); background-size: cover; background-position: center; justify-content: flex-end; }
.service-badge { display: inline-block; background: rgba(220, 38, 38, 0.2); color: var(--emergency-red-light); padding: 6px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; width: fit-content; }
.service-card h3 { color: white; font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.service-card--featured h3 { font-size: 2rem; }
.service-card p { color: rgba(255, 255, 255, 0.7); font-size: 15px; line-height: 1.6; flex-grow: 1; }
.service-highlight { margin-top: 16px; color: var(--teal-light); font-weight: 700; font-size: 18px; }
.service-price { margin-top: auto; padding-top: 16px; color: var(--teal-pale); font-weight: 600; font-size: 14px; }
.service-icon { font-size: 32px; margin-bottom: 12px; }

/* Why Us */
.why-us-section { background: var(--gray-50); padding: 100px 0; }
.why-us-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.why-us-image img { border-radius: 24px; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); width: 100%; height: auto; }
.why-us-content h2 { color: var(--navy-dark); }
.why-us-content p { color: var(--gray-500); font-size: 1.125rem; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.feature-card { background: white; border: 1px solid var(--gray-200); border-radius: 16px; padding: 24px; transition: all 0.3s ease; }
.feature-card:hover { border-color: var(--teal); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transform: translateY(-4px); }
.feature-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.feature-card h4 { font-size: 18px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* How It Works */
.how-it-works-section { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 100px 0; }
.steps-container { display: flex; align-items: center; justify-content: center; gap: 24px; margin: 60px 0; }
.step-card { background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 24px; padding: 48px 32px 40px; text-align: center; flex: 1; max-width: 300px; position: relative; }
.step-number { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background: var(--emergency-red); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; }
.step-icon { font-size: 48px; margin-bottom: 20px; }
.step-card h3 { color: white; font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step-card p { color: rgba(255, 255, 255, 0.7); font-size: 15px; line-height: 1.6; }
.step-time { margin-top: 16px; color: var(--teal-light); font-weight: 600; font-size: 14px; }
.step-connector { color: var(--emergency-red); font-size: 32px; font-weight: 700; }
.step-card--highlighted { background: rgba(220, 38, 38, 0.15); border-color: rgba(220, 38, 38, 0.3); }
.cta-centered { text-align: center; }
.btn-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--cta-gradient); color: white; padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4); }

/* Service Areas */
.service-areas-section { background: var(--navy); padding: 100px 0; }
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
.area-group { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 28px; }
.area-group h4 { color: white; font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tag { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.9); padding: 8px 16px; border-radius: 100px; font-size: 14px; transition: all 0.2s ease; }
.area-tag:hover { background: var(--teal); border-color: var(--teal); color: white; }
.area-group--highlighted { background: rgba(220, 38, 38, 0.1); border-color: rgba(220, 38, 38, 0.2); }
.areas-note { text-align: center; margin-top: 40px; color: rgba(255, 255, 255, 0.7); font-size: 15px; }

/* Testimonials */
.testimonials-section { background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%); padding: 100px 0; }
.rating-summary { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; }
.rating-summary .stars { color: #fbbf24; font-size: 24px; }
.rating-summary .rating-value { font-size: 20px; font-weight: 800; color: var(--navy-dark); }
.rating-summary .rating-count { color: var(--gray-500); font-size: 16px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card { background: white; border: 1px solid var(--gray-200); border-radius: 20px; padding: 32px; transition: all 0.3s ease; }
.testimonial-card:hover { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); transform: translateY(-4px); }
.testimonial-stars { color: #fbbf24; font-size: 20px; margin-bottom: 16px; }
.testimonial-quote { font-size: 16px; line-height: 1.7; color: #334155; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 48px; height: 48px; background: linear-gradient(135deg, var(--emergency-red), var(--emergency-red-dark)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }
.author-name { display: block; font-weight: 700; color: var(--navy-dark); }
.author-location { font-size: 14px; color: var(--gray-500); }

/* FAQ */
.faq-section { background: var(--navy-dark); padding: 100px 0; }
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; margin-bottom: 12px; overflow: hidden; transition: all 0.3s ease; }
.faq-item.active { background: rgba(255, 255, 255, 0.08); border-color: var(--teal); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px; background: transparent; border: none; color: white; font-size: 17px; font-weight: 600; text-align: left; cursor: pointer; font-family: inherit; }
.faq-icon { font-size: 24px; color: var(--teal); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 24px 24px; color: rgba(255, 255, 255, 0.7); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }

/* Final CTA */
.final-cta-section { background: linear-gradient(135deg, var(--emergency-red) 0%, #991b1b 100%); padding: 80px 0; text-align: center; }
.final-cta-section h2 { color: white; font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
.final-cta-section > .container > p { color: rgba(255, 255, 255, 0.9); font-size: 18px; margin-bottom: 32px; }
.final-cta-section .btn-cta { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); }
.final-cta-section .btn-cta:hover { box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5); }
.compact-form { display: flex; gap: 12px; max-width: 600px; margin: 0 auto; }
.compact-form input { flex: 1; background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 12px; padding: 16px 20px; color: white; font-size: 16px; font-family: inherit; }
.compact-form input::placeholder { color: rgba(255, 255, 255, 0.7); }
.compact-form input:focus { outline: none; border-color: white; background: rgba(255, 255, 255, 0.2); }
.compact-form button { background: white; color: var(--emergency-red); border: none; border-radius: 12px; padding: 16px 32px; font-weight: 700; font-size: 16px; cursor: pointer; transition: all 0.3s ease; font-family: inherit; white-space: nowrap; }
.compact-form button:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }

/* Footer */
.footer { background: var(--navy-dark); padding: 60px 0 24px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-content { display: flex; justify-content: space-between; align-items: center; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer-logo img { height: 40px; margin-bottom: 12px; }
.footer-logo p { color: rgba(255, 255, 255, 0.6); font-size: 14px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); font-size: 15px; transition: color 0.2s ease; }
.footer-links a:hover { color: white; }
.footer-bottom { text-align: center; padding-top: 24px; }
.footer-bottom p { color: rgba(255, 255, 255, 0.4); font-size: 13px; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 3rem; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .service-card--featured { grid-column: span 2; grid-row: span 1; }
    .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
    .steps-container { flex-direction: column; }
    .step-connector { transform: rotate(90deg); }
    .step-card { max-width: 100%; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero { padding: 100px 0 60px; }
    .hero-title { font-size: 2.25rem; }
    .hero-subtitle { font-size: 1rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item { border-right: none; padding: 16px; }
    .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .bento-grid { grid-template-columns: 1fr; }
    .service-card--featured, .service-card--wide { grid-column: span 1; }
    .features-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.875rem; }
    .compact-form { flex-direction: column; }
    .footer-content { flex-direction: column; gap: 32px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .final-cta-section h2 { font-size: 1.875rem; }
    .lang-switcher:not(.mobile) { display: none; }
    .lang-switcher.mobile { display: flex; }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.lang-switcher.mobile {
    margin: 24px 0 0 0;
    padding-left: 0;
    border-left: none;
    justify-content: center;
}
.lang-active {
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}
.lang-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.lang-link:hover {
    color: var(--white);
}

/* Screen Reader Only - Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Form Field Wrapper */
.form-field {
    width: 100%;
}

/* Form Reassurance Text */
.form-reassurance {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* Emergency Section */
.emergency-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, var(--navy-dark) 50%, var(--navy) 100%);
    padding: 100px 0;
    border-top: 3px solid var(--emergency-red);
}

.emergency-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.emergency-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.emergency-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--emergency-red);
    transform: translateY(-4px);
}

.emergency-step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--emergency-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.emergency-step h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 8px;
}

.emergency-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.emergency-warning {
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    margin-top: 32px;
}

.emergency-warning p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin: 0;
}

.emergency-warning strong {
    color: var(--emergency-red-light);
}

.btn-cta--emergency {
    background: linear-gradient(135deg, var(--emergency-red) 0%, #991b1b 100%);
    animation: pulse-emergency 2s infinite;
}

@keyframes pulse-emergency {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 0 20px 10px rgba(220, 38, 38, 0); }
}

/* Legal Content Pages */
.legal-content {
    background: var(--gray-50);
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.legal-updated {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p {
    color: var(--gray-500);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    color: var(--gray-500);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content li strong {
    color: var(--navy-dark);
}

.legal-content a {
    color: var(--teal);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--teal-light);
}

.legal-back {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

/* Responsive - Emergency Section */
@media (max-width: 768px) {
    .emergency-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .emergency-step {
        padding: 24px 20px;
    }
    
    .legal-content {
        padding: 120px 0 60px;
    }
    
    .legal-content h1 {
        font-size: 1.875rem;
    }
    
    .legal-content h2 {
        font-size: 1.25rem;
    }
}
