/* ============================================================
   UGroom — Mobile Grooming Van ROI Landing Page
   Design system: extends the exact calculator tokens supplied,
   applied across a full advertisement landing page.
   ============================================================ */

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

:root {
  --bg: #F8F7FD;
  --indigo: #200B90;
  --skyblue: #7AB7D1;
  --navy: #242939;
  --gray: #8A8DA3;
  --gray-label: #6E768C;
  --badge-bg: #F2F1F8;
  --track: #ECEDF3;
  --grad-indigo: #33219A;
  --grad-blue: #6899C5;
  --grad-green: #86CFA6;
  --gold: #EBD06E;
  --gold-hover: #e4c656;
  --card-shadow: 0 10px 40px rgba(32,11,144,0.06);
  --border-soft: #EEEEF4;
  --maxw: 1180px;

  /* Brand logo colors (from UGroom Conversions mark) */
  --brand-teal: #45C2BF;
  --brand-purple: #382A8B;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Shared buttons -------------------------------------------------- */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--gold); color: var(--navy);
  font-family: 'Poppins', sans-serif; font-weight: 700;
  border: none; cursor: pointer; text-decoration: none;
  border-radius: 100px; padding: 18px 40px; font-size: 18px;
  box-shadow: 0 8px 28px rgba(235,208,110,0.4); transition: all 0.2s;
}
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 12px 34px rgba(235,208,110,0.55); }
.btn-gold svg { width: 22px; height: 22px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--indigo);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px;
  border: 1.5px solid #DCD9F0; border-radius: 100px; padding: 13px 26px;
  text-decoration: none; cursor: pointer; transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--indigo); background: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--skyblue);
  background: #EFF2F9; padding: 8px 20px; border-radius: 100px;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-title {
  font-size: clamp(30px, 4.6vw, 46px); font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--navy); margin-bottom: 16px;
}
.section-title span { color: var(--skyblue); }
.section-sub { font-size: 18px; color: var(--gray); line-height: 1.55; }

/* ================= NAV ================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,247,253,0.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(238,238,244,0.8);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
/* Brand logo lockup — UGroom Conversions | Vans Buses Trailers */
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; line-height: 1; }
.brand-word { display: flex; flex-direction: column; }
.brand-top { font-weight: 800; font-size: 25px; letter-spacing: -0.01em; color: var(--brand-teal); }
.brand-bottom { font-weight: 800; font-size: 19px; letter-spacing: 0; color: var(--brand-purple); margin-top: 2px; }
.brand-div { width: 2px; align-self: stretch; min-height: 40px; background: #C4CED6; border-radius: 2px; }
.brand-types { display: flex; flex-direction: column; justify-content: center; gap: 3px; font-weight: 600; font-size: 10.5px; letter-spacing: 0.2em; color: var(--brand-teal); text-transform: uppercase; }
@media (max-width: 560px) { .nav .brand-div, .nav .brand-types { display: none; } .brand-top { font-size: 22px; } .brand-bottom { font-size: 17px; } }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--gray-label); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { padding: 11px 24px !important; font-size: 15px !important; }
@media (max-width: 860px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ================= HERO ================= */
.hero { position: relative; padding: 70px 0 30px; text-align: center; }
.hero::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 720px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,183,209,0.18), rgba(122,183,209,0) 70%);
  z-index: 0; pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero .eyebrow { margin-bottom: 24px; }
.hero h1 {
  font-size: clamp(38px, 6.4vw, 74px); font-weight: 800; line-height: 1.03;
  letter-spacing: -0.025em; color: var(--navy); margin-bottom: 22px;
}
.hero h1 span { color: var(--skyblue); }
.hero p.lead { font-size: clamp(18px, 2.2vw, 21px); color: var(--gray); max-width: 600px; margin: 0 auto 34px; line-height: 1.55; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; color: var(--gray-label); font-size: 14px; font-weight: 500; }
.hero-trust .item { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 17px; height: 17px; color: var(--grad-green); }

/* ================= CALCULATOR (verbatim design) ================= */
.calc-section { padding: 30px 0 70px; }
.calc-wrapper { max-width: var(--maxw); margin: 0 auto; }

