/* ============================================================
   CHAMA O TIGRE — Landing page
   Aesthetic: Criciúma stadium energy. Rich black canvas,
   electric gold accent, WhatsApp green reserved for action.
   ============================================================ */

:root {
  /* Brand */
  --black: #0b0b0c;
  --ink: #131316;
  --ink-2: #1b1b20;
  --gold: #f5b800;
  --gold-bright: #ffcd1e;
  --gold-deep: #e0a200;
  --white: #ffffff;
  --cream: #f6f4ef;
  --cream-2: #efece4;
  --wa: #25d366;
  --wa-deep: #1faa52;

  /* Text */
  --t-strong: #ffffff;
  --t-muted: #b7b7be;
  --t-faint: #86868f;
  --t-dark: #1a1a1e;
  --t-dark-muted: #54545c;

  /* Lines & surfaces */
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(11, 11, 12, 0.1);
  --card: #16161a;
  --card-2: #1d1d22;

  /* Type */
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  /* Layout */
  --wrap: 1180px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-gold: 0 18px 50px -18px rgba(245, 184, 0, 0.55);
  --shadow-soft: 0 24px 60px -28px rgba(0, 0, 0, 0.6);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--t-strong);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.hl { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --bg: var(--gold);
  --fg: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  padding: 0.78em 1.4em;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--wa { --bg: var(--wa); --fg: #04321a; box-shadow: 0 14px 34px -14px rgba(37, 211, 102, 0.7); }
.btn--wa:hover { --bg: #2ee06f; box-shadow: 0 20px 44px -16px rgba(37, 211, 102, 0.85); }

.btn--gold { --bg: var(--gold); --fg: var(--black); box-shadow: var(--shadow-gold); }
.btn--gold:hover { --bg: var(--gold-bright); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.5); }

.btn--lg { font-size: 1.06rem; padding: 0.95em 1.7em; }
.btn--xl { font-size: 1.18rem; padding: 1.05em 2.1em; }

.ico-wa { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* ============================================================
   TOPBAR + HEADER
   ============================================================ */
.topbar {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 50%, var(--gold-deep));
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 600;
}
.topbar__in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 8px 20px;
  flex-wrap: wrap;
  text-align: center;
}
.topbar__pin { font-weight: 800; }
.topbar__dot { opacity: 0.5; }
.topbar__free { font-weight: 800; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 12, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.header.scrolled { box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.9); background: rgba(11, 11, 12, 0.9); }

.header__in {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.brand { display: flex; align-items: center; }
.brand__logo { height: 42px; width: auto; }

.nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-weight: 500;
  font-size: 0.96rem;
}
.nav a {
  color: var(--t-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.28s var(--ease);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.nav a.nav__panel {
  color: var(--gold);
  border: 1px solid rgba(245, 184, 0, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
}
.nav a.nav__panel::after { display: none; }
.nav a.nav__panel:hover { background: rgba(245, 184, 0, 0.1); border-color: var(--gold); }

.header__cta { font-size: 0.9rem; padding: 0.6em 1.15em; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.burger span {
  width: 24px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px clamp(20px, 5vw, 40px) 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 12, 0.97);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 12px 4px; color: var(--t-muted); font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border: 0; margin-top: 10px; }
.mobile-menu .btn { color: #04321a; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(40px, 5vw, 70px) 0 clamp(48px, 6vw, 84px);
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(245, 184, 0, 0.14), transparent 55%),
    radial-gradient(80% 70% at 8% 110%, rgba(245, 184, 0, 0.07), transparent 60%),
    var(--black);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  width: 620px; height: 620px;
  right: -120px; top: -180px;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.28), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.paws { position: absolute; inset: 0; pointer-events: none; opacity: 0.06; }
.paw { position: absolute; font-size: 2.4rem; }
.paw:nth-child(1) { top: 22%; left: 6%; transform: rotate(-18deg); }
.paw:nth-child(2) { bottom: 18%; left: 42%; transform: rotate(12deg); font-size: 1.8rem; }
.paw:nth-child(3) { top: 14%; right: 38%; transform: rotate(24deg); font-size: 1.4rem; }

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 184, 0, 0.1);
  border: 1px solid rgba(245, 184, 0, 0.28);
  padding: 0.5em 1em;
  border-radius: 999px;
  margin-bottom: 26px;
}
.eyebrow__tiger { font-size: 1.1em; }

.hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}
.hero__title span { display: block; }
.hero__title-accent {
  color: var(--gold);
  position: relative;
  width: fit-content;
}
.hero__title-accent::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0.04em;
  width: 100%; height: 0.14em;
  background: var(--gold);
  opacity: 0.22;
  border-radius: 4px;
}

