/* ============================================================
   IGNITED CONTENT CO — v2 section styles
   ============================================================ */

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav.scrolled {
  background: rgba(9,9,10,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 15px; letter-spacing: 0.04em; }
.brand-name .co { color: var(--text-3); font-weight: 700; }
.nav-links { display: flex; gap: 26px; margin-inline: auto; }
.nav-links a {
  font-size: 14.5px; font-weight: 600; color: var(--text-2);
  transition: color .2s var(--ease);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px;
  height: 2px; background: var(--ignite);
  transition: right .25s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.btn-sm { padding: 11px 18px; font-size: 14px; }
@media (max-width: 880px) {
  .nav-links, .nav-phone { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 110px; padding-bottom: 80px;
  overflow: hidden;
}
.hero-sun {
  position: absolute;
  right: -8%; top: -22%;
  width: 760px; height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-soft) 0%, transparent 62%);
  pointer-events: none;
}
.hero-ball {
  position: absolute;
  right: clamp(-120px, 4vw, 140px);
  top: clamp(-160px, -10vh, -60px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(46px, 6.4vw, 96px);
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 22px 0 26px;
  text-transform: uppercase;
}
.hero-h1 .hl { display: block; overflow: hidden; }
.hero-h1 .hl > span { display: inline-block; }
.hero-sub { max-width: 52ch; color: var(--text-2); font-size: 18px; }
.hero-sub strong { color: var(--text); font-weight: 700; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { margin-top: 26px; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 1;
}
.hero-scroll-line { width: 1px; height: 42px; background: var(--line-2); position: relative; overflow: hidden; display: block; }
.hero-scroll-line::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%;
  background: var(--ignite);
}
@media (prefers-reduced-motion: no-preference) {
  [data-motion="full"] .hero-scroll-line::after,
  [data-motion="subtle"] .hero-scroll-line::after { animation: scrollDrip 2.2s var(--ease) infinite; }
}
@keyframes scrollDrip {
  0% { top: -50%; }
  70%, 100% { top: 110%; }
}

/* dashboard card */
.hero-dash {
  position: relative;
  background: linear-gradient(165deg, var(--panel-2), var(--panel) 55%);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 26px 26px 22px;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.8), 0 0 70px -30px var(--glow-soft);
  display: flex; flex-direction: column; gap: 20px;
  max-width: 460px;
  justify-self: end;
  width: 100%;
}
.dash-head { display: flex; align-items: center; gap: 10px; }
.dash-week { margin-left: auto; }
.dash-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ignite);
  box-shadow: 0 0 10px var(--glow);
  transition: transform .3s var(--ease);
}
@media (prefers-reduced-motion: no-preference) {
  [data-motion="full"] .dash-dot, [data-motion="subtle"] .dash-dot { animation: dotBlink 2.4s ease infinite; }
}
@keyframes dotBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.dash-dot.hot { transform: scale(1.6); }
.dash-big { display: flex; flex-direction: column; gap: 8px; }
.dash-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.dash-num.sm { font-size: clamp(26px, 2.2vw, 34px); }
.spark-svg { width: 100%; height: 64px; display: block; margin-top: 4px; }
.dash-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  border-top: 1px solid var(--line); padding-top: 18px;
}
.dash-cell { display: flex; flex-direction: column; gap: 6px; }
.dash-foot {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--line); padding-top: 16px;
}
.dash-inq {
  font-family: var(--mono); font-weight: 700; font-size: 18px;
  color: var(--text);
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.dash-inq.bump { color: var(--ignite-2); transform: translateY(-3px); }
.dash-gauge {
  flex: 1; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}
.dash-gauge span { display: block; height: 100%; background: linear-gradient(90deg, var(--ignite-deep), var(--ignite-2)); border-radius: 2px; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-dash { justify-self: start; }
  .hero-ball { opacity: 0.5; right: -180px; }
}

/* ---------- MARQUEE ---------- */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding: 18px 0; position: relative; }
.marquee-track { display: flex; gap: 48px; width: max-content; }
@media (prefers-reduced-motion: no-preference) {
  [data-motion="full"] .marquee-track, [data-motion="subtle"] .marquee-track { animation: marqueeSlide 30s linear infinite; }
  [data-motion="full"] .marquee:hover .marquee-track { animation-play-state: paused; }
}
@keyframes marqueeSlide { to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-2); white-space: nowrap;
}
.marquee-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ignite); flex: none; }

