/* ═══════════════════════════════════════════════════
   Reedy 360 Leads — Static HTML Stylesheet
   Design: Data Command Center
   Colors: Navy #0F1B2D, Teal #0D7377, Orange #FF6B35
   ═══════════════════════════════════════════════════ */

/* ── Font Faces ── */
@font-face { font-family: 'Space Grotesk'; src: url('fonts/space-grotesk.woff2') format('woff2'); font-weight: 300 700; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-semibold.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('fonts/jetbrains-mono.woff2') format('woff2'); font-weight: 400 600; font-display: swap; }

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', sans-serif; font-weight: 400; color: #FAFAF8; background: #0F1B2D; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul, ol { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* ── Typography ── */
.font-heading { font-family: 'Space Grotesk', sans-serif; }
.font-body { font-family: 'Inter', sans-serif; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* ── Layout ── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ── Colors ── */
.bg-navy { background-color: #0F1B2D; }
.bg-dark { background-color: #0a0f1a; }
.bg-teal { background-color: #0D7377; }
.text-teal { color: #0D7377; }
.text-orange { color: #FF6B35; }
.text-white-60 { color: rgba(250, 250, 248, 0.6); }
.text-white-50 { color: rgba(250, 250, 248, 0.5); }
.text-white-40 { color: rgba(250, 250, 248, 0.4); }
.text-white-30 { color: rgba(250, 250, 248, 0.3); }

/* ═══════════════ NAVBAR ═══════════════ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0.5rem 0; transition: all 0.3s; }
.navbar.scrolled { background: rgba(10, 15, 26, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(13,115,119,0.1); padding: 0.35rem 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.navbar-logo { height: 120px; width: auto; margin-top: -10px; margin-bottom: -10px; }
.navbar-links { display: flex; align-items: center; gap: 2rem; }
.navbar-links a { font-size: 0.875rem; font-weight: 500; color: rgba(250, 250, 248, 0.7); transition: color 0.2s; }
.navbar-links a:hover { color: #0D7377; }
.navbar-cta { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.625rem 1.5rem; background: #FF6B35; color: #fff !important; font-weight: 600; font-size: 0.875rem; border-radius: 0.5rem; transition: background 0.2s; }
.navbar-cta:hover { background: #ff8055; }

/* Mobile menu */
.navbar-toggle { display: none; background: none; border: none; color: #FAFAF8; cursor: pointer; padding: 0.5rem; }
.navbar-toggle svg { width: 24px; height: 24px; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10, 15, 26, 0.98); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 1.25rem; color: rgba(250, 250, 248, 0.8); font-weight: 500; }
.mobile-menu a:hover { color: #0D7377; }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: #FAFAF8; cursor: pointer; font-size: 1.5rem; }

@media (max-width: 1023px) {
  .navbar-links { display: none; }
  .navbar-toggle { display: block; }
}

/* ═══════════════ HERO ═══════════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: #0F1B2D; }
.hero-split { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; padding-top: 8rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .hero-split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.hero-content { position: relative; z-index: 10; }
.hero-visual { position: relative; z-index: 10; }
.hero-visual img { width: 100%; border-radius: 0.75rem; box-shadow: 0 25px 60px rgba(0,0,0,0.4); border: 1px solid rgba(13,115,119,0.15); }
.hero-visual .glow { position: absolute; top: -2rem; right: -2rem; width: 12rem; height: 12rem; background: radial-gradient(circle, rgba(13,115,119,0.2), transparent 70%); border-radius: 50%; z-index: -1; }
.hero-visual .glow-orange { position: absolute; bottom: -1.5rem; left: -1.5rem; width: 8rem; height: 8rem; background: radial-gradient(circle, rgba(255,107,53,0.15), transparent 70%); border-radius: 50%; z-index: -1; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem; background: rgba(13,115,119,0.15); border: 1px solid rgba(13,115,119,0.3); border-radius: 9999px; color: #0D7377; font-size: 0.875rem; font-weight: 500; margin-bottom: 2rem; }
.hero-badge .pulse { position: relative; display: inline-flex; width: 8px; height: 8px; }
.hero-badge .pulse-ring { position: absolute; width: 100%; height: 100%; border-radius: 50%; background: #0D7377; opacity: 0.75; animation: ping 1.5s infinite; }
.hero-badge .pulse-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #0D7377; }
@keyframes ping { 0% { transform: scale(1); opacity: 0.75; } 100% { transform: scale(2.5); opacity: 0; } }
.hero h1 { margin-bottom: 1.5rem; }
.hero p { font-size: 1.125rem; color: rgba(250,250,248,0.6); line-height: 1.7; max-width: 40rem; margin-bottom: 2.5rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── Buttons ── */
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; background: #FF6B35; color: #fff; font-weight: 600; font-size: 1rem; border-radius: 0.5rem; border: none; cursor: pointer; transition: all 0.2s; box-shadow: 0 8px 24px rgba(255,107,53,0.25); }
.btn-primary:hover { background: #ff8055; transform: translateY(-1px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #FAFAF8; font-weight: 500; font-size: 1rem; border-radius: 0.5rem; cursor: pointer; transition: all 0.2s; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.btn-teal { display: inline-flex; align-items: center; gap: 0.5rem; color: #0D7377; font-weight: 500; transition: color 0.2s; }
.btn-teal:hover { color: rgba(13,115,119,0.8); }

/* ═══════════════ TRUST BAR ═══════════════ */
.trust-bar { background: #0a0f1a; border-top: 1px solid rgba(13,115,119,0.1); border-bottom: 1px solid rgba(13,115,119,0.1); }
.trust-bar .container { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-number { font-family: 'JetBrains Mono', monospace; font-size: 2rem; font-weight: 600; color: #FF6B35; }
@media (min-width: 768px) { .stat-number { font-size: 2.5rem; } }
.stat-label { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; color: rgba(250,250,248,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.5rem; }

/* ═══════════════ SECTIONS ═══════════════ */
.section { padding: 6rem 0; }
.section-label { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.section-label .line { width: 2rem; height: 1px; background: #0D7377; }
.section-label span { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 600; color: #0D7377; text-transform: uppercase; letter-spacing: 0.15em; }
.section-label-center { text-align: center; margin-bottom: 1rem; }
.section-label-center span { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 600; color: #0D7377; text-transform: uppercase; letter-spacing: 0.15em; }
.section-divider { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.section-divider .line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, rgba(255,107,53,0.3)); }
.section-divider:last-child .line { background: linear-gradient(to left, transparent, rgba(255,107,53,0.3)); }
.section-divider span { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 600; color: #FF6B35; text-transform: uppercase; letter-spacing: 0.15em; }

/* ═══════════════ CARDS ═══════════════ */
.card { padding: 2rem; background: #0F1B2D; border: 1px solid rgba(13,115,119,0.15); border-radius: 0.75rem; transition: all 0.3s; height: 100%; }
.card:hover { border-color: rgba(13,115,119,0.4); }
.card-dark { background: #0a0f1a; }
.card-icon { width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; border-radius: 0.5rem; background: rgba(13,115,119,0.1); color: #0D7377; margin-bottom: 1.5rem; transition: background 0.3s; }
.card:hover .card-icon { background: rgba(13,115,119,0.2); }
.card-icon-orange { background: rgba(255,107,53,0.1); color: #FF6B35; }
.card h3 { margin-bottom: 0.75rem; }
.card p { font-size: 0.875rem; color: rgba(250,250,248,0.5); line-height: 1.7; }
.card .step-num { font-family: 'JetBrains Mono', monospace; font-size: 3rem; color: rgba(13,115,119,0.15); position: absolute; top: 1rem; right: 1rem; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════ INDUSTRY TILES ═══════════════ */
.industry-tile { padding: 1.5rem; background: #0F1B2D; border: 1px solid rgba(13,115,119,0.1); border-radius: 0.75rem; text-align: center; transition: all 0.3s; cursor: pointer; }
.industry-tile:hover { border-color: rgba(13,115,119,0.3); }
.industry-tile .tile-icon { width: 3rem; height: 3rem; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; border-radius: 0.5rem; background: rgba(13,115,119,0.1); color: #0D7377; transition: background 0.3s; }
.industry-tile:hover .tile-icon { background: rgba(13,115,119,0.2); }
.industry-tile span { font-size: 0.875rem; font-weight: 500; color: rgba(250,250,248,0.7); transition: color 0.3s; }
.industry-tile:hover span { color: #FAFAF8; }

/* ═══════════════ WHY US ═══════════════ */
.why-card { position: relative; padding: 2rem; border-radius: 0.75rem; background: linear-gradient(to bottom, rgba(13,115,119,0.05), transparent); border: 1px solid rgba(13,115,119,0.15); height: 100%; }
.why-card .why-icon { width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center; border-radius: 0.75rem; background: rgba(13,115,119,0.1); color: #0D7377; margin-bottom: 1.5rem; }
.why-card h3 { margin-bottom: 1rem; }
.why-card p { font-size: 0.875rem; color: rgba(250,250,248,0.5); line-height: 1.7; }

/* ═══════════════ FORM ═══════════════ */
.form-section { position: relative; overflow: hidden; }
.form-section .pattern-bg { position: absolute; inset: 0; opacity: 0.05; background-size: 400px; }
.form-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem; background: rgba(255,107,53,0.1); border: 1px solid rgba(255,107,53,0.2); border-radius: 9999px; color: #FF6B35; font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem; }
.form-wrap { max-width: 48rem; margin: 0 auto; padding: 2rem; background: #0F1B2D; border: 1px solid rgba(13,115,119,0.15); border-radius: 0.75rem; }
@media (min-width: 768px) { .form-wrap { padding: 2.5rem; } }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: rgba(250,250,248,0.7); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 0.75rem 1rem; background: #0a0f1a; border: 1px solid rgba(13,115,119,0.15); border-radius: 0.5rem; color: #FAFAF8; font-size: 0.875rem; transition: border-color 0.2s; outline: none; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,250,248,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(13,115,119,0.5); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%230D7377' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group select option { background: #0a0f1a; color: #FAFAF8; }
.form-full { grid-column: 1 / -1; }
.btn-submit { width: 100%; padding: 1rem; background: #FF6B35; color: #fff; font-weight: 700; font-size: 1rem; border: none; border-radius: 0.5rem; cursor: pointer; transition: all 0.2s; box-shadow: 0 8px 24px rgba(255,107,53,0.2); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.btn-submit:hover { background: #ff8055; }
.form-note { text-align: center; font-size: 0.75rem; color: rgba(250,250,248,0.3); margin-top: 1rem; }
.form-note a { color: #0D7377; }
.form-note a:hover { text-decoration: underline; }

/* ═══════════════ FOOTER ═══════════════ */
.footer { background: #080c16; border-top: 1px solid rgba(13,115,119,0.1); }
.footer-cta { background: linear-gradient(to right, rgba(13,115,119,0.2), rgba(13,115,119,0.1), rgba(255,107,53,0.1)); border-bottom: 1px solid rgba(13,115,119,0.1); padding: 3rem 0; }
.footer-cta .container { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .footer-cta .container { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-cta h3 { font-size: 1.5rem; }
.footer-cta p { color: rgba(250,250,248,0.6); margin-top: 0.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand p { color: rgba(250,250,248,0.5); font-size: 0.875rem; line-height: 1.7; margin-top: 1.5rem; margin-bottom: 1.5rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: rgba(250,250,248,0.6); margin-bottom: 0.75rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: #0D7377; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { transition: color 0.2s; }
.footer-contact-item a:hover { color: #0D7377; }
.footer-heading { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 600; color: #0D7377; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: rgba(250,250,248,0.5); transition: color 0.2s; }
.footer-links a:hover { color: #FAFAF8; }
.compliance-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.compliance-badge { display: inline-block; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 500; color: #0D7377; background: rgba(13,115,119,0.1); border: 1px solid rgba(13,115,119,0.2); border-radius: 0.25rem; }
.footer-bottom { border-top: 1px solid rgba(250,250,248,0.05); padding: 1.5rem 0; }
.footer-bottom .container { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 640px) { .footer-bottom .container { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.75rem; color: rgba(250,250,248,0.3); }

/* ═══════════════ PAGE HERO (inner pages) ═══════════════ */
.page-hero { padding: 10rem 0 4rem; background: #0F1B2D; }
.page-hero .section-label { margin-bottom: 1.5rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.125rem; color: rgba(250,250,248,0.6); max-width: 40rem; line-height: 1.7; }

/* ═══════════════ TABLES ═══════════════ */
.data-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.875rem; }
.data-table th { text-align: left; padding: 0.75rem 1rem; background: rgba(13,115,119,0.1); color: #0D7377; font-weight: 600; font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid rgba(13,115,119,0.2); }
.data-table td { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(250,250,248,0.05); color: rgba(250,250,248,0.7); }
.data-table tr:hover td { background: rgba(13,115,119,0.03); }

/* ═══════════════ COMPARISON TABLE ═══════════════ */
.compare-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.compare-table th { padding: 1rem; text-align: left; font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; font-weight: 600; }
.compare-table th:first-child { color: rgba(250,250,248,0.5); }
.compare-table th:nth-child(2) { color: rgba(250,250,248,0.4); background: rgba(250,250,248,0.02); }
.compare-table th:nth-child(3) { color: #0D7377; background: rgba(13,115,119,0.05); }
.compare-table td { padding: 0.75rem 1rem; border-top: 1px solid rgba(250,250,248,0.05); font-size: 0.875rem; }
.compare-table td:first-child { color: rgba(250,250,248,0.6); font-weight: 500; }
.compare-table td:nth-child(2) { color: rgba(250,250,248,0.4); background: rgba(250,250,248,0.02); }
.compare-table td:nth-child(3) { color: rgba(250,250,248,0.8); background: rgba(13,115,119,0.05); }

/* ═══════════════ SERVICE DETAIL ═══════════════ */
.service-block { padding: 3rem 0; border-bottom: 1px solid rgba(250,250,248,0.05); }
.service-block:last-of-type { border-bottom: none; }
.service-block h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.service-tagline { color: #0D7377; font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem; font-style: italic; }
.service-desc { color: rgba(250,250,248,0.6); line-height: 1.8; margin-bottom: 1.5rem; max-width: 48rem; }
.service-sub { font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; font-weight: 600; color: #0D7377; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; margin-top: 1.5rem; }
.turnaround { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(13,115,119,0.08); border: 1px solid rgba(13,115,119,0.15); border-radius: 0.5rem; font-size: 0.875rem; color: rgba(250,250,248,0.7); margin-top: 1rem; }
.turnaround svg { color: #0D7377; }

/* ═══════════════ INDUSTRY DETAIL CARDS ═══════════════ */
.industry-card { padding: 2rem; background: #0a0f1a; border: 1px solid rgba(13,115,119,0.15); border-radius: 0.75rem; }
.industry-card h3 { margin-bottom: 0.75rem; }
.industry-card p { font-size: 0.875rem; color: rgba(250,250,248,0.5); line-height: 1.7; }

/* ═══════════════ PROCESS STEPS ═══════════════ */
.process-step { position: relative; padding: 2rem; background: #0a0f1a; border: 1px solid rgba(13,115,119,0.15); border-radius: 0.75rem; }
.process-step .step-badge { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; background: rgba(255,107,53,0.1); color: #FF6B35; font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 0.875rem; border-radius: 0.5rem; margin-bottom: 1rem; }
.process-step h3 { margin-bottom: 0.75rem; }
.process-step p { font-size: 0.875rem; color: rgba(250,250,248,0.5); line-height: 1.7; }

/* ═══════════════ FAQ ═══════════════ */
.faq-item { border-bottom: 1px solid rgba(250,250,248,0.05); padding: 1.5rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; color: #FAFAF8; margin-bottom: 0.75rem; cursor: pointer; display: flex; align-items: center; gap: 0.75rem; }
.faq-q::before { content: 'Q'; display: inline-flex; align-items: center; justify-content: center; width: 1.5rem; height: 1.5rem; background: rgba(13,115,119,0.1); color: #0D7377; font-size: 0.75rem; font-weight: 700; border-radius: 0.25rem; flex-shrink: 0; }
.faq-a { color: rgba(250,250,248,0.5); font-size: 0.875rem; line-height: 1.7; padding-left: 2.25rem; }

/* ═══════════════ LEGAL PAGES ═══════════════ */
.legal-content { max-width: 48rem; margin: 0 auto; padding: 4rem 0; }
.legal-content h2 { font-size: 1.5rem; color: #FAFAF8; margin-top: 3rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(13,115,119,0.15); }
.legal-content h3 { font-size: 1.125rem; color: #0D7377; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.legal-content p { color: rgba(250,250,248,0.6); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { color: rgba(250,250,248,0.6); line-height: 1.8; margin-bottom: 0.5rem; position: relative; padding-left: 1rem; }
.legal-content ul li::before { content: ''; position: absolute; left: 0; top: 0.75rem; width: 4px; height: 4px; background: #0D7377; border-radius: 50%; }
.legal-content strong { color: #FAFAF8; }
.legal-date { font-size: 0.875rem; color: rgba(250,250,248,0.4); margin-bottom: 2rem; }

/* ═══════════════ CTA SECTION ═══════════════ */
.cta-section { padding: 5rem 0; text-align: center; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: rgba(250,250,248,0.5); font-size: 1.125rem; max-width: 36rem; margin: 0 auto 2rem; line-height: 1.7; }

/* ═══════════════ ABOUT PAGE ═══════════════ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: 0.25rem; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.about-img .accent-1 { position: absolute; bottom: -1rem; right: -1rem; width: 6rem; height: 6rem; background: rgba(13,115,119,0.1); border-radius: 0.25rem; z-index: -1; }
.about-img .accent-2 { position: absolute; top: -1rem; left: -1rem; width: 4rem; height: 4rem; background: rgba(255,107,53,0.1); border-radius: 0.25rem; z-index: -1; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: rgba(250,250,248,0.6); line-height: 1.8; margin-bottom: 1rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(250,250,248,0.05); }
.about-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.75rem; font-weight: 700; color: #0D7377; }
.about-stat-label { font-size: 0.875rem; color: rgba(250,250,248,0.4); }

/* ═══════════════ CONTACT PAGE ═══════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 7fr 5fr; } }
.contact-info-card { padding: 2rem; background: #0a0f1a; border: 1px solid rgba(13,115,119,0.15); border-radius: 0.75rem; margin-bottom: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .ci-icon { width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; background: rgba(13,115,119,0.1); border-radius: 0.5rem; color: #0D7377; flex-shrink: 0; }
.contact-info-item .ci-label { font-size: 0.75rem; color: rgba(250,250,248,0.4); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-bottom: 0.25rem; }
.contact-info-item .ci-value { font-size: 0.875rem; color: rgba(250,250,248,0.8); }
.contact-info-item .ci-value a { color: rgba(250,250,248,0.8); }
.contact-info-item .ci-value a:hover { color: #0D7377; }

/* ═══════════════ SVG ICONS (inline) ═══════════════ */
.icon { width: 24px; height: 24px; display: inline-block; vertical-align: middle; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 28px; height: 28px; }

/* ═══════════════ UTILITIES ═══════════════ */
.text-center { text-align: center; }
.mb-16 { margin-bottom: 4rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-10 { margin-top: 2.5rem; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
