/* ── RJC Management LLC — Design System ───────────────────────────────────── */
:root {
  --navy:       #1B3A6B;
  --navy-dark:  #0D1B35;
  --navy-mid:   #152B52;
  --navy-deep:  #080F1E;
  --green:      #27AE60;
  --green-light:#2ECC71;
  --green-dark: #1E8449;
  --gray:       #64748B;
  --gray-light: #94A3B8;
  --white:      #F8FAFC;
  --surface:    #111827;
  --surface-2:  #162035;
  --surface-3:  #1E2D4A;
  --border:     rgba(255,255,255,0.07);
  --border-g:   rgba(39,174,96,0.3);
  --shadow:     0 24px 64px rgba(0,0,0,0.5);
  --radius:     14px;
  --radius-lg:  22px;
  --font:       'Inter', 'Segoe UI', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font); }

/* ── Typography ────────────────────────────────────────────────────────────── */
.label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.label::before {
  content: ''; width: 24px; height: 2px; background: var(--green);
}

h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--white) 0%, var(--green-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-size: 15px; border: none; transition: all 0.25s ease;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1); opacity: 0; transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; box-shadow: 0 8px 32px rgba(39,174,96,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(39,174,96,0.5); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,0.06); color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ── Nav ───────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(8,15,30,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo .logo-text {
  font-size: 18px; font-weight: 800; letter-spacing: -0.02em;
  margin-left: 10px;
}
.nav-logo .logo-text span { color: var(--green); }

.nav-links {
  display: flex; align-items: center; gap: 6px; list-style: none;
}
.nav-links a {
  padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--gray-light); transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-mobile-toggle {
  display: none; background: none; border: none; color: var(--white);
  font-size: 22px; padding: 6px;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 72px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(27,58,107,0.5), transparent),
    radial-gradient(ellipse 40% 50% at 80% 80%, rgba(39,174,96,0.12), transparent),
    linear-gradient(180deg, var(--navy-deep) 0%, #060D1A 100%);
}

.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(27,58,107,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,58,107,0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-glow {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%; filter: blur(120px);
  background: radial-gradient(circle, rgba(39,174,96,0.12), transparent 70%);
  top: 50%; left: 55%; transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 1; max-width: 700px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px; border-radius: 50px;
  background: rgba(39,174,96,0.12); border: 1px solid var(--border-g);
  font-size: 12px; font-weight: 600; color: var(--green-light);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}

.hero h1 { margin-bottom: 22px; }
.hero-sub {
  font-size: 1.15rem; color: var(--gray-light); margin-bottom: 40px;
  max-width: 540px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 40px; margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 2rem; font-weight: 800; color: var(--white);
  background: linear-gradient(135deg, #fff, var(--green-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label { font-size: 13px; color: var(--gray); margin-top: 2px; }

.hero-visual {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 520px; z-index: 1; opacity: 0.85;
}

/* ── Cards ─────────────────────────────────────────────────────────────────── */
.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-g);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(39,174,96,0.12); border: 1px solid var(--border-g);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}

/* ── Services Grid ─────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* ── Process Steps ─────────────────────────────────────────────────────────── */
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  position: relative;
}
.process-step {
  padding: 40px 32px; background: var(--surface-2);
  border: 1px solid var(--border); position: relative;
  text-align: center;
}
.process-step:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.process-step:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }

.step-num {
  font-size: 4rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, rgba(27,58,107,0.8), rgba(39,174,96,0.4));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.process-arrow {
  position: absolute; right: -18px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; background: var(--navy-deep);
  border: 1px solid var(--border-g); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 14px; z-index: 2;
}
.process-step:last-child .process-arrow { display: none; }

/* ── AI Feature Section ────────────────────────────────────────────────────── */
.ai-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--surface) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden; position: relative;
}
.ai-section-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 500px;
}
.ai-section-content { padding: 64px; display: flex; flex-direction: column; justify-content: center; }
.ai-section-demo {
  background: var(--navy-deep); padding: 32px;
  display: flex; flex-direction: column;
  border-left: 1px solid var(--border);
}

