/* ============================================================
   Club Brain — Sistema operacional para clubes esportivos
   Design tokens + base
   ============================================================ */

:root {
  /* Cores — preto + gradiente verde-lima → ciano (marca ClubBrain Sport) */
  --bg:        #000000;
  --bg-2:      #070c0b;
  --surface:   #0b1311;
  --surface-2: #0f1a17;
  --line:      rgba(140, 220, 190, 0.13);
  --line-soft: rgba(140, 220, 190, 0.07);

  --text:      #eefaf5;
  --text-2:    #a4bdb4;
  --text-3:    #6f8880;

  /* Acento (gradiente da marca) */
  --accent:    #5fe06b;   /* verde-lima */
  --accent-2:  #1fd6ce;   /* ciano/teal */
  --accent-ink:#04190d;   /* texto sobre acento */
  --accent-glow: rgba(70, 224, 150, 0.30);
  --grad:      linear-gradient(115deg, #6fe86a 0%, #2bdcae 52%, #14cfe0 100%);
  --grad-soft: linear-gradient(115deg, rgba(111,232,106,.16), rgba(20,207,224,.16));

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --shadow: 0 30px 80px -30px rgba(0,0,0,0.65);
  --shadow-soft: 0 18px 50px -24px rgba(0,0,0,0.5);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

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

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

::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(32px, 4.5vw, 60px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

.section-head { max-width: 680px; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); margin-block: 18px 0; }
.section-head p { color: var(--text-2); font-size: 1.12rem; margin-top: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--grad);
  color: var(--accent-ink);
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px var(--accent-glow);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(140,220,190,0.28); }

.btn-arrow svg { transition: transform .2s ease; }
.btn-arrow:hover svg { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}
.brand-word { display: flex; align-items: baseline; gap: 7px; line-height: 1; }
.brand-word em {
  font-style: normal; font-size: 0.58rem; letter-spacing: 0.28em;
  color: var(--text-3); font-weight: 600; text-transform: uppercase;
  transform: translateY(-1px);
}
.brand-mark {
  width: 40px; height: 40px;
  object-fit: contain;
  display: block;
  flex: none;
  filter: drop-shadow(0 4px 14px rgba(70,224,150,0.25));
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.97rem;
  color: var(--text-2);
  font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.95rem; }
.nav-login { font-weight: 500; color: var(--text-2); transition: color .15s; }
.nav-login:hover { color: var(--text); }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px;
  border-radius: 10px;
  color: var(--text);
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: currentColor; margin: 4px auto;
  transition: transform .25s ease, opacity .25s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(40px, 6vw, 76px);
  padding-bottom: clamp(28px, 4vw, 56px);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 620px;
  background:
    radial-gradient(60% 70% at 30% 20%, var(--accent-glow), transparent 70%),
    radial-gradient(50% 60% at 78% 10%, rgba(31,214,206,0.16), transparent 72%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  font-size: 0.86rem;
  color: var(--text-2);
  margin-bottom: 30px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.hero-badge b { white-space: nowrap; }
.hero-badge b { color: var(--text); font-weight: 600; }
.hero-badge .pill {
  background: var(--grad);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 5.2rem);
  max-width: 16ch;
}
.hero h1 .hl {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  color: var(--text-2);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  max-width: 56ch;
  margin-top: 26px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
  align-items: center;
}
.hero-note {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-3); font-size: 0.92rem;
}
.hero-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow); }

