/* ===== CLEANWORLD BRAND SYSTEM ===== */
/* Shared CSS for all customer-facing pages */
/* Extracted from homepage — single source of truth */

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy-deep: #0B1D33;
    --navy: #142133;
    --navy-light: #264B6F;
    --gold: #C9A227;
    --gold-hover: #B48D1E;
    --gold-glow: rgba(201,162,39,0.15);
    --text-primary: #142133;
    --text-secondary: #465468;
    --text-muted: #6B7A8D;
    --border-light: #E5EAF0;
    --bg-light: #F7F8FA;
    --bg-gray: #F5F7FA;
    --bg-white: #FFFFFF;
    --emergency-red: #D94B45;
    --emergency-red-hover: #C53D37;
    --shadow-card: 0 12px 28px rgba(14,25,40,0.08);
    --shadow-card-hover: 0 18px 38px rgba(14,25,40,0.12);
    --shadow-btn: 0 8px 20px rgba(0,0,0,0.14);
    --shadow-btn-hover: 0 10px 24px rgba(0,0,0,0.18);
    --radius: 16px;
    --radius-btn: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ===== BUTTON SYSTEM ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    border: none;
    border-radius: var(--radius-btn);
    padding: 16px 28px;
    font-weight: 700;
    box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-btn-hover);
    color: var(--navy-deep);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255,255,255,0.85);
    border-radius: var(--radius-btn);
    padding: 14px 26px;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.btn-secondary-light {
    background: transparent;
    color: var(--navy-deep);
    border: 2px solid var(--navy-deep);
    border-radius: var(--radius-btn);
    padding: 14px 26px;
}
.btn-secondary-light:hover {
    background: var(--navy-deep);
    color: #FFFFFF;
}

.btn-tertiary {
    background: none;
    border: none;
    color: var(--gold);
    font-weight: 700;
    padding: 8px 0;
    gap: 6px;
}
.btn-tertiary svg { transition: transform 0.2s ease; }
.btn-tertiary:hover svg { transform: translateX(2px); }
.btn-tertiary:hover { color: var(--gold-hover); }

.btn-emergency {
    background: var(--emergency-red);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-btn);
    padding: 16px 28px;
    box-shadow: var(--shadow-btn);
}
.btn-emergency:hover {
    background: var(--emergency-red-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-btn-hover);
}

@media (max-width: 768px) {
    .btn-primary, .btn-secondary, .btn-secondary-light, .btn-emergency {
        width: 100%;
        min-height: 54px;
        justify-content: center;
    }
}

/* ===== HEADER / NAVIGATION ===== */
.mobile-utility-bar {
    display: none;
    background: #081624;
    height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 201;
}
.mobile-utility-bar a {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.mobile-utility-bar svg { width: 14px; height: 14px; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: transparent;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
    background: var(--navy-deep);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.header-logo img {
    height: 40px;
    width: auto;
    transition: opacity 0.25s;
}
.header-logo-navy { display: none; }

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.header-nav a {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    transition: color 0.2s;
    position: relative;
}
.header-nav a:hover,
.header-nav a.active {
    color: var(--gold);
}
.header-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}
.header-phone:hover { color: var(--gold); }
.header-phone svg { width: 16px; height: 16px; }

.header-cta {
    font-size: 14px;
    padding: 12px 22px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* Mobile menu overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 299;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -84%;
    width: 84%;
    max-width: 380px;
    height: 100%;
    background: var(--navy-deep);
    z-index: 300;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-header img { height: 32px; width: auto; }
.mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-links {
    list-style: none;
    padding: 16px 0;
    flex: 1;
}
.mobile-menu-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s;
}
.mobile-menu-links a:hover { color: var(--gold); }

.mobile-menu-footer {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Sticky mobile call bar */
.sticky-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--gold);
    display: none;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-call-bar a {
    padding: 14px;
    text-align: center;
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 14px;
}
.sticky-call-bar a + a { border-left: 1px solid rgba(11,29,51,0.15); }

@media (max-width: 960px) {
    .header-nav { display: none; }
    .header-phone { display: none; }
    .hamburger { display: block; }
}

@media (max-width: 768px) {
    .mobile-utility-bar { display: flex; }
    .site-header {
        top: 42px;
        height: 74px;
        padding: 0 16px;
    }
    .header-cta { display: none; }
    .sticky-call-bar { display: grid; }
    body { padding-bottom: 56px; }
}

@media (min-width: 769px) {
    .mobile-utility-bar { display: none; }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 84vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg picture, .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,29,51,0.68) 0%, rgba(11,29,51,0.55) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 120px 40px 80px;
}
.hero-headline {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.hero-sub {
    color: rgba(255,255,255,0.92);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.5;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
}
.hero-trust-row {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
}
.hero-trust-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero { min-height: auto; }
    .hero-content {
        padding: 130px 20px 60px;
        max-width: 100%;
    }
    .hero-headline { font-size: 40px; }
    .hero-sub { font-size: 18px; }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .hero-trust-row {
        gap: 16px;
    }
    .hero-trust-item { font-size: 12px; }
}