.hero__sub {
  margin-top: 22px;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  color: var(--t-muted);
  max-width: 32em;
}
.hero__sub strong { color: var(--white); font-weight: 600; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin-top: 28px;
  font-size: 0.92rem;
  color: var(--t-muted);
}
.hero__chips li { display: inline-flex; align-items: center; gap: 0.5em; }
.chip-ico {
  display: grid; place-items: center;
  width: 20px; height: 20px;
  background: rgba(245, 184, 0, 0.16);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.7rem; font-weight: 800;
}

/* Hero art */
.hero__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}
.hero__art-ring {
  position: absolute;
  width: min(440px, 92%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.18), transparent 62%);
  border: 1px dashed rgba(245, 184, 0, 0.25);
}
.hero__art-ring::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(245, 184, 0, 0.12);
}
.hero__mascot {
  position: relative;
  width: min(440px, 100%);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.55));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.float-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  background: rgba(22, 22, 26, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: 0.6em 0.95em;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  animation: float 5s ease-in-out infinite;
}
.float-pill small { display: block; font-size: 0.72rem; color: var(--t-faint); font-weight: 500; }
.float-pill--rating { top: 8%; left: -4%; animation-delay: 0.4s; }
.float-pill--rating .star { color: var(--gold); font-size: 1.1em; }
.float-pill--loc { bottom: 14%; left: -6%; animation-delay: 1.1s; }
.float-pill--loc strong { color: var(--gold); }
.float-pill--online { top: 16%; right: -2%; animation-delay: 0.8s; }
.live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   VALUES STRIP
   ============================================================ */
.values {
  background: var(--ink);
  border-block: 1px solid var(--line);
  padding: clamp(40px, 6vw, 64px) 0;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.value__ico {
  font-size: 1.9rem;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: rgba(245, 184, 0, 0.1);
  border: 1px solid rgba(245, 184, 0, 0.2);
  border-radius: 16px;
  margin-bottom: 16px;
}
.value h3 { font-size: 1.12rem; margin-bottom: 6px; }
.value p { color: var(--t-muted); font-size: 0.95rem; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head { max-width: 36em; margin: 0 auto clamp(32px, 4vw, 48px); text-align: center; }
.sec-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(245, 184, 0, 0.12);
  padding: 0.4em 0.9em;
  border-radius: 999px;
  margin-bottom: 18px;
}
.sec-tag--gold { color: var(--gold); }
.sec-head h2 { font-size: clamp(1.55rem, 2.8vw, 2.2rem); }
.sec-head p { margin-top: 14px; color: var(--t-dark-muted); font-size: 1rem; }

/* ============================================================
   HOW IT WORKS  (light section)
   ============================================================ */
.how {
  background: var(--cream);
  color: var(--t-dark);
  padding: clamp(48px, 6vw, 80px) 0;
}
.how .sec-head h2 { color: var(--t-dark); }

.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 30px 24px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -26px rgba(0, 0, 0, 0.35);
  border-color: rgba(245, 184, 0, 0.5);
}
.step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  color: rgba(245, 184, 0, 0.28);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step__ico {
  font-size: 1.8rem;
  margin: 14px 0 14px;
}
.step h3 { font-size: 1.2rem; color: var(--t-dark); margin-bottom: 8px; }
.step p { color: var(--t-dark-muted); font-size: 0.96rem; }
.step::after {
  content: "→";
  position: absolute;
  right: -18px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold-deep);
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 0.55;
}
.steps .step:last-child::after { display: none; }

/* ============================================================
   DEMO  (dark)
   ============================================================ */
.demo {
  position: relative;
  background:
    radial-gradient(90% 80% at 10% 0%, rgba(245, 184, 0, 0.1), transparent 55%),
    var(--black);
  padding: clamp(48px, 6vw, 84px) 0;
  overflow: hidden;
}
.demo__glow {
  position: absolute;
  width: 500px; height: 500px;
  right: -100px; bottom: -150px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.12), transparent 65%);
  filter: blur(20px);
}
.demo__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.demo__copy h2 { font-size: clamp(1.55rem, 2.8vw, 2.2rem); margin-top: 6px; }
.demo__copy > p { margin-top: 16px; color: var(--t-muted); font-size: 1.02rem; max-width: 30em; }
.demo__list { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; gap: 14px; }
.demo__list li { display: flex; align-items: center; gap: 0.7em; color: var(--t-muted); font-size: 1rem; }
.demo__list .tick { font-size: 1.2rem; }
.demo__cta { align-self: start; }

