:root {
    --navy: #0B1D3A;
    --navy-dark: #061224;
    --navy-light: #132B50;
    --gold: #C8953E;
    --gold-light: #D4A853;
    --gold-dark: #A67A2E;
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --gray-100: #F0F1F3;
    --gray-200: #E2E4E8;
    --gray-300: #C5C9D0;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --text: #1A1A2E;
    --text-light: #4A4A5A;
    --text-muted: #6B7280;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
    color: var(--navy);
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); }
h3 { font-size: clamp(1.125rem, 1.8vw, 1.375rem); }
h4 { font-size: 1rem; }

p { line-height: 1.7; color: var(--text-light); }
a { color: inherit; text-decoration: none; transition: color var(--transition-base); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-gray { background-color: var(--off-white); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.gold-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 16px 0;
    border-radius: 2px;
}

.gold-divider.centered { margin-left: auto; margin-right: auto; }
.gold-text { color: var(--gold); }
.hidden { display: none; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    gap: 8px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200,149,62,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--white);
    transform: translateY(-1px);
}

.btn-lg { padding: 14px 36px; font-size: 0.9375rem; }
.btn-block { width: 100%; }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--navy-dark);
    padding: 7px 0;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.55);
}

.top-bar-left a { color: rgba(255,255,255,0.55); transition: color var(--transition-fast); }
.top-bar-left a:hover { color: var(--gold-light); }
.top-bar-divider { color: rgba(255,255,255,0.15); }

.top-bar-right a {
    color: var(--gold-light);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.top-bar-right a:hover { color: var(--white); }
.top-bar i { margin-right: 6px; }

/* ===== HEADER ===== */
#header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: all var(--transition-base);
    background: var(--navy);
}

#header.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
    padding: 8px 0;
}

#header.header-solid {
    background: var(--navy);
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-shield {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-shield span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.logo-shield-sm { width: 32px; height: 32px; }
.logo-shield-sm span { font-size: 0.8125rem; }
.logo-text { display: flex; flex-direction: column; }

.logo-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

#main-nav ul { display: flex; gap: 28px; align-items: center; }

#main-nav a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    transition: color var(--transition-fast);
    position: relative;
    letter-spacing: 0.2px;
}

#main-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition-base);
}

#main-nav a:hover, #main-nav a.active { color: var(--white); }
#main-nav a:hover::after, #main-nav a.active::after { width: 100%; }