/* ---------- SECTIONS shared ---------- */
.sec { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.sec-head { margin-bottom: clamp(40px, 5vw, 72px); display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.sec-h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(34px, 4.4vw, 62px);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  line-height: 1.0;
}
.sec-lede { color: var(--text-2); max-width: 56ch; font-size: 18px; }

/* spotlight card base */
.spot-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.spot-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--sx, 50%) var(--sy, 50%), var(--glow-soft), transparent 62%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.spot-card:hover { border-color: var(--line-2); transform: translateY(-4px); box-shadow: 0 24px 60px -30px rgba(0,0,0,0.7); }
.spot-card:hover::before { opacity: 1; }
[data-motion="off"] .spot-card:hover { transform: none; }

/* ---------- RESULTS ---------- */
.results { padding-bottom: clamp(60px, 8vw, 110px); }
.big-stats {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
  border-block: 1px solid var(--line);
  margin-bottom: clamp(40px, 5vw, 72px);
}
.big-stat { padding: clamp(36px, 5vw, 72px) var(--pad); }
.big-stat-rule { background: var(--line); }
.big-stat-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(64px, 10vw, 152px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(120deg, var(--text) 30%, var(--ignite-2) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.big-stat-k {
  font-family: var(--mono);
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ignite);
  margin-top: 14px;
}
.big-stat-note { color: var(--text-2); margin-top: 12px; max-width: 38ch; }
@media (max-width: 880px) {
  .big-stats { grid-template-columns: 1fr; }
  .big-stat-rule { height: 1px; width: 100%; }
}

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat-card-in { padding: 28px 26px; display: flex; flex-direction: column; gap: 8px; height: 100%; }
.stat-num {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1; letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.stat-k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ignite); }
.stat-note { color: var(--text-2); font-size: 15px; }
@media (max-width: 880px) { .stat-grid { grid-template-columns: 1fr; } }

/* ---------- SERVICES ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-wrap.lead { grid-column: span 1; }
.svc-card { padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; height: 100%; }
.svc-card.lead { background: linear-gradient(170deg, var(--panel-2), var(--panel) 70%); border-color: var(--line-2); }
.svc-top { display: flex; align-items: center; justify-content: space-between; }
.svc-tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ignite);
  border: 1px solid color-mix(in oklab, var(--ignite) 40%, transparent);
  padding: 5px 10px; border-radius: 99px;
}
.svc-name { font-family: var(--display); font-size: 24px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; }
.svc-desc { color: var(--text-2); font-size: 15.5px; }
.svc-flag { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-2); }
.svc-flag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ignite); box-shadow: 0 0 8px var(--glow); }
.svc-cta { background: linear-gradient(170deg, color-mix(in oklab, var(--ignite) 14%, var(--panel)), var(--panel) 75%); }
a.svc-card.linked { text-decoration: none; color: inherit; display: flex; }
.svc-more { display: inline-flex; align-items: center; gap: 6px; color: var(--text-3); margin-top: auto; padding-top: 14px; transition: color .2s var(--ease); }
.svc-card:hover .svc-more { color: var(--ignite); }
.svc-more .arrow { display: inline-block; transition: transform .25s var(--ease); }
.svc-card:hover .svc-more .arrow { transform: translateX(5px); }

/* ============================================================
   MOBILE — comprehensive responsive pass
   ============================================================ */

/* 740px — shrink/fade hero ball */
@media (max-width: 740px) {
  .hero-ball { opacity: 0.25; right: -220px; }
  .hero-sun  { opacity: 0.5; }
}