/* Phone */
.phone {
  justify-self: center;
  position: relative;
  width: 320px;
  max-width: 100%;
  background: #0c0c0e;
  border: 11px solid #1a1a1d;
  border-radius: 42px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    var(--shadow-gold);
  padding: 10px;
}
.phone__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 22px;
  background: #1a1a1d;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone__screen {
  border-radius: 32px;
  overflow: hidden;
  background: #0b141a;
  display: flex;
  flex-direction: column;
  height: 540px;
}
.wa-head {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1f2c33;
  padding: 14px 14px 12px;
  padding-top: 26px;
}
.wa-back { color: #aebac1; font-size: 1.3rem; line-height: 1; }
.wa-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.wa-id { line-height: 1.15; margin-right: auto; }
.wa-id strong { font-family: var(--font-body); font-weight: 600; font-size: 0.96rem; color: #e9edef; }
.wa-id small { color: #8aa0ab; font-size: 0.76rem; display: block; }
.wa-icons { color: #aebac1; font-size: 0.9rem; letter-spacing: 4px; }

.wa-body {
  flex: 1;
  padding: 14px 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #0b141a;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 22px 22px, 22px 22px;
  background-position: 0 0, 11px 11px;
}
.wa-day {
  align-self: center;
  background: #1d282f;
  color: #8aa0ab;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
}
.bubble {
  max-width: 82%;
  padding: 7px 10px 6px;
  border-radius: 10px;
  font-size: 0.86rem;
  line-height: 1.4;
  color: #e9edef;
  position: relative;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease);
  word-wrap: break-word;
}
.bubble.show { opacity: 1; transform: none; }
.bubble.in { align-self: flex-start; background: #1f2c33; border-top-left-radius: 3px; }
.bubble.out { align-self: flex-end; background: #144d37; border-top-right-radius: 3px; }
.bubble b { color: #ffd97a; font-weight: 700; }
.bubble .meta { display: block; text-align: right; font-size: 0.62rem; color: #8aa0ab; margin-top: 2px; }
.bubble.out .meta::after { content: " ✓✓"; color: #53bdeb; }
.bubble.card {
  background: #1f2c33;
  border-left: 3px solid var(--wa);
}
.bubble.card .name { color: #ffd97a; font-weight: 700; }

.typing { display: inline-flex; gap: 3px; padding: 9px 12px; }
.typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: #8aa0ab;
  animation: blink 1.3s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.18s; }
.typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes blink {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.wa-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 14px;
  background: #0b141a;
}
.wa-input__field {
  flex: 1;
  background: #1f2c33;
  color: #8aa0ab;
  font-size: 0.82rem;
  padding: 9px 14px;
  border-radius: 20px;
}
.wa-input__mic {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--wa);
  border-radius: 50%;
  font-size: 0.95rem;
}

/* ============================================================
   FEATURES  (light)
   ============================================================ */
.features {
  background: var(--cream-2);
  color: var(--t-dark);
  padding: clamp(48px, 6vw, 80px) 0;
}
.features .sec-head h2 { color: var(--t-dark); }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}
.feat:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -26px rgba(0, 0, 0, 0.32);
  border-color: rgba(245, 184, 0, 0.55);
}
.feat__ico {
  font-size: 1.7rem;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(245, 184, 0, 0.18), rgba(245, 184, 0, 0.06));
  border-radius: 14px;
  margin-bottom: 18px;
}
.feat h3 { font-size: 1.14rem; color: var(--t-dark); margin-bottom: 8px; }
.feat p { color: var(--t-dark-muted); font-size: 0.94rem; }

/* ============================================================
   CATEGORIES MARQUEE
   ============================================================ */
.cats {
  background: var(--black);
  padding: clamp(56px, 8vw, 90px) 0;
  overflow: hidden;
}
.cats__head { text-align: center; max-width: 36em; margin: 0 auto 40px; }
.cats__head h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); }
.cats__head p { margin-top: 14px; color: var(--t-muted); }

.marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.cats:hover .marquee__track { animation-play-state: paused; }
.cat-chip {
  flex: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--white);
  background: var(--card);
  border: 1px solid var(--line);
  padding: 0.7em 1.3em;
  border-radius: 999px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.cat-chip:hover { border-color: var(--gold); color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   PARA PROFISSIONAIS  (dark)
   ============================================================ */
.pros {
  position: relative;
  background:
    radial-gradient(80% 80% at 90% 10%, rgba(245, 184, 0, 0.12), transparent 55%),
    var(--ink);
  padding: clamp(48px, 6vw, 84px) 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.pros__glow {
  position: absolute;
  width: 460px; height: 460px;
  left: -120px; top: 20%;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.16), transparent 65%);
  filter: blur(10px);
}
.pros__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}
.pros__art { position: relative; display: grid; place-items: center; }
.pros__art-ring {
  position: absolute;
  width: min(380px, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.16), transparent 60%);
  border: 1px dashed rgba(245, 184, 0, 0.22);
}
.pros__art img {
  position: relative;
  width: min(380px, 100%);
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.6));
  animation: float 7s ease-in-out infinite;
}
.pros__copy h2 { font-size: clamp(1.55rem, 2.8vw, 2.2rem); margin-top: 6px; }
.pros__copy > p { margin-top: 16px; color: var(--t-muted); font-size: 1.02rem; max-width: 34em; }
.pros__list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 14px; }
.pros__list li { display: flex; align-items: flex-start; gap: 0.7em; color: var(--t-strong); font-size: 1.02rem; }
.pros__list .tick {
  flex: none;
  display: grid; place-items: center;
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-size: 0.72rem; font-weight: 900;
  margin-top: 2px;
}
.pros__note {
  background: rgba(245, 184, 0, 0.08);
  border: 1px solid rgba(245, 184, 0, 0.25);
  border-radius: 14px;
  padding: 14px 18px;
  color: var(--t-muted);
  font-size: 0.96rem;
  margin-bottom: 28px;
}
.pros__note strong { color: var(--gold); }