/* ---------- Hero brand lockup ---------- */
.hero-lockup { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-emblem {
  width: clamp(150px, 22vw, 240px);
  height: auto;
  filter: drop-shadow(0 18px 50px rgba(70,224,150,0.28));
  margin-bottom: 26px;
}
.hero-wordmark {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -0.02em; line-height: 1;
}
.hero-wordmark em {
  font-style: normal; font-size: 0.34em; letter-spacing: 0.32em;
  color: var(--text-3); font-weight: 600; vertical-align: middle; margin-left: 8px;
  text-transform: uppercase;
}
.hero-slogan {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.3rem, 3vw, 2.2rem); letter-spacing: -0.01em;
  margin-top: 22px; max-width: 22ch;
}
.hero-slogan .grad-text { font-weight: 600; }
.hero-byline {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 14px; color: var(--text-3);
  font-size: 1rem; letter-spacing: 0.04em;
}
.hero-byline b { color: var(--text-2); font-weight: 600; }
.hero-byline::before, .hero-byline::after {
  content: ""; width: 26px; height: 1px; background: var(--line); display: inline-block;
}
.hero-powered {
  margin-top: 18px; color: var(--text-2);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem); letter-spacing: 0.02em;
}
.hero-powered b {
  color: var(--text); font-weight: 600;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-lockup .hero-sub {
  text-align: center; margin-left: auto; margin-right: auto; margin-top: 20px;
  max-width: 60ch;
}
.hero .hero-actions.center { justify-content: center; margin-top: 40px; }
.hero-shot {
  margin-top: clamp(46px, 7vw, 84px);
  position: relative;
  z-index: 1;
}
.app {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.app-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.02);
}
.app-dots { display: flex; gap: 7px; }
.app-dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.16); }
.app-url {
  margin-left: 8px;
  font-size: 0.8rem; color: var(--text-3);
  font-family: var(--font-body);
  background: rgba(0,0,0,0.25);
  padding: 5px 14px; border-radius: 999px;
  border: 1px solid var(--line-soft);
}
.app-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 440px;
}
.app-side {
  border-right: 1px solid var(--line-soft);
  padding: 22px 16px;
  display: flex; flex-direction: column; gap: 6px;
  background: rgba(0,0,0,0.12);
}
.side-brand { display:flex; align-items:center; gap:9px; margin-bottom: 16px; padding-left: 8px; }
.side-brand .brand-mark { width: 26px; height: 26px; }
.side-brand span { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; }
.side-item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px; border-radius: 10px;
  font-size: 0.9rem; color: var(--text-2); font-weight: 500;
}
.side-item .ic { width: 17px; height: 17px; border-radius: 5px; border: 1.5px solid currentColor; opacity: .65; flex: none; }
.side-item.active { background: rgba(95,224,107,0.12); color: var(--text); }
.side-item.active .ic { background: var(--accent); border-color: var(--accent); opacity: 1; }

.app-main { padding: 24px; }
.app-main h4 { font-size: 1.15rem; }
.app-main .muted { color: var(--text-3); font-size: 0.85rem; margin-top: 3px; }
.kpis {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 20px;
}
.kpi {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
}
.kpi .label { font-size: 0.76rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.07em; }
.kpi .val { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; margin-top: 8px; }
.kpi .delta { font-size: 0.8rem; margin-top: 6px; font-weight: 600; }
.kpi .delta.up { color: var(--accent); }
.kpi .delta.down { color: #ff7d7d; }

.chart {
  margin-top: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
}
.chart-head { display:flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.chart-head .t { font-weight: 600; font-size: 0.95rem; }
.chart-head .legend { display:flex; gap: 14px; font-size: 0.78rem; color: var(--text-3); }
.chart-head .legend i { display:inline-block; width: 9px; height: 9px; border-radius: 3px; margin-right: 6px; vertical-align: middle; }
.bars { display: flex; align-items: flex-end; gap: 12px; height: 130px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.bar-stack { width: 100%; max-width: 34px; display: flex; flex-direction: column; justify-content: flex-end; gap: 3px; height: 100%; }
.bar {
  width: 100%; border-radius: 5px 5px 0 0;
  transform-origin: bottom;
  transition: height .9s cubic-bezier(.2,.7,.2,1);
}
.bar.rev { background: var(--accent); }
.bar.cost { background: rgba(31,214,206,0.55); border-radius: 5px; }
.bar-col span { font-size: 0.72rem; color: var(--text-3); }

/* ---------- Logos strip ---------- */
.logos { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.logos .wrap { padding-block: 40px; }
.logos p { text-align: center; color: var(--text-3); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 26px; }
.logo-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(28px, 6vw, 64px);
  opacity: 0.8;
}
.logo-item {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.25rem; color: var(--text-2);
  display: flex; align-items: center; gap: 9px;
}
.logo-item .glyph { width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--text-3); }

/* ---------- Value / problem ---------- */
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 56px;
}
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
  transition: transform .25s ease, border-color .25s ease;
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(140,220,190,0.25); }
.value-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(95,224,107,0.12);
  color: var(--accent);
  margin-bottom: 20px;
}
.value-card h3 { font-size: 1.3rem; }
.value-card p { color: var(--text-2); margin-top: 12px; font-size: 1rem; }