/* 640px — hide hero ball, stack CTAs, full-width buttons */
@media (max-width: 640px) {
  .hero-ball, .hero-sun, .hero-scroll { display: none; }
  .hero { min-height: 92svh; padding-top: 90px; padding-bottom: 56px; }
  .hero-h1 { font-size: clamp(40px, 12vw, 62px); margin: 16px 0 18px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* live dashboard */
  .hero-dash { padding: 20px 18px 16px; gap: 16px; }
  .dash-num  { font-size: clamp(34px, 10vw, 48px); }

  /* marquee */
  .marquee-item { font-size: 11.5px; gap: 10px; }

  /* results — big numbers */
  .big-stat  { padding: clamp(24px, 5vw, 48px) var(--pad); }
  .big-stat-num { font-size: clamp(52px, 16vw, 96px); }

  /* stat grid */
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-num  { font-size: clamp(28px, 8vw, 42px); }

  /* services */
  .svc-grid { grid-template-columns: 1fr; }

  /* process */
  .step-grid { grid-template-columns: 1fr; gap: 28px; }
  .step-rail { padding-left: 26px; }

  /* quotes */
  .quote-grid  { grid-template-columns: 1fr; }
  .quote-mark  { font-size: 48px; }

  /* calculator */
  .calc-panel { padding: clamp(20px, 5vw, 36px); }
  .calc-num   { font-size: clamp(28px, 8vw, 44px); }
  .calc-num.big { font-size: clamp(34px, 10vw, 56px); }

  /* booking */
  .book-inner { grid-template-columns: 1fr; }
  .book-embed { min-height: 560px; }
  .book-embed iframe { min-height: 560px; }

  /* footer */
  .footer-cta  { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-btn  { width: 100%; justify-content: center; }
  .footer-h2   { font-size: clamp(34px, 10vw, 56px); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* 380px — ultra-small touch-ups */
@media (max-width: 380px) {
  .nav-inner  { gap: 12px; }
  .brand-name .co { display: none; }
  .btn-sm     { padding: 10px 14px; font-size: 13px; }
  .stat-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 980px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- PROCESS ---------- */
.step-rail { position: relative; padding-left: 34px; }
.step-line {
  position: absolute; left: 10px; top: 6px; bottom: 6px;
  width: 2px; background: var(--line);
  border-radius: 1px;
  overflow: hidden;
}
.step-line span {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--ignite-2), var(--ignite-deep));
  transform: scaleY(0);
  transform-origin: top;
}
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 3vw, 44px); }
.step { display: flex; flex-direction: column; gap: 12px; }
.step-n {
  font-family: var(--mono); font-weight: 700; font-size: 13px;
  color: var(--ignite);
  display: flex; align-items: center; gap: 10px;
}
.step-n::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.step-t { font-family: var(--display); font-size: 19px; font-weight: 800; text-transform: uppercase; letter-spacing: 0; line-height: 1.2; }
.step-d { color: var(--text-2); font-size: 15px; }
@media (max-width: 980px) { .step-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .step-grid { grid-template-columns: 1fr; } }

/* ---------- TESTIMONIALS ---------- */
.quote-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; }
.quote-wrap.featured { grid-row: span 2; }
.quote-card { padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; height: 100%; }
.quote-card.featured { background: linear-gradient(170deg, var(--panel-2), var(--panel) 70%); border-color: var(--line-2); justify-content: space-between; }
.quote-mark {
  font-family: var(--display); font-size: 64px; line-height: 0.6;
  color: var(--ignite); display: block; margin-top: 10px;
}
.quote-q { color: var(--text); font-size: 17px; line-height: 1.55; }
.quote-card.featured .quote-q { font-size: clamp(19px, 1.8vw, 23px); }
.quote-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-name { font-weight: 700; font-size: 15px; }
@media (max-width: 880px) {
  .quote-grid { grid-template-columns: 1fr; }
  .quote-wrap.featured { grid-row: auto; }
}