.header-cta-btn {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.header-cta-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(200,149,62,0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
#hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-light) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(200,149,62,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(200,149,62,0.04) 0%, transparent 50%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,149,62,0.1);
    border: 1px solid rgba(200,149,62,0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease forwards;
}

#hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}

.trust-item i { color: var(--gold); font-size: 0.875rem; }

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    transition: all var(--transition-base);
    animation: bounce 2s infinite;
}

.hero-scroll a:hover { border-color: var(--gold); color: var(--gold); }

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-content p { margin-bottom: 14px; font-size: 0.9375rem; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.about-feature i { color: var(--gold); font-size: 0.875rem; }

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(200,149,62,0.15);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(200,149,62,0.07);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.service-icon i {
    font-size: 1.25rem;
    color: var(--gold);
    transition: color var(--transition-base);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.service-card:hover .service-icon i { color: var(--white); }
.service-card h3 { margin-bottom: 10px; font-size: 1.125rem; }

.service-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* ===== STATS ===== */
#stats {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 56px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 6px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-prefix, .stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ===== PROCESS ===== */
.process-timeline {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light), var(--gray-200));
}

.process-step {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(200,149,62,0.3);
}

.step-content { padding-top: 8px; }
.step-content h3 { margin-bottom: 6px; }
.step-content p { font-size: 0.875rem; line-height: 1.65; }

/* ===== WHY US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(200,149,62,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.why-icon i { font-size: 1.125rem; color: var(--gold); }
.why-card h3 { margin-bottom: 8px; font-size: 1rem; }
.why-card p { font-size: 0.875rem; line-height: 1.6; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
#cta-banner {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

#cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(200,149,62,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(200,149,62,0.04) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}

.cta-content h2 { color: var(--white); margin-bottom: 14px; }

.cta-content p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-cards {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-card,
.contact-hours-card {
    background: var(--navy);
    padding: 32px;
    border-radius: var(--radius-md);
}

.contact-info-card h3,
.contact-hours-card h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-detail:last-child { margin-bottom: 0; }

.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(200,149,62,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i { color: var(--gold); font-size: 0.875rem; }

.contact-detail strong {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-detail p { color: var(--white); font-size: 0.875rem; line-height: 1.5; }

.contact-detail a {
    color: var(--white);
    transition: color var(--transition-fast);
}

.contact-detail a:hover { color: var(--gold-light); }

.hours-list { display: flex; flex-direction: column; gap: 10px; }

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-row:last-child { border-bottom: none; padding-bottom: 0; }

/* ===== FOOTER ===== */
#footer {
    background: var(--navy-dark);
    padding-top: 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-about p {
    color: rgba(255,255,255,0.45);
    font-size: 0.875rem;
    line-height: 1.7;
}

#footer h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

#footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.footer-links ul li, .footer-services ul li { margin-bottom: 10px; }

.footer-links a, .footer-services a {
    color: rgba(255,255,255,0.45);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover, .footer-services a:hover {
    color: var(--gold-light);
    padding-left: 3px;
}

.footer-contact ul li {
    color: rgba(255,255,255,0.45);
    font-size: 0.875rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255,255,255,0.45);
    transition: color var(--transition-fast);
}

.footer-contact a:hover { color: var(--gold-light); }

.footer-contact i {
    color: var(--gold);
    margin-right: 8px;
    width: 14px;
    text-align: center;
}

.footer-bottom { padding: 20px 0; }
.footer-bottom .container { text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.75rem; }

.footer-disclaimer {
    margin-top: 10px;
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.2);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.875rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition-base);
    z-index: 100;
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(200,149,62,0.4);
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 140px 0 64px;
    text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.55); font-size: 1rem; }

/* ===== PRIVACY PAGE ===== */
.privacy-content .privacy-wrapper { max-width: 760px; margin: 0 auto; }

.privacy-updated {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.privacy-section { margin-bottom: 32px; }
.privacy-section h2 { font-size: 1.375rem; margin-bottom: 14px; padding-top: 6px; }

.privacy-section h3 {
    font-size: 1.0625rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--navy);
}

.privacy-section p { margin-bottom: 10px; font-size: 0.875rem; }

.privacy-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 14px;
}

.privacy-section ul li {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

.privacy-section a { color: var(--gold); font-weight: 500; transition: color var(--transition-fast); }
.privacy-section a:hover { color: var(--gold-dark); }

.privacy-contact {
    background: var(--off-white);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-top: 14px;
    border-left: 3px solid var(--gold);
}

.privacy-contact p { margin-bottom: 3px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 320px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .contact-cards { grid-template-columns: 1fr; max-width: 600px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .header-cta-btn { display: none; }
    .mobile-toggle { display: flex; }

    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-dark);
        padding: 72px 28px 28px;
        transition: right var(--transition-base);
        box-shadow: -4px 0 20px rgba(0,0,0,0.3);
        z-index: 999;
    }

    #main-nav.open { right: 0; }
    #main-nav ul { flex-direction: column; gap: 0; }
    #main-nav li { border-bottom: 1px solid rgba(255,255,255,0.05); }
    #main-nav a { display: block; padding: 14px 0; font-size: 0.9375rem; }
    #main-nav a::after { display: none; }

    #hero { min-height: 92vh; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; align-items: center; gap: 12px; }

    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-number { font-size: 2rem; }
    .stat-prefix, .stat-suffix { font-size: 1rem; }

    .process-timeline::before { left: 22px; }
    .step-number { width: 48px; height: 48px; font-size: 0.9375rem; }
    .process-step { gap: 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .section { padding: 56px 0; }
    .section-header { margin-bottom: 36px; }
    #stats { padding: 40px 0; }
    #cta-banner { padding: 48px 0; }
    .page-hero { padding: 110px 0 48px; }
    .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-badge { font-size: 0.625rem; padding: 5px 12px; }
    .hero-subtitle { font-size: 0.9375rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .stat-number { font-size: 1.75rem; }
    .contact-info-card, .contact-hours-card { padding: 20px; }
}
