/* LumiVet Design System */
:root {
  --brand: #0046FF;
  --navy: #000E34;
  --crimson: #BF124D;
  --bg: #FFFFFF;
  --surface: #F3F5F9;
  --surface-2: #E9EDF4;
  --line: #D9D9D9;
  --muted: #6B7280;
  --success: #16A34A;
  --wa-green: #25D366;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --shadow-card: 0 1px 2px rgba(0,14,52,0.06);
  --shadow-elev: 0 8px 24px rgba(0,14,52,0.08);
  --shadow-hero: 0 24px 64px rgba(0,14,52,0.14);

  --container: 1200px;
  --gutter: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Fredoka', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--bg);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--brand); text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

input, select, textarea { font-family: inherit; font-size: inherit; }

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Section base */
section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

.section-surface { background: var(--surface); }
.section-brand { background: var(--brand); color: #fff; }
.section-navy { background: var(--navy); color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.eyebrow.on-dark { color: #7CA2FF; }

h1 { font-size: clamp(36px, 5.4vw, 56px); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; text-wrap: balance; }
h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; text-wrap: balance; }
h3 { font-size: 22px; font-weight: 500; line-height: 1.3; }
h4 { font-size: 18px; font-weight: 500; line-height: 1.4; }

p { text-wrap: pretty; }
p.lead { font-size: 19px; line-height: 1.55; color: var(--navy); opacity: 0.85; }

.muted { color: var(--muted); }

/* CTA button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  transition: transform .12s ease, box-shadow .18s ease, background-color .18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--crimson); color: #fff; }
.btn-primary:hover { background: #a40e42; box-shadow: 0 8px 24px rgba(191,18,77,0.3); }

.btn-on-dark { background: #fff; color: var(--navy); }
.btn-on-dark:hover { background: #f2f4fa; }

.btn-secondary { background: #fff; color: var(--brand); box-shadow: inset 0 0 0 2px var(--brand); }
.btn-secondary:hover { background: #F0F4FF; }

.btn-ghost { background: transparent; color: var(--brand); padding: 12px 6px; border-radius: 8px; }
.btn-ghost:hover { color: #0035c4; }

.btn-wa {
  background: var(--wa-green); color: #fff;
}
.btn-wa:hover { background: #1fb956; }

.btn-sm { padding: 10px 18px; font-size: 15px; }
.btn-lg { padding: 20px 34px; font-size: 18px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(0,14,52,0.06);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 34px; width: auto; }
.nav {
  display: flex; gap: 28px; align-items: center;
  font-size: 16px; font-weight: 500;
}
.nav a { color: var(--navy); padding: 8px 2px; position: relative; transition: color .15s; }
.nav a:hover { color: var(--brand); }
.nav a.active { color: var(--brand); }
.nav a.active::after {
  content: ""; position: absolute; inset: auto 0 -6px 0;
  height: 2px; background: var(--brand); border-radius: 2px;
}
.hamburger {
  display: none; width: 40px; height: 40px; border-radius: 10px;
  align-items: center; justify-content: center;
}
@media (max-width: 960px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-cta-text { display: none; }
}

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(0,70,255,0.08), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(191,18,77,0.05), transparent 40%),
    #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 { margin: 12px 0 20px; }
.hero .lead { margin-bottom: 32px; max-width: 46ch; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-media {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  background: var(--surface);
}
.hero-badge {
  position: absolute; top: 20px; inset-inline-start: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-card);
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); position: relative; }
.pulse-dot::before { content: ""; position: absolute; inset: -4px; border-radius: 50%; background: var(--success); opacity: 0.3; animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.35; } 100% { transform: scale(2.4); opacity: 0; } }

.hero-card-floating {
  position: absolute; bottom: 20px; inset-inline-end: 20px;
  background: #fff; border-radius: var(--radius-md);
  padding: 14px 16px; box-shadow: var(--shadow-elev);
  display: flex; align-items: center; gap: 12px;
  max-width: 240px;
}
.hero-card-floating .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #0046FF, #6B8BFF);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 16px;
}
.hero-card-floating .text { font-size: 13px; line-height: 1.35; }
.hero-card-floating .text strong { display: block; color: var(--navy); }

/* Placeholder image style (stripes) */
.placeholder {
  background:
    repeating-linear-gradient(135deg,
      rgba(0,70,255,0.06) 0 18px,
      rgba(0,70,255,0.02) 18px 36px);
  position: relative;
  color: var(--muted);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 24px;
}
.placeholder::before {
  content: "[ placeholder ]";
  position: absolute; top: 16px; inset-inline-start: 16px;
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--brand); opacity: 0.7;
  background: rgba(255,255,255,0.8);
  padding: 4px 10px; border-radius: 4px;
}

/* Stock photo dog svg */
.dog-illus {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #E8EEFF 0%, #F8F6F2 70%);
  display: flex; align-items: flex-end; justify-content: center;
}

/* Trust strip */
.trust-strip {
  display: flex; gap: 36px; flex-wrap: wrap;
  padding-top: 40px; margin-top: 40px;
  border-top: 1px solid rgba(0,14,52,0.08);
  align-items: center;
  font-size: 14px; color: var(--muted);
}
.trust-strip strong { color: var(--navy); font-weight: 500; }

/* Split comparison */
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 48px;
}
@media (max-width: 780px) { .compare-grid { grid-template-columns: 1fr; } }

.compare-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--line);
}
.compare-card.highlight {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(0,70,255,0.18), var(--shadow-elev);
  background: linear-gradient(180deg, #F5F8FF, #fff);
}
.compare-card h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 600;
  margin-bottom: 20px;
}
.compare-card .tag {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: var(--surface); color: var(--muted);
}
.compare-card.highlight .tag { background: var(--brand); color: #fff; }

.compare-visual {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.compare-card.highlight .compare-visual {
  background: linear-gradient(180deg, #E8EEFF, #F5F8FF);
}

.compare-metrics { display: grid; gap: 14px; }
.compare-metric {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0; border-bottom: 1px dashed var(--line);
}
.compare-metric:last-child { border-bottom: 0; }
.compare-metric .label { color: var(--muted); font-size: 15px; }
.compare-metric .value { font-weight: 600; font-size: 17px; }
.compare-card.highlight .compare-metric .value { color: var(--brand); }

/* StatsFooter */
.stats-row {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--navy); color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 780px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stats-row .stat {
  padding: 36px 24px; text-align: center;
  border-inline-end: 1px solid rgba(255,255,255,0.08);
}
.stats-row .stat:last-child { border-inline-end: 0; }
@media (max-width: 780px) {
  .stats-row .stat:nth-child(2) { border-inline-end: 0; }
  .stats-row .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}
.stats-row .num {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600; line-height: 1;
  direction: ltr; unicode-bidi: isolate;
  color: #fff;
  letter-spacing: -0.02em;
}
.stats-row .num .unit { font-size: 0.55em; color: #7CA2FF; margin-inline-start: 4px; font-weight: 500; }
.stats-row .stat-label {
  margin-top: 10px; font-size: 15px; color: rgba(255,255,255,0.75);
}
.stats-footnote {
  text-align: center; font-size: 13px; color: var(--muted);
  margin-top: 20px;
}

/* How it works */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
  counter-reset: step;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.step:hover { border-color: var(--brand); transform: translateY(-4px); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: #F0F4FF; color: var(--brand);
  font-weight: 600; font-size: 18px;
  margin-bottom: 20px;
}
.step-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step h3 { margin-bottom: 10px; font-weight: 600; }
.step p { color: var(--muted); font-size: 16px; }

/* CostPlanner */
.planner-wrap {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 40px; margin-top: 48px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elev);
  overflow: hidden;
}
@media (max-width: 900px) { .planner-wrap { grid-template-columns: 1fr; } }
.planner-form { padding: 40px; }
.planner-form h3 { font-size: 20px; font-weight: 600; margin-bottom: 24px; }

.field-group { margin-bottom: 28px; }
.field-label {
  display: block; font-size: 14px; font-weight: 500;
  margin-bottom: 12px; color: var(--navy);
}
.segment {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; background: var(--surface);
  border-radius: 12px; padding: 6px;
}
.segment button {
  padding: 12px; border-radius: 8px;
  font-weight: 500; font-size: 15px; color: var(--muted);
  transition: all .15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.segment button.on {
  background: #fff; color: var(--navy);
  box-shadow: var(--shadow-card);
}

.weight-row { display: flex; gap: 12px; align-items: center; }
.weight-input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 12px;
  font-size: 17px; font-weight: 500;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  text-align: right;
}
.weight-input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,70,255,0.12); }
.weight-unit { font-weight: 500; color: var(--muted); min-width: 28px; }
.weight-slider {
  width: 100%; accent-color: var(--brand); margin-top: 14px;
}

.addons { display: grid; gap: 10px; }
.addon {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border: 1px solid var(--line);
  border-radius: 12px; cursor: pointer;
  transition: border-color .15s, background-color .15s;
}
.addon:hover { border-color: var(--brand); background: #F8FAFF; }
.addon.checked { border-color: var(--brand); background: #F0F4FF; }
.addon .check {
  width: 22px; height: 22px; border-radius: 6px;
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
  flex-shrink: 0;
}
.addon.checked .check { background: var(--brand); border-color: var(--brand); color: #fff; }
.addon .addon-title { font-weight: 500; font-size: 15px; }
.addon .addon-price { margin-inline-start: auto; font-weight: 600; color: var(--brand); font-size: 15px; }
.addon .addon-desc { font-size: 13px; color: var(--muted); margin-top: 2px; }

.planner-result {
  background: linear-gradient(160deg, var(--navy) 0%, #001862 100%);
  color: #fff; padding: 40px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.planner-result::before {
  content: ""; position: absolute;
  top: -40px; inset-inline-end: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,70,255,0.5), transparent 70%);
  pointer-events: none;
}
.price-label { font-size: 14px; color: rgba(255,255,255,0.7); }
.price-amount {
  font-size: 56px; font-weight: 600;
  margin-top: 8px; letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 4px;
}
.price-amount .currency { font-size: 28px; color: rgba(255,255,255,0.7); font-weight: 500; }
.price-range { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 4px; }

.includes {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.includes-header {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 500; font-size: 15px;
  padding: 4px 0;
}
.includes-list {
  margin-top: 16px; display: grid; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.85);
}
.includes-list li {
  list-style: none; display: flex; align-items: flex-start; gap: 10px;
}
.includes-list .check-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  color: #4ADE80; margin-top: 2px;
}

.planner-result .btn {
  margin-top: auto;
  padding-top: 18px; padding-bottom: 18px;
  margin-top: 28px;
  width: 100%;
}

/* Doctor */
.doctor-grid {
  display: grid; grid-template-columns: 0.9fr 1.2fr;
  gap: 56px; align-items: center; margin-top: 40px;
}
@media (max-width: 900px) { .doctor-grid { grid-template-columns: 1fr; } }
.doctor-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  background: var(--surface);
  box-shadow: var(--shadow-hero);
}
.credentials { display: grid; gap: 16px; margin-top: 28px; }
.credential {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}
.credential .credential-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: #F0F4FF; color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.credential .credential-text { font-size: 15px; }
.credential .credential-text strong { display: block; font-weight: 600; margin-bottom: 4px; }

/* Stories */
.stories-wrap { margin-top: 48px; position: relative; }
.stories-track {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .stories-track { grid-template-columns: 1fr; } }
.story-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elev); }
.story-photo {
  aspect-ratio: 4/3; position: relative;
  background: var(--surface);
}
.story-body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.story-meta { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.story-proc-tag {
  background: #F0F4FF; color: var(--brand);
  padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 500;
}
.story-quote { font-size: 17px; line-height: 1.5; font-weight: 400; color: var(--navy); }
.story-quote::before { content: "«"; color: var(--brand); font-size: 32px; line-height: 0.8; margin-inline-end: 4px; vertical-align: -6px; }
.story-owner { font-size: 14px; color: var(--muted); }
.story-example-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 999px;
  background: var(--surface); color: var(--muted);
  align-self: flex-start;
  margin-top: auto;
}