.calc-header { text-align: center; margin-bottom: 40px; }
.calc-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--skyblue);
  background: #EFF2F9; padding: 8px 20px; border-radius: 100px; margin-bottom: 22px;
}
.calc-title {
  font-size: clamp(36px, 6vw, 68px); font-weight: 800; line-height: 1.05;
  color: var(--navy); letter-spacing: -0.02em; margin-bottom: 18px;
}
.calc-title span { color: var(--skyblue); }
.calc-subtitle { font-size: 19px; font-weight: 400; color: var(--gray); max-width: 560px; margin: 0 auto; line-height: 1.5; }

.scenario-row { display: flex; justify-content: center; gap: 16px; margin: 44px 0 36px; flex-wrap: wrap; }
.scenario-btn {
  background: #fff; border: none; border-radius: 100px; padding: 20px 44px;
  font-family: 'Poppins', sans-serif; font-size: 19px; font-weight: 600;
  color: var(--gray-label); cursor: pointer; box-shadow: 0 4px 20px rgba(32,11,144,0.05); transition: all 0.2s;
}
.scenario-btn:hover:not(.active) { color: var(--navy); transform: translateY(-1px); }
.scenario-btn.active { background: var(--indigo); color: #fff; box-shadow: 0 8px 28px rgba(32,11,144,0.3); }

.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
@media (max-width: 760px) { .cards-grid { grid-template-columns: 1fr; } }
.card { background: #fff; border-radius: 24px; padding: 38px 40px 42px; box-shadow: var(--card-shadow); }
.card-title { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 30px; }
.card-title::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--skyblue); }

.field { margin-bottom: 30px; }
.field:last-child { margin-bottom: 0; }
.field-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.field-head label { font-size: 18px; font-weight: 400; color: var(--gray-label); }
.val-badge { font-size: 17px; font-weight: 700; color: var(--indigo); background: var(--badge-bg); padding: 7px 18px; border-radius: 10px; min-width: 56px; text-align: center; }

.field-note {
  display: flex; align-items: flex-start; gap: 7px;
  margin-top: 12px; padding: 9px 12px;
  background: #EFF6FA; border-radius: 9px;
  font-size: 12.5px; font-weight: 500; color: var(--gray-label); line-height: 1.4;
}
.field-note svg { width: 13px; height: 13px; margin-top: 2px; color: var(--skyblue); flex-shrink: 0; }
.field-note span { flex: 1; min-width: 0; }
.field-note strong { font-weight: 700; color: var(--indigo); white-space: nowrap; }

input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px; background: var(--track); outline: none; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--indigo); cursor: pointer; box-shadow: 0 2px 8px rgba(32,11,144,0.35); transition: transform 0.15s; }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb { width: 26px; height: 26px; border: none; border-radius: 50%; background: var(--indigo); cursor: pointer; box-shadow: 0 2px 8px rgba(32,11,144,0.35); }

.results-card { background: #fff; border-radius: 24px; box-shadow: var(--card-shadow); overflow: hidden; }
.results-topbar { height: 7px; background: linear-gradient(90deg, var(--grad-indigo) 0%, var(--grad-blue) 55%, var(--grad-green) 100%); }
.results-inner { padding: 36px 40px 40px; }
.results-title { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.results-title::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--skyblue); }

.teaser {
  display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--border-soft);
}
.teaser-left .metric-label { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-label); margin-bottom: 12px; }
.teaser-value { font-size: 52px; font-weight: 800; color: var(--indigo); letter-spacing: -0.02em; line-height: 1; }
.teaser-sub { font-size: 14px; color: var(--gray); margin-top: 8px; }
.teaser-hint { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--skyblue); background: #EFF6FA; padding: 10px 18px; border-radius: 100px; }

.locked-region { position: relative; }
.locked-region.locked { min-height: 480px; }
.metrics-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; transition: filter 0.5s ease, opacity 0.5s ease; }
@media (max-width: 880px) { .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; } }

.metric { padding: 0 24px; border-left: 1px solid var(--border-soft); }
.metric:first-child { padding-left: 0; border-left: none; }
@media (max-width: 880px) { .metric { border-left: none; padding: 0 14px; } }
.metric-label { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-label); margin-bottom: 14px; white-space: nowrap; }
.metric-value { font-size: 30px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; transition: all 0.3s; }
.metric-value.blue { color: var(--skyblue); }
.metric-sub { font-size: 14px; font-weight: 400; color: var(--gray); margin-top: 6px; }