/* ===== SECTION SHARED STYLES ===== */
.section {
    padding: 84px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.section-white { background: var(--bg-white); }
.section-gray { background: var(--bg-gray); }
.section-navy {
    background: var(--navy-deep);
}
.section-navy .section-title { color: #FFFFFF; }
.section-navy .section-subtitle { color: rgba(255,255,255,0.7); }
.section-dark {
    background: var(--navy-deep);
}
.section-dark .section-title { color: #FFFFFF; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }
.section-light {
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .section-title { font-size: 28px; }
    .section-subtitle { font-size: 16px; }
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card-service {
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}
.card-service:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}
.card-service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border: 2px solid var(--gold);
    border-radius: 14px;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.card-service-icon svg { width: 28px; height: 28px; color: var(--gold); }
.card-service-body {
    padding: 24px;
}
.card-service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.card-service-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.5;
}

@media (max-width: 800px) {
    .services-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 56px;
}
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.trust-badge-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: 12px;
}
.trust-badge-icon svg { width: 22px; height: 22px; color: var(--gold); }
.trust-badge-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    max-width: 100px;
    line-height: 1.3;
}

@media (max-width: 800px) {
    .trust-badges { gap: 20px; }
}

/* ===== REVIEWS / TESTIMONIALS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card-review {
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.card-testimonial {
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    padding: 32px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}
.review-stars svg { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); }
.review-stars.centered { justify-content: center; }
.review-quote {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    font-style: italic;
}
.review-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
}

@media (max-width: 800px) {
    .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--navy-deep);
    padding: 84px 0;
    text-align: center;
}
.cta-banner h2 {
    font-size: 36px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
}
.cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 650px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.cta-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.cta-banner-emergency {
    background: linear-gradient(135deg, #1a0a0a 0%, #2d1111 50%, #1a0a0a 100%);
    border-top: 3px solid var(--emergency-red);
    padding: 64px 0;
    text-align: center;
}
.cta-banner-emergency h2 {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
}
.cta-banner-emergency p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 650px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-banner { padding: 56px 0; }
    .cta-banner h2 { font-size: 28px; }
    .cta-banner p { font-size: 16px; }
    .cta-banner-buttons { flex-direction: column; align-items: center; }
    .cta-banner-emergency { padding: 48px 0; }
    .cta-banner-emergency h2 { font-size: 26px; }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: var(--bg-white);
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.trust-strip-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}
.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}
.trust-strip-item svg { width: 18px; height: 18px; color: var(--gold); }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy-deep);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}
.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== SERVICE PAGE SPECIFIC ===== */
.service-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.service-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.service-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Process steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    counter-reset: step;
}
.process-step {
    text-align: center;
    counter-increment: step;
}
.process-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.process-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.process-step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.section-navy .process-step h4 { color: #FFFFFF; }
.section-navy .process-step p { color: rgba(255,255,255,0.7); }

/* Feature list with gold checks */
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.5;
}
.feature-list li svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.section-navy .feature-list li { color: rgba(255,255,255,0.9); }
.section-navy .feature-list li svg { color: var(--gold); }

/* Two column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 768px) {
    .two-col { grid-template-columns: 1fr; gap: 32px; }
    .service-hero { min-height: auto; }
}

/* ===== FORM CONTAINER ===== */
.form-container {
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    padding: 40px;
    max-width: 640px;
    margin: 0 auto;
}
.form-container h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.form-container .form-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-btn);
    background: var(--bg-white);
    color: var(--text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 500px) {
    .form-container { padding: 24px 16px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-white { color: #FFFFFF; }
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* SVG utility */
.star-svg { fill: var(--gold); width: 18px; height: 18px; }
.check-svg { width: 22px; height: 22px; color: var(--gold); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.arrow-icon { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ===== LEGAL PAGE STYLES ===== */
.legal-header {
    background: var(--navy-deep);
    padding: 120px 0 48px;
    text-align: center;
}
.legal-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}
.legal-header p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
}
.legal-content {
    padding: 56px 0 84px;
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 40px 0 16px;
}
.legal-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 32px 0 12px;
}
.legal-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
.legal-content li {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}
.legal-content a {
    color: var(--gold);
    font-weight: 600;
}
.legal-content a:hover {
    color: var(--gold-hover);
}

@media (max-width: 768px) {
    .legal-header { padding: 100px 0 36px; }
    .legal-header h1 { font-size: 32px; }
    .legal-content { padding: 40px 0 56px; }
}