/* ---------- Features (tabs) ---------- */
.feature-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 70px);
  margin-top: 56px;
  align-items: center;
}
.tabs { display: flex; flex-direction: column; gap: 10px; }
.tab {
  text-align: left;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  cursor: pointer;
  transition: all .22s ease;
  color: var(--text-2);
  font-family: var(--font-body);
}
.tab:hover { border-color: var(--line); }
.tab.active {
  background: rgba(95,224,107,0.08);
  border-color: rgba(95,224,107,0.4);
  color: var(--text);
}
.tab .tab-top { display: flex; align-items: center; gap: 12px; }
.tab .tab-num { font-family: var(--font-display); font-weight: 600; color: var(--accent); font-size: 0.9rem; }
.tab h3 { font-size: 1.18rem; }
.tab p { font-size: 0.95rem; margin-top: 10px; color: inherit; opacity: .8; max-height: 0; overflow: hidden; transition: max-height .3s ease, margin .3s ease, opacity .3s; }
.tab.active p { max-height: 120px; margin-top: 10px; opacity: 1; }
.tab:not(.active) p { margin-top: 0; }

.feature-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}
.feature-panel { display: none; padding: 30px; animation: fade .4s ease; }
.feature-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Placeholder (drop image) ---------- */
.ph {
  --c1: rgba(140,220,190,0.06);
  --c2: rgba(140,220,190,0.11);
  background-image: repeating-linear-gradient(135deg, var(--c1) 0 12px, var(--c2) 12px 24px);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  color: var(--text-3);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 20px;
}
.ph code { font-family: ui-monospace, "SF Mono", Menlo, monospace; color: var(--text-2); }

/* ---------- Stats ---------- */
.stats { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  text-align: center;
}
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; color: var(--accent); letter-spacing: -0.02em; }
.stat .cap { color: var(--text-2); margin-top: 8px; font-size: 0.98rem; }

/* ---------- Testimonial ---------- */
.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px);
  background: linear-gradient(140deg, var(--surface), var(--bg-2));
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: "“";
  position: absolute; top: -30px; left: 28px;
  font-family: var(--font-display); font-size: 200px; color: rgba(95,224,107,0.1); line-height: 1;
}
.quote-card blockquote {
  margin: 0; position: relative;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1.35; letter-spacing: -0.01em;
  max-width: 24ch;
}
.quote-author { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.quote-author .av { width: 52px; height: 52px; border-radius: 50%; }
.quote-author .who b { display: block; font-weight: 600; }
.quote-author .who span { color: var(--text-3); font-size: 0.92rem; }

/* ---------- Pricing teaser / CTA ---------- */
.cta {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(44px, 7vw, 88px);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(150deg, var(--surface-2), var(--bg-2));
}
.cta-glow {
  position: absolute; inset: auto -10% -60% -10%; height: 400px;
  background: radial-gradient(50% 60% at 50% 100%, var(--accent-glow), transparent 70%);
  pointer-events: none;
}
.cta h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); position: relative; max-width: 18ch; margin-inline: auto; }
.cta p { color: var(--text-2); margin-top: 20px; position: relative; font-size: 1.12rem; max-width: 50ch; margin-inline: auto; }
.cta .hero-actions { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: 60px 40px; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer-brand p { color: var(--text-3); margin-top: 16px; max-width: 30ch; font-size: 0.95rem; }
.footer h5 { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { color: var(--text-2); font-size: 0.95rem; transition: color .15s; }
.footer ul a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line-soft);
  color: var(--text-3); font-size: 0.88rem;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--text-2);
  transition: all .18s ease;
}
.footer-social a:hover { color: var(--accent); border-color: rgba(95,224,107,0.4); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
/* CTA dentro do menu mobile — escondido no desktop */
.nav-mobile-cta { display: none; }

@media (max-width: 920px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
  .feature-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .app-body { grid-template-columns: 1fr; }
  .app-side { display: none; }
}

@media (max-width: 980px) {
  /* esconde links e o botão do topo; mostra só o hambúrguer */
  .nav-links, .nav-login { display: none; }
  .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { gap: 0; }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 22px var(--gutter); gap: 18px;
  }
  /* CTA aparece dentro do menu aberto, largura total */
  .nav.open .nav-mobile-cta { display: block; margin-top: 4px; }
  .nav.open .nav-mobile-cta .btn { display: flex; justify-content: center; width: 100%; }
}

@media (max-width: 720px) {
  .value-grid { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .cta { padding: clamp(30px, 8vw, 48px) clamp(20px, 5vw, 32px); }
  .cta-actions { width: 100%; }
  .cta-actions .btn {
    width: 100%; white-space: normal; text-align: center;
    padding-left: 16px; padding-right: 16px;
  }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .brand { font-size: 1.05rem; gap: 9px; }
  .brand-mark { width: 34px; height: 34px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