/* ---------- CALCULATOR ---------- */
.calc-sec { background: var(--bg-1); border-block: 1px solid var(--line); }
.calc-panel {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 64px);
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 40px 100px -50px rgba(0,0,0,0.8);
}
.calc-inputs { display: flex; flex-direction: column; gap: 34px; }
.calc-slider { display: flex; flex-direction: column; gap: 14px; }
.calc-slider-head { display: flex; align-items: baseline; justify-content: space-between; }
.calc-slider-val {
  font-family: var(--display); font-weight: 900; font-size: 26px;
  font-variant-numeric: tabular-nums;
  color: var(--ignite-2);
}
.calc-slider input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, var(--ignite) var(--p, 50%), rgba(255,255,255,0.09) var(--p, 50%));
  outline: none;
  cursor: pointer;
}
.calc-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 36% 34%, #ffe6c2 0%, #fb7a2e 30%, #f2601f 55%, #8f2f0f 100%);
  border: none;
  box-shadow: 0 0 0 4px rgba(242,96,31,0.18), 0 4px 14px rgba(0,0,0,0.5);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.calc-slider input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); box-shadow: 0 0 0 7px rgba(242,96,31,0.22), 0 4px 14px rgba(0,0,0,0.5); }
.calc-slider input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 36% 34%, #ffe6c2 0%, #fb7a2e 30%, #f2601f 55%, #8f2f0f 100%);
  border: none;
  box-shadow: 0 0 0 4px rgba(242,96,31,0.18), 0 4px 14px rgba(0,0,0,0.5);
}
.calc-slider-ends { display: flex; justify-content: space-between; }
.calc-note { margin-top: -8px; }
.calc-out {
  display: flex; flex-direction: column; gap: 22px;
  border-left: 1px solid var(--line);
  padding-left: clamp(28px, 4vw, 64px);
  justify-content: center;
}
.calc-out-rule { height: 1px; background: var(--line); }
.calc-num {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-top: 6px;
}
.calc-num.big { font-size: clamp(44px, 5.4vw, 76px); }
@media (max-width: 880px) {
  .calc-panel { grid-template-columns: 1fr; }
  .calc-out { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 28px; }
}

/* ---------- BOOK ---------- */
.book-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.book-points { display: flex; flex-direction: column; gap: 22px; margin-top: 34px; }
.book-point { display: flex; gap: 16px; align-items: flex-start; }
.book-point-dot {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid color-mix(in oklab, var(--ignite) 50%, transparent);
  display: flex; align-items: center; justify-content: center;
  flex: none; margin-top: 3px;
}
.book-point-dot span { width: 8px; height: 8px; border-radius: 50%; background: var(--ignite); box-shadow: 0 0 8px var(--glow); display: block; }
.book-point-t { font-weight: 700; font-size: 16.5px; }
.book-point-d { color: var(--text-2); font-size: 15px; margin-top: 3px; }

.book-embed {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 100px -50px rgba(0,0,0,0.8), 0 0 80px -40px var(--glow-soft);
  min-height: 620px;
  display: block;
}
.book-embed iframe { width: 100%; min-height: 620px; border: 0; display: block; }

.cal-ghost { display: flex; flex-direction: column; gap: 16px; padding: 28px; width: 100%; }
.cal-ghost-head { display: flex; align-items: center; justify-content: space-between; }
.cal-ghost-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ignite); box-shadow: 0 0 10px var(--glow); }
.cal-ghost-days { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; }
.cal-ghost-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; flex: 1; }
.cal-ghost-cell {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px; color: var(--text-3);
  border: 1px solid var(--line); border-radius: 6px;
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.cal-ghost-cell:hover { border-color: var(--line-3); color: var(--text); }
.cal-ghost-cell.hot {
  color: #150a04; background: var(--ignite);
  border-color: var(--ignite);
  font-weight: 700;
}
.cal-ghost-note { text-align: center; padding-top: 4px; }
@media (max-width: 880px) { .book-inner { grid-template-columns: 1fr; } }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--line); padding: clamp(70px, 9vw, 120px) 0 40px; position: relative; overflow: hidden; }
.footer::before {
  content: "";
  position: absolute; left: 50%; bottom: -340px; transform: translateX(-50%);
  width: 900px; height: 520px;
  background: radial-gradient(ellipse at center, var(--glow-soft), transparent 65%);
  pointer-events: none;
}
.footer-cta {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
  padding-bottom: clamp(48px, 6vw, 80px);
  flex-wrap: wrap;
}
.footer-h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(40px, 5.6vw, 84px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-top: 18px;
  line-height: 0.98;
}
.footer-btn { padding: 18px 30px; font-size: 16px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  flex-wrap: wrap;
}
.footer-links a { transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--text); }
.dot-sep { margin-inline: 10px; }