/* ── Chat Preview ──────────────────────────────────────────────────────────── */
.chat-preview {
  flex: 1; display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
}
.chat-msg {
  max-width: 85%; padding: 12px 16px; border-radius: 14px;
  font-size: 13px; line-height: 1.5;
  animation: fadeUp 0.4s ease both;
}
.chat-msg.ai {
  background: var(--surface-3); border: 1px solid var(--border);
  border-bottom-left-radius: 4px; align-self: flex-start;
}
.chat-msg.ai::before {
  content: 'ARIA'; display: block; font-size: 10px; font-weight: 700;
  color: var(--green); margin-bottom: 4px; letter-spacing: 0.1em;
}
.chat-msg.user {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-bottom-right-radius: 4px; align-self: flex-end; color: #fff;
}
.chat-input-row {
  display: flex; gap: 8px; margin-top: 14px;
  background: var(--surface-3); border: 1px solid var(--border);
  border-radius: 12px; padding: 8px 8px 8px 16px;
  align-items: center;
}
.chat-input-row span { flex: 1; font-size: 13px; color: var(--gray); }
.chat-send {
  background: var(--green); color: #fff; border: none;
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* ── Stats Band ────────────────────────────────────────────────────────────── */
.stats-band {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-band-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.stat-item {
  text-align: center; padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.6rem; font-weight: 900;
  background: linear-gradient(135deg, #fff, var(--green-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: var(--gray); margin-top: 4px; }

/* ── CTA Banner ────────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg); padding: 72px 64px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { font-size: 2.4rem; margin-bottom: 16px; position: relative; }
.cta-banner p { font-size: 1.1rem; opacity: 0.85; margin-bottom: 36px; position: relative; }
.cta-banner .btn-group { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
.btn-white {
  background: #fff; color: var(--navy-dark);
  font-weight: 700; padding: 14px 32px; border-radius: 50px;
  transition: all 0.25s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--gray); font-size: 14px; margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--gray); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--gray);
}
.footer-bottom .green { color: var(--green); }

/* ── Consult Page ──────────────────────────────────────────────────────────── */
.consult-page { min-height: 100vh; padding-top: 72px; display: flex; flex-direction: column; }
.consult-header {
  background: var(--surface-2); border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.consult-header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.aria-badge {
  display: flex; align-items: center; gap: 12px;
}
.aria-avatar {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px; letter-spacing: -1px;
  border: 1px solid var(--border-g);
}
.aria-info h3 { font-size: 15px; font-weight: 700; }
.aria-info p { font-size: 12px; color: var(--green); display: flex; align-items: center; gap: 5px; }
.aria-info p::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: inline-block; animation: pulse 2s infinite; }

.consult-layout {
  display: grid; grid-template-columns: 320px 1fr;
  flex: 1; overflow: hidden; height: calc(100vh - 72px - 90px);
}

.consult-sidebar {
  background: var(--surface-2); border-right: 1px solid var(--border);
  padding: 28px; overflow-y: auto; display: flex; flex-direction: column; gap: 20px;
}
.sidebar-title { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }

.project-summary {
  background: var(--surface-3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.summary-item {
  display: flex; flex-direction: column; gap: 2px; padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.summary-item:last-child { border-bottom: none; }
.summary-key { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }
.summary-val { font-size: 13px; color: var(--white); font-weight: 500; }
.summary-val.empty { color: var(--gray); font-style: italic; }

.progress-track { display: flex; flex-direction: column; gap: 8px; }
.progress-step {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px; font-size: 13px;
  color: var(--gray); transition: all 0.2s;
}
.progress-step.active { background: rgba(39,174,96,0.1); color: var(--white); border: 1px solid var(--border-g); }
.progress-step.done { color: var(--green); }
.progress-step .step-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray); flex-shrink: 0; transition: background 0.2s;
}
.progress-step.active .step-dot { background: var(--green); box-shadow: 0 0 8px var(--green); }
.progress-step.done .step-dot { background: var(--green); }

.chat-area {
  display: flex; flex-direction: column; background: var(--navy-deep);
  overflow: hidden;
}
.messages-container {
  flex: 1; overflow-y: auto; padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  scroll-behavior: smooth;
}

.message {
  display: flex; gap: 12px; animation: fadeUp 0.3s ease both;
  max-width: 780px;
}
.message.user { flex-direction: row-reverse; align-self: flex-end; }

.msg-avatar {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.message.ai .msg-avatar {
  background: linear-gradient(135deg, var(--navy), var(--green-dark));
  border: 1px solid var(--border-g);
}
.message.user .msg-avatar {
  background: var(--surface-3); border: 1px solid var(--border);
  color: var(--gray-light);
}

.msg-bubble {
  padding: 14px 18px; border-radius: 16px; font-size: 14px; line-height: 1.65;
  max-width: 600px;
}
.message.ai .msg-bubble {
  background: var(--surface-2); border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.message.user .msg-bubble {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff; border-bottom-right-radius: 4px;
}

.msg-time { font-size: 11px; color: var(--gray); margin-top: 4px; }

.typing-indicator { display: flex; gap: 4px; padding: 14px 18px; }
.typing-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gray);
  animation: typing 1.4s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

.chat-input-area {
  padding: 20px 32px; background: var(--surface-2);
  border-top: 1px solid var(--border);
}
.chat-form {
  display: flex; gap: 10px; align-items: flex-end;
  background: var(--surface-3); border: 1px solid var(--border);
  border-radius: 16px; padding: 12px 12px 12px 20px;
  transition: border-color 0.2s;
}
.chat-form:focus-within { border-color: var(--border-g); }

#chatInput {
  flex: 1; background: none; border: none; outline: none;
  color: var(--white); font-family: var(--font); font-size: 14px;
  resize: none; max-height: 120px; line-height: 1.5;
}
#chatInput::placeholder { color: var(--gray); }

#sendBtn {
  width: 42px; height: 42px; border-radius: 10px; border: none;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-size: 16px; display: flex;
  align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
#sendBtn:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(39,174,96,0.4); }
#sendBtn:disabled { opacity: 0.4; transform: none; }

/* ── Contact Page ──────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; }
.contact-form {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-light); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--surface-3); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px; color: var(--white);
  font-family: var(--font); font-size: 14px; outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--border-g);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--surface); }

/* ── Animations ────────────────────────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes typing {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.3; }
  40% { transform: translateY(-4px); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s ease 0.1s both; }
.fade-up-3 { animation: fadeUp 0.6s ease 0.2s both; }

/* ── Scrollbar ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray); }

/* ── Page hero (inner pages) ───────────────────────────────────────────────── */
.page-hero {
  padding: 140px 0 72px; text-align: center;
  background: linear-gradient(180deg, var(--surface-2) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero p { font-size: 1.1rem; color: var(--gray-light); margin-top: 16px; max-width: 560px; margin-inline: auto; }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .ai-section-inner { grid-template-columns: 1fr; }
  .ai-section-demo { border-left: none; border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .consult-layout { grid-template-columns: 1fr; }
  .consult-sidebar { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-mobile-toggle { display: block; }
  .section { padding: 72px 0; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-radius: var(--radius) !important; }
  .process-arrow { display: none; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; gap: 1px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 20px; }
  .cta-banner { padding: 48px 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .consult-header-inner { gap: 16px; }
}