.payback-bar-wrap { background: var(--track); border-radius: 100px; height: 7px; overflow: hidden; margin: 6px 0 14px; }
.payback-bar { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--grad-indigo), var(--grad-blue)); transition: width 0.5s cubic-bezier(0.4,0,0.2,1); }
.payback-months { font-size: 26px; font-weight: 800; color: var(--skyblue); letter-spacing: -0.02em; }

.locked-region.locked .metrics-grid { filter: blur(8px); opacity: 0.55; pointer-events: none; user-select: none; }

.gate-overlay {
  position: absolute; inset: -10px -6px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(248,247,253,0.55) 0%, rgba(248,247,253,0.85) 100%);
  backdrop-filter: blur(2px); border-radius: 18px; transition: opacity 0.45s ease;
}
.locked-region:not(.locked) .gate-overlay { opacity: 0; pointer-events: none; }
.gate-card {
  width: 100%; max-width: 440px; background: #fff; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(32,11,144,0.18); padding: 32px 32px 28px; text-align: center;
  border: 1px solid #EFEFF6;
}
.gate-lock { width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 50%; background: #EFF2F9; display: flex; align-items: center; justify-content: center; }
.gate-lock svg { width: 24px; height: 24px; color: var(--indigo); }
.gate-title { font-size: 23px; font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.01em; }
.gate-text { font-size: 15px; color: var(--gray); line-height: 1.5; margin-bottom: 22px; }
.gate-field { margin-bottom: 12px; text-align: left; }
.gate-field input {
  width: 100%; font-family: 'Poppins', sans-serif; font-size: 16px; color: var(--navy);
  padding: 15px 18px; border: 1.5px solid #E4E4EE; border-radius: 12px; outline: none; transition: border-color 0.2s;
}
.gate-field input::placeholder { color: #A9ABBC; }
.gate-field input:focus { border-color: var(--indigo); }
.gate-field input.error { border-color: #E5484D; }
.gate-err { font-size: 13px; color: #E5484D; text-align: left; margin: -4px 0 12px 2px; min-height: 16px; }
.gate-btn {
  width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold); color: var(--navy); font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700;
  padding: 16px; border-radius: 100px; border: none; cursor: pointer; box-shadow: 0 8px 24px rgba(235,208,110,0.45); transition: all 0.2s;
}
.gate-btn:hover { background: var(--gold-hover); transform: translateY(-1px); }
.gate-btn:disabled { opacity: 0.7; cursor: default; transform: none; }
.gate-btn svg { width: 20px; height: 20px; }
.gate-privacy { font-size: 12px; color: #A9ABBC; margin-top: 14px; line-height: 1.5; }

@keyframes reveal-pop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.locked-region.revealed .metric { animation: reveal-pop 0.5s ease backwards; }
.locked-region.revealed .metric:nth-child(1) { animation-delay: 0.05s; }
.locked-region.revealed .metric:nth-child(2) { animation-delay: 0.12s; }
.locked-region.revealed .metric:nth-child(3) { animation-delay: 0.19s; }
.locked-region.revealed .metric:nth-child(4) { animation-delay: 0.26s; }
.locked-region.revealed .metric:nth-child(5) { animation-delay: 0.33s; }

.cta-wrap { text-align: center; margin-top: 44px; }
.cta-btn { display: inline-flex; align-items: center; gap: 12px; background: var(--gold); color: var(--navy); font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; padding: 20px 44px; border-radius: 100px; text-decoration: none; border: none; cursor: pointer; box-shadow: 0 8px 28px rgba(235,208,110,0.4); transition: all 0.2s; }
.cta-btn:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 12px 34px rgba(235,208,110,0.55); }
.cta-btn svg { width: 24px; height: 24px; }

.disclaimer { text-align: center; font-size: 15px; color: var(--gray); margin-top: 30px; line-height: 1.6; max-width: 980px; margin-left: auto; margin-right: auto; }

/* ================= LOGO / STATS STRIP ================= */
.stats-strip { padding: 18px 0 50px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; background: #fff; border-radius: 24px; padding: 40px 24px; box-shadow: var(--card-shadow); }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; } }
.stat { text-align: center; }
.stat .num { font-size: clamp(34px, 5vw, 46px); font-weight: 800; letter-spacing: -0.02em; color: var(--indigo); line-height: 1; }
.stat .num span { color: var(--skyblue); }
.stat .lbl { font-size: 14px; font-weight: 500; color: var(--gray-label); margin-top: 10px; }

/* ================= HOW IT WORKS ================= */
.section { padding: 80px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 860px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { background: #fff; border-radius: 24px; padding: 40px 34px; box-shadow: var(--card-shadow); position: relative; }
.step-num {
  width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--grad-indigo), var(--grad-blue));
  margin-bottom: 22px;
}
.step-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.step-card p { font-size: 16px; color: var(--gray); line-height: 1.6; }

/* ================= BENEFITS ================= */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit { background: #fff; border-radius: 20px; padding: 32px 28px; box-shadow: var(--card-shadow); transition: transform 0.2s; }
.benefit:hover { transform: translateY(-4px); }
.benefit .ic { width: 50px; height: 50px; border-radius: 14px; background: #EFF2F9; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.benefit .ic svg { width: 24px; height: 24px; color: var(--indigo); }
.benefit h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.benefit p { font-size: 15px; color: var(--gray); line-height: 1.6; }

/* ================= TESTIMONIALS ================= */
.testimonials { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .tst-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }
.tst { background: #fff; border-radius: 22px; padding: 34px 30px; box-shadow: var(--card-shadow); display: flex; flex-direction: column; }
.tst .stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 18px; }
.tst .quote { font-size: 16px; color: var(--navy); line-height: 1.65; flex: 1; }
.tst .who { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.tst .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--grad-blue), var(--grad-green)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 17px; }
.tst .who .name { font-weight: 700; font-size: 15px; }
.tst .who .role { font-size: 13px; color: var(--gray); margin-top: 2px; }

/* ================= FAQ ================= */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 16px; box-shadow: var(--card-shadow); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 600; color: var(--navy); padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .chev { width: 22px; height: 22px; color: var(--skyblue); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 28px 24px; font-size: 16px; color: var(--gray); line-height: 1.65; }

/* ================= FINAL CTA ================= */
.final-cta { padding: 90px 0; }
.final-cta-inner {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  background: linear-gradient(135deg, var(--grad-indigo) 0%, #2a1c8a 50%, var(--grad-blue) 100%);
  border-radius: 32px; padding: 70px 32px; box-shadow: 0 30px 70px rgba(32,11,144,0.28);
}
.final-cta-inner::after {
  content: ''; position: absolute; bottom: -120px; right: -80px; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(134,207,166,0.35), rgba(134,207,166,0) 70%);
}
.final-cta-inner > * { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(30px, 4.6vw, 48px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 18px; }
.final-cta p { font-size: 19px; color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 34px; line-height: 1.55; }

/* ================= THANK YOU PAGE ================= */
.ty-hero { text-align: center; padding: 64px 0 16px; }
.ty-check {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 26px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--grad-green), var(--grad-blue));
  box-shadow: 0 16px 40px rgba(134,207,166,0.4);
  animation: ty-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes ty-pop { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ty-check svg { width: 40px; height: 40px; color: #fff; }
.ty-hero h1 { font-size: clamp(34px, 5.4vw, 56px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.06; margin-bottom: 16px; }
.ty-hero h1 span { color: var(--skyblue); }
.ty-hero p { font-size: 19px; color: var(--gray); max-width: 560px; margin: 0 auto; line-height: 1.55; }
.ty-scenario { display: none; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--indigo); background: var(--badge-bg); padding: 8px 18px; border-radius: 100px; margin: 20px auto 0; }
.ty-results { max-width: var(--maxw); margin: 40px auto 0; }
.ty-fallback { display: none; max-width: 560px; margin: 36px auto 0; text-align: center; background: #fff; border-radius: 20px; padding: 36px 32px; box-shadow: var(--card-shadow); }
.ty-fallback p { font-size: 17px; color: var(--gray); line-height: 1.6; }
.ty-recalc { text-align: center; margin-top: 40px; }

/* ================= FOOTER ================= */
.footer { padding: 56px 0 40px; border-top: 1px solid var(--border-soft); }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.footer .brand { margin-bottom: 16px; }
.footer .blurb { font-size: 14px; color: var(--gray); max-width: 320px; line-height: 1.6; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-label); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 15px; color: var(--navy); text-decoration: none; margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--indigo); }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border-soft); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: var(--gray); }