/* ============================================================
   FAQ  (light)
   ============================================================ */
.faq {
  background: var(--cream);
  color: var(--t-dark);
  padding: clamp(48px, 6vw, 80px) 0;
}
.faq .sec-head h2 { color: var(--t-dark); }
.faq__list { max-width: 760px; margin-inline: auto; display: grid; gap: 14px; }
.qa {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.qa[open] { border-color: rgba(245, 184, 0, 0.55); box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.4); }
.qa summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 56px 20px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--t-dark);
  position: relative;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-deep);
  transition: transform 0.3s var(--ease);
}
.qa[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.qa p { padding: 0 22px 22px; color: var(--t-dark-muted); }
.qa p strong { color: var(--t-dark); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta {
  position: relative;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(245, 184, 0, 0.18), transparent 60%),
    var(--black);
  padding: clamp(56px, 7vw, 96px) 0;
  text-align: center;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  width: 700px; height: 400px;
  left: 50%; top: 0;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(245, 184, 0, 0.22), transparent 70%);
  filter: blur(30px);
}
.cta__in { position: relative; max-width: 30em; margin-inline: auto; }
.cta__paw { font-size: 3.4rem; display: inline-block; animation: float 5s ease-in-out infinite; }
.cta h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); margin-top: 10px; }
.cta p { margin-top: 16px; color: var(--t-muted); font-size: 1.04rem; }
.cta__btns { margin-top: 34px; }
.cta__fine { margin-top: 22px; font-size: 0.88rem; color: var(--t-faint); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050506;
  color: var(--t-muted);
  padding: clamp(50px, 7vw, 80px) 0 30px;
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__logo { height: 40px; margin-bottom: 18px; }
.footer__brand p { font-size: 0.95rem; max-width: 28em; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col a, .footer__loc {
  display: block;
  color: var(--t-muted);
  font-size: 0.95rem;
  padding: 5px 0;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--t-faint);
}

/* ============================================================
   FLOATING ACTION BUTTON
   ============================================================ */
.fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 60;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.7);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: fab-in 0.5s var(--ease) 1s both;
}
.fab .ico-wa { width: 30px; height: 30px; }
.fab:hover { transform: scale(1.08); box-shadow: 0 18px 40px -8px rgba(37, 211, 102, 0.85); }
.fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: ring 2.4s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes fab-in {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps .step:nth-child(2)::after { display: none; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 880px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }

  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; display: flex; flex-direction: column; align-items: center; }
  .hero__art { order: 1; min-height: auto; margin-bottom: 10px; }
  .hero__mascot { width: min(330px, 80%); }
  .hero__sub { margin-inline: auto; }
  .hero__title-accent { margin-inline: auto; }
  .float-pill--rating { left: 2%; }
  .float-pill--loc { left: 0; }
  .float-pill--online { right: 2%; }

  .demo__grid { grid-template-columns: 1fr; }
  .demo__copy { text-align: center; }
  .demo__copy > p, .demo__list { margin-inline: auto; }
  .demo__list li { justify-content: center; }

  .pros__grid { grid-template-columns: 1fr; text-align: center; }
  .pros__art { order: 1; margin-bottom: 20px; }
  .pros__copy { order: 2; display: flex; flex-direction: column; align-items: center; }
  .pros__copy > p { margin-inline: auto; }
  .pros__list li { text-align: left; }
}

@media (max-width: 560px) {
  .values__grid { grid-template-columns: 1fr; }
  .steps, .feat-grid { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .topbar { font-size: 0.72rem; }
  .topbar__free { display: none; }
  .fab { width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .bubble { opacity: 1; transform: none; }
}