/* FAQ */
.faq-list { margin-top: 40px; max-width: 860px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%; text-align: right;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 19px; font-weight: 500;
  color: var(--navy);
  transition: color .15s;
}
.faq-q:hover { color: var(--brand); }
.faq-q .chev {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, background-color .15s;
  flex-shrink: 0;
}
.faq-item.open .faq-q .chev { transform: rotate(-180deg); background: var(--brand); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--muted); font-size: 16px; line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 400px; padding-bottom: 24px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--brand) 0%, #0035c4 100%);
  color: #fff;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1), transparent 50%);
}
.cta-section .container { position: relative; }
.cta-section h2 { color: #fff; font-size: clamp(36px, 5vw, 56px); font-weight: 600; margin: 16px 0 24px; }
.cta-section .eyebrow { color: #B4C8FF; }
.cta-section .lead { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 32px; }
.cta-section .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  color: #fff; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 24px;
}
.cta-phone:hover { opacity: 0.85; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 56px 0 32px; }
.footer-map {
  position: relative;
  max-width: var(--container);
  margin: 0 auto 56px;
  padding: 0 var(--gutter);
}
.footer-map-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-map iframe { display: block; filter: grayscale(0.15) contrast(0.95); }
.map-pill {
  position: absolute; bottom: 20px; right: 50%; transform: translateX(50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--navy);
  padding: 12px 20px; border-radius: 999px;
  font-weight: 500; font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,14,52,0.35);
  transition: transform 0.2s;
  white-space: nowrap;
}
.map-pill:hover { transform: translateX(50%) translateY(-2px); }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  color: #fff; font-size: 14px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 15px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 16px; max-width: 32ch; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 40px; width: auto; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; gap: 24px; }

/* Floating WA */
.floating-wa {
  position: fixed; bottom: 24px; inset-inline-end: 24px;
  background: var(--wa-green); color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 100;
  transition: transform .2s;
}
.floating-wa:hover { transform: scale(1.08); }
.floating-wa::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
  animation: wa-ring 2s infinite;
}
@keyframes wa-ring {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Count-up animation */
.count-up { display: inline-block; font-variant-numeric: tabular-nums; }

/* Section heads */
.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { margin-bottom: 12px; }
.section-head .subtitle { color: var(--muted); font-size: 18px; }

/* Utility */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* Tweaks panel */
.tweaks-panel {
  position: fixed; bottom: 24px; inset-inline-start: 24px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,14,52,0.2);
  padding: 20px; z-index: 200;
  width: 280px;
  border: 1px solid var(--line);
  display: none;
}
.tweaks-panel.active { display: block; }
.tweaks-panel h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; color: var(--navy); }
.tweaks-panel label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
.tweaks-panel .tweak-row { margin-bottom: 14px; }
.tweaks-panel select, .tweaks-panel input { width: 100%; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; font-family: inherit; }
