/* ===== AION Landing Page ===== */
:root {
  --accent: #ffc000;
  --accent-2: #ffaa00;
  --accent-3: #ffd633;
  --accent-deep: #b88600;
  --ink: #0a0a0a;
  --ink-2: #131313;
  --ink-3: #1c1c1c;
  --ink-4: #262626;
  --line: #2a2a2a;
  --line-2: #3a3a3a;
  --text: #f5f5f5;
  --text-dim: #a8a8a8;
  --text-mute: #6b6b6b;
  --green: #1ed760;
  --green-2: #16b54f;
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
html, body { background: var(--ink); color: var(--text); overflow-x: clip; width: 100%; max-width: 100%; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
#root { overflow-x: clip; width: 100%; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: ""; display: inline-block; width: 24px; height: 1px; background: var(--accent);
}

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled { background: rgba(10,10,10,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-logo img { height: 28px; width: auto; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--text-dim); transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  font-size: 13px; font-weight: 700;
  background: var(--accent); color: #000;
  padding: 10px 18px; border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -8px var(--accent); }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: #0a0a0a;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px var(--gutter) 120px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.hero::after {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, transparent 0%, var(--ink) 100%);
  z-index: -1;
}
.hero-logo {
  height: 64px;
  width: auto;
  margin-bottom: 64px;
  filter: drop-shadow(0 8px 30px rgba(255,192,0,0.15));
}
.hero-headline {
  font-size: clamp(22px, 3.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: none;
  text-wrap: balance;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero-headline .line {
  display: block;
}
.hero-headline .lead {
  font-weight: 400;
  opacity: 0.92;
}
.hero-headline .heavy {
  font-weight: 800;
}
.hero-sub {
  margin-top: 36px; max-width: 52ch; text-align: center;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-mute);
  font-weight: 400;
  line-height: 1.55;
  text-wrap: balance;
}
.hero-cta {
  margin-top: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent);
  color: #0a0a0a;
  padding: 22px 44px;
  border-radius: 12px;
  font-size: 16px; font-weight: 700;
  letter-spacing: -0.005em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease;
  box-shadow: 0 6px 24px -4px rgba(255,192,0,0.35), 0 0 0 0 rgba(255,192,0,0.5);
}
.hero-cta::before {
  content: "";
  position: absolute;
  top: 0; left: -120%; height: 100%; width: 60%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  pointer-events: none;
}
.hero-cta:hover {
  transform: translateY(-3px) scale(1.015);
  background: var(--accent-3);
  box-shadow: 0 18px 40px -8px rgba(255,192,0,0.55),
              0 0 0 6px rgba(255,192,0,0.12);
}
.hero-cta:hover::before { left: 130%; }
.hero-cta:active { transform: translateY(-1px) scale(1); }
.hero-cta svg { width: 18px; height: 18px; }

/* ===== Marquee ===== */
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 10;
  margin: -40px 0;
  padding: 20px 0;
}
.marquee {
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
  transform: rotate(-1.5deg);
  margin: 0;
  z-index: 2;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee-track {
  display: flex; gap: 60px; width: max-content;
  animation: scroll 40s linear infinite;
}
.marquee-item {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800; letter-spacing: -0.01em;
  color: var(--text);
  display: inline-flex; align-items: center; gap: 60px;
  white-space: nowrap;
}
.marquee-item span { color: var(--accent); }
.marquee-item::after {
  content: "✦"; color: var(--accent); font-size: 0.7em;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Section base ===== */
section { padding: 100px 0; position: relative; }
@media (max-width: 720px) { section { padding: 64px 0; } }
.section-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-transform: uppercase;
  color: #fff;
}
.section-title strong { font-weight: 800; color: #fff; font-style: normal; }
.section-title em { font-weight: 800; color: var(--accent); font-style: normal; }
.section-sub {
  color: var(--text-dim); max-width: 60ch; margin-top: 16px;
  font-size: 16px; line-height: 1.6;
}

/* ===== Form section ===== */
.form-section { padding: 80px 0 120px; }
.form-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: start;
}
@media (max-width: 980px) {
  .form-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-card { order: 2; }
  .form-urgency-col { order: 1; }
}

.form-urgency {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  text-wrap: balance;
}
.form-urgency strong { font-weight: 800; color: #fff; }
.form-urgency em { font-style: normal; font-weight: 800; color: var(--accent); }

.form-steps { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.form-step {
  display: flex; gap: 18px;
  padding: 22px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.25s, transform 0.25s;
}
.form-step:hover { border-color: var(--accent); transform: translateX(4px); }
.form-step-num {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--accent); color: #0a0a0a;
  display: grid; place-items: center;
  font-weight: 800; font-size: 18px;
  flex-shrink: 0;
}
.form-step h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.form-step p { font-size: 14px; color: var(--text-dim); line-height: 1.55; }

.form-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.form-card h3 {
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text);
}
.form-card p.muted { font-size: 14px; color: var(--text-dim); margin-bottom: 28px; }
.field { margin-bottom: 18px; }
.field.reveal {
  animation: reveal-field 0.4s ease-out;
}
@keyframes reveal-field {
  from { opacity: 0; transform: translateY(-6px); max-height: 0; }
  to { opacity: 1; transform: translateY(0); max-height: 400px; }
}
.field label {
  display: block; font-size: 13px; font-weight: 600;
  text-transform: none; letter-spacing: 0;
  color: var(--text); margin-bottom: 8px;
}
.field label .req { color: var(--accent); margin-left: 2px; }
.field input, .field select {
  width: 100%;
  background: var(--ink); color: var(--text);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 16px 18px;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  background: #0d0d0d;
  box-shadow: 0 0 0 3px rgba(255,192,0,0.15);
}
.field input::placeholder { color: var(--text-mute); }

/* Phone with country selector */
.phone-wrap { display: flex; gap: 8px; align-items: stretch; }
.phone-wrap input { flex: 1; min-width: 0; }
.country-select { position: relative; flex-shrink: 0; }
.country-trigger {
  display: flex; align-items: center; gap: 6px;
  height: 100%; padding: 0 12px;
  background: var(--ink); color: var(--text);
  border: 1px solid var(--line); border-radius: 10px;
  font-size: 14px; font-family: inherit; cursor: pointer;
  white-space: nowrap; transition: border-color 0.2s, box-shadow 0.2s;
}
.country-trigger:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,192,0,0.15); }
.country-trigger svg { opacity: 0.5; }
.country-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 200;
  background: #1a1a1a; border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; min-width: 220px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}
.country-search {
  padding: 10px 10px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.country-search input {
  width: 100%; background: rgba(255,255,255,0.06); border: none;
  border-radius: 7px; padding: 8px 10px; color: var(--text);
  font-size: 13px; font-family: inherit; outline: none;
}
.country-search input::placeholder { color: var(--text-mute); }
.country-list { max-height: 220px; overflow-y: auto; }
.country-list::-webkit-scrollbar { width: 4px; }
.country-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 4px; }
.country-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 14px; background: none; border: none;
  color: var(--text); font-size: 14px; font-family: inherit;
  cursor: pointer; text-align: left; transition: background 0.15s;
}
.country-option:hover { background: rgba(255,255,255,0.06); }
.country-option.active { background: rgba(255,192,0,0.08); }
.country-dial { margin-left: auto; color: var(--text-mute); font-size: 13px; }
.country-empty { padding: 12px 14px; color: var(--text-mute); font-size: 13px; }

.form-submit {
  width: 100%; margin-top: 14px;
  background: var(--accent); color: #0a0a0a;
  padding: 18px; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.005em;
  white-space: nowrap;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease;
  box-shadow: 0 6px 20px -4px rgba(255,192,0,0.35);
}
.form-submit::before {
  content: "";
  position: absolute;
  top: 0; left: -120%; height: 100%; width: 60%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.form-submit:hover {
  background: var(--accent-3);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(255,192,0,0.5), 0 0 0 4px rgba(255,192,0,0.12);
}
.form-submit:hover::before { left: 130%; }
.form-submit:active { transform: translateY(0); }
.form-submit.sent { background: var(--green); color: #000; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23a8a8a8' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* Chrome / Safari autofill — kill the white box */
.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus,
.field input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--ink) inset !important;
  -webkit-text-fill-color: var(--text) !important;
  caret-color: var(--text);
  transition: background-color 5000s ease-in-out 0s;
  border-color: var(--line) !important;
}

/* Custom select */
.cselect { position: relative; }
.cselect-trigger {
  width: 100%; text-align: left;
  background: var(--ink); color: var(--text);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 16px 44px 16px 18px;
  font-size: 15px;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: block;
}
.cselect-trigger:hover { border-color: var(--line-2); }
.cselect-trigger.open, .cselect-trigger:focus {
  outline: none; border-color: var(--accent);
  background: #0d0d0d;
  box-shadow: 0 0 0 3px rgba(255,192,0,0.15);
}
.cselect-trigger.placeholder { color: var(--text-mute); }
.cselect-trigger::after {
  content: ""; position: absolute; right: 16px; top: 50%;
  width: 12px; height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23a8a8a8' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>") no-repeat center / contain;
  transform: translateY(-50%);
  transition: transform 0.2s;
}
.cselect-trigger.open::after { transform: translateY(-50%) rotate(180deg); }
.cselect-menu {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px);
  background: #0d0d0d;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.7);
  max-height: 280px;
  overflow-y: auto;
  z-index: 20;
  padding: 6px;
  animation: cselect-in 0.15s ease-out;
}
@keyframes cselect-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.cselect-option {
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  color: var(--text);
  transition: background 0.12s, color 0.12s;
}
.cselect-option:hover {
  background: rgba(255,192,0,0.1);
  color: var(--accent);
}
.cselect-option.selected {
  background: rgba(255,192,0,0.14);
  color: var(--accent);
  font-weight: 600;
}
.cselect-option.selected::after {
  content: "✓";
  font-weight: 700;
}
.cselect-menu::-webkit-scrollbar { width: 8px; }
.cselect-menu::-webkit-scrollbar-track { background: transparent; }
.cselect-menu::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
.form-submit {
  width: 100%; margin-top: 12px;
  background: var(--green); color: #000;
  padding: 16px; border-radius: 12px;
  font-size: 15px; font-weight: 800;
  white-space: nowrap;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 10px 30px -8px rgba(30,215,96,0.4);
}
.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none !important;
}
.form-error {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.3);
  border-radius: 10px;
  color: #ff8080;
  font-size: 13px;
  font-weight: 500;
}
.form-submit:hover { background: var(--green-2); transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(30,215,96,0.55); }
.form-submit.sent { background: var(--accent); }
.form-foot {
  margin-top: 14px; font-size: 12px; color: var(--text-mute); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* Radio stack inside form */
.radio-stack { display: flex; flex-direction: column; gap: 8px; }
label.radio-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px; font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text);
  margin-bottom: 0;
  transition: border-color 0.2s, background 0.2s;
}
.radio-row:hover { border-color: var(--line-2); }
.radio-row.on {
  border-color: var(--accent);
  background: rgba(255,192,0,0.06);
}
.radio-row input { position: absolute; opacity: 0; pointer-events: none; }
.radio-dot {
  width: 18px; height: 18px; flex-shrink: 0;
  display: inline-block;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  position: relative;
  transition: border-color 0.2s;
}
.radio-row.on .radio-dot { border-color: var(--accent); }
.radio-row.on .radio-dot::after {
  content: ""; position: absolute; inset: 3px;
  background: var(--accent); border-radius: 50%;
}

/* ===== Testimonials ===== */
.testimonials { padding: 80px 0 60px; }
.test-head {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 40px;
  align-items: center; text-align: center;
}
.test-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 720px; margin: 0 auto;
}
@media (max-width: 640px) { .test-grid { grid-template-columns: 1fr; max-width: 360px; } }
.test-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: var(--ink-3);
  cursor: pointer;
  transition: transform 0.3s;
}
.test-card:hover { transform: translateY(-4px); }
.test-card:not(.test-card-video)::before {
  content: ""; position: absolute; inset: 0;
  background: var(--bg, linear-gradient(135deg, #2a2a2a, #1a1a1a));
  background-size: cover; background-position: center;
}
.test-card:not(.test-card-video)::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
}
.test-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  z-index: 2;
}
.test-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,192,0,0.95);
  display: grid; place-items: center;
  z-index: 2;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.test-card:hover .test-play { transform: translate(-50%, -50%) scale(1.1); }
.test-play svg { width: 22px; height: 22px; fill: #000; margin-left: 3px; }
.test-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
  z-index: 2;
}
.test-caption h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.test-caption p { font-size: 12px; color: var(--text-dim); }

/* ===== About section ===== */
.about {
  padding: 100px 0;
  background: #fff;
}
.about .section-title { color: #0a0a0a; }
.about .section-title strong { color: #0a0a0a; }
.about .section-sub { color: #444; }
.about .stat-card { background: #f5f5f5; border-color: #e0e0e0; }
.about .stat-label { color: #555; }
.about-grid {
  display: grid; grid-template-columns: 5fr 6fr; gap: 80px; align-items: center;
}
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.polaroids { position: relative; min-height: 480px; }
.polaroid {
  position: absolute;
  width: 240px;
  background: #f5f5f0;
  padding: 14px 14px 40px;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 6px 12px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}
.polaroid:hover { transform: rotate(0deg) translateY(-8px) scale(1.04) !important; z-index: 10; }
.polaroid-img {
  aspect-ratio: 1;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.polaroid-label {
  position: absolute; bottom: 8px; left: 0; right: 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.1em;
  color: #1a1a1a;
}
.polaroid-1 { top: 0; left: 20px; transform: rotate(-6deg); }
.polaroid-2 { top: 160px; left: 180px; transform: rotate(4deg); z-index: 2; }
.polaroid-3 { top: 300px; left: 40px; transform: rotate(-3deg); }
@media (max-width: 980px) { .polaroids { display: grid; grid-template-columns: repeat(3, 1fr); min-height: auto; gap: 12px; }
  .polaroid { position: relative; top: auto; left: auto; width: 100%; }
}

.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.stat-card {
  padding: 24px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.stat-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.stat-num {
  font-size: 42px; font-weight: 800; letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--accent-3), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-dim); margin-top: 8px; line-height: 1.4; }

/* ===== Method (icon + halo) ===== */
.method {
  padding: 120px 0;
  background:
    radial-gradient(80% 60% at 50% 50%, rgba(255,192,0,0.08), transparent 70%);
  text-align: center;
  overflow: hidden;
}
.method-viz {
  position: relative;
  width: min(720px, 92%);
  margin: 80px auto 40px;
  aspect-ratio: 1.4 / 1;
  overflow: hidden;
}
.method-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.method-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,192,0,0.18);
  aspect-ratio: 1;
}
.method-ring.r1 {
  width: 52%;
  border-color: rgba(255,192,0,0.35);
  animation: ring-spin 60s linear infinite;
}
.method-ring.r2 {
  width: 72%;
  border-style: dashed;
  border-color: rgba(255,192,0,0.22);
  animation: ring-spin 90s linear infinite reverse;
}
.method-ring.r3 {
  width: 96%;
  border-color: rgba(255,192,0,0.12);
}
@keyframes ring-spin {
  to { transform: rotate(360deg); }
}
.method-glow {
  position: absolute;
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,192,0,0.25) 0%, rgba(255,192,0,0.08) 40%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.method-mark {
  position: relative;
  width: 38%;
  height: auto;
  filter:
    drop-shadow(0 0 48px rgba(255,192,0,0.55))
    drop-shadow(0 16px 40px rgba(0,0,0,0.6));
  z-index: 2;
  animation: mark-float 6s ease-in-out infinite;
}
@keyframes mark-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.method-tag {
  position: absolute;
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(20,20,20,0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  padding: 12px 20px 12px 12px;
  border-radius: 999px;
  font-size: 14px; font-weight: 700;
  z-index: 3;
  white-space: nowrap;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.5);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.method-tag:hover {
  border-color: var(--accent);
  transform: scale(1.05);
  background: rgba(30,30,30,0.95);
}
.mt-num {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0;
}
/* Position tags around the icon — pentagon arrangement */
.mt-1 { top: 0%; left: 50%; transform: translateX(-50%); }
.mt-2 { top: 28%; right: 2%; }
.mt-3 { bottom: 14%; right: 14%; }
.mt-4 { bottom: 14%; left: 14%; }
.mt-5 { top: 28%; left: 2%; }

/* Monetização = destino final — destaque amarelo */
.method-tag.mt-4 {
  background: linear-gradient(180deg, var(--accent-3) 0%, var(--accent) 100%);
  border-color: var(--accent);
  color: #0a0a0a;
  box-shadow:
    0 0 0 4px rgba(255,192,0,0.12),
    0 14px 32px -8px rgba(255,192,0,0.5);
}
.method-tag.mt-4 .mt-num {
  background: #0a0a0a;
  color: var(--accent);
}
.method-tag.mt-4:hover {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  border-color: var(--accent-3);
  box-shadow:
    0 0 0 6px rgba(255,192,0,0.18),
    0 18px 40px -8px rgba(255,192,0,0.6);
}
.method-tag:hover { transform: scale(1.05); }
.mt-1:hover { transform: translateX(-50%) scale(1.05); }

@media (max-width: 760px) {
  .method-viz {
    aspect-ratio: 1 / 1;
    width: 100%;
  }
  .method-mark { width: 32%; }
  .method-tag { font-size: 12px; padding: 8px 14px 8px 8px; }
  .mt-num { width: 22px; height: 22px; font-size: 10px; }
  .mt-1 { top: 2%; }
  .mt-2 { top: 25%; right: 0%; }
  .mt-3 { bottom: 18%; right: 4%; }
  .mt-4 { bottom: 18%; left: 4%; }
  .mt-5 { top: 25%; left: 0%; }
}

/* ===== Services ===== */
.services { padding: 120px 0; background: var(--ink); position: relative; }
.services-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 64px; align-items: flex-start; max-width: 52ch; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative;
  padding: 36px 32px;
  background: linear-gradient(180deg, #161616 0%, #0e0e0e 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  min-height: 320px;
  display: flex; flex-direction: column;
  gap: 16px;
  cursor: default;
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(255,192,0,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.svc-card:hover {
  border-color: rgba(255,192,0,0.35);
  transform: translateY(-6px);
  background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
}
.svc-card:hover::after { opacity: 1; }

.svc-card.featured {
  grid-column: 1 / -1;
  background:
    radial-gradient(50% 100% at 100% 0%, rgba(255,192,0,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
  border-color: rgba(255,192,0,0.35);
  min-height: 360px;
  flex-direction: row;
  align-items: stretch;
  padding: 48px;
  gap: 56px;
}
.svc-card.featured .svc-body {
  flex: 1;
  max-width: 52ch;
  display: flex; flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.svc-card.featured .svc-visual {
  flex: 0 0 44%;
  align-self: stretch;
  position: relative;
  display: flex;
}
@media (max-width: 980px) {
  .svc-card.featured { grid-column: 1 / -1; flex-direction: column; padding: 32px; gap: 24px; }
  .svc-card.featured .svc-visual { width: 100%; min-height: 160px; }
}
@media (max-width: 640px) {
  .svc-card.featured { padding: 28px; }
}

.svc-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.svc-icon {
  color: var(--accent);
  flex-shrink: 0;
  display: inline-flex;
  width: 32px; height: 32px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  align-items: center;
}
.svc-icon svg { width: 28px; height: 28px; }
.svc-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid rgba(255,192,0,0.3);
  border-radius: 999px;
  background: rgba(255,192,0,0.08);
}
.svc-card.featured .svc-icon { width: 44px; height: 44px; }
.svc-card.featured .svc-icon svg { width: 40px; height: 40px; }

.svc-card h4 {
  font-size: 20px; font-weight: 700; letter-spacing: -0.015em;
  line-height: 1.2;
  margin-top: auto;
}
.svc-card.featured h4 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  margin-top: 8px;
}
.svc-card p {
  font-size: 14.5px; color: var(--text-dim); line-height: 1.55;
}
.svc-card.featured p {
  font-size: 16px;
}
.svc-card.featured .svc-bullets {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.svc-card.featured .svc-bullets > span {
  font-size: 12px; font-weight: 600;
  padding: 7px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-dim);
  box-shadow: none;
  outline: none;
  letter-spacing: 0;
}
.svc-card.featured .svc-bullets > span > span {
  border: none;
  background: none;
  padding: 0;
}

.svc-arrow {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--text-mute);
  font-size: 13px; font-weight: 600;
  transition: color 0.2s, border-color 0.2s;
}
.svc-card:hover .svc-arrow { color: var(--accent); border-color: rgba(255,192,0,0.3); }
.svc-arrow-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.svc-arrow-icon svg { width: 12px; height: 12px; }
.svc-card:hover .svc-arrow-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: translateX(4px);
}

/* Featured card visual mockup — clean stats panel */
.svc-visual-inner {
  position: relative;
  width: 100%;
  border-radius: 14px;
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(255,192,0,0.18), transparent 70%),
    linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid var(--line-2);
  overflow: hidden;
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.svc-visual-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mute);
}
.svc-visual-hero {
  display: flex; align-items: flex-end; gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.svc-visual-hero-num {
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, var(--accent-3), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.svc-visual-hero-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.3;
  padding-bottom: 8px;
}
.svc-metric-list { display: flex; flex-direction: column; gap: 10px; }

/* ROI chart — animated states */
.chart-area      { opacity: 0; transition: opacity 0.8s 0.5s ease; }
.chart-dot-outer { opacity: 0; transition: opacity 0.4s 1.3s ease; }
.chart-dot-inner { opacity: 0; transition: opacity 0.4s 1.3s ease, transform 0.4s 1.3s cubic-bezier(0.34, 1.56, 0.64, 1); transform: scale(0); transform-box: fill-box; transform-origin: center; }
.chart-live .chart-area      { opacity: 1; }
.chart-live .chart-dot-outer { opacity: 0.2; }
.chart-live .chart-dot-inner { opacity: 1; transform: scale(1); }

/* ROI chart */
.svc-chart {
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
  min-height: 140px;
}
.svc-chart-svg {
  width: 100%;
  height: 140px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255,192,0,0.2));
}
.svc-chart-axis {
  display: flex; justify-content: space-between;
  font-size: 10px; color: var(--text-mute);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0 4px;
}

/* Investido → Faturado flow */
.svc-flow {
  display: flex; align-items: stretch; gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.svc-flow-cell {
  flex: 1;
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.svc-flow-cell.hi {
  background: rgba(255,192,0,0.08);
  border-color: rgba(255,192,0,0.3);
}
.svc-flow-label {
  font-size: 10px; color: var(--text-mute);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600;
}
.svc-flow-val {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.svc-flow-cell.hi .svc-flow-val { color: var(--accent); }
.svc-flow-arrow {
  display: grid; place-items: center;
  width: 36px; flex-shrink: 0;
  color: var(--accent);
}
.svc-flow-arrow svg { width: 18px; height: 18px; }

/* ===== Results ===== */
.results {
  padding: 100px 0;
  background:
    linear-gradient(180deg, var(--ink) 0%, #050505 100%);
}
.results-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px;
}
@media (max-width: 880px) { .results-grid { grid-template-columns: 1fr; } }
.result-card {
  position: relative;
  padding: 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.3s;
}
.result-card:hover { transform: translateY(-4px); }
.result-card::after {
  content: ""; position: absolute; top: -50%; right: -30%;
  width: 60%; height: 200%;
  background: radial-gradient(50% 50%, rgba(255,192,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.result-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,192,0,0.1); border: 1px solid rgba(255,192,0,0.3);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}
.result-big {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  margin: 20px 0 16px;
  background: linear-gradient(180deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.result-card p {
  font-size: 15px; color: var(--text-dim); line-height: 1.6;
  max-width: 36ch;
  position: relative; z-index: 1;
}
.result-meta {
  display: flex; gap: 24px; margin-top: 28px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.result-meta div { font-size: 12px; color: var(--text-mute); letter-spacing: 0.05em; }
.result-meta strong { display: block; font-size: 18px; font-weight: 800; color: var(--text); margin-top: 4px; letter-spacing: -0.02em; }

/* ===== Team ===== */
.team { padding: 100px 0; }
.team-head { text-align: center; max-width: 720px; margin: 0 auto 56px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.team-head .section-sub { text-align: center; }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  padding: 28px; border-radius: 16px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.2s;
}
.team-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.team-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  color: #000; margin-bottom: 20px;
}
.team-icon svg { width: 22px; height: 22px; }
.team-card h4 { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.team-card p { font-size: 13px; color: var(--text-dim); line-height: 1.5; }

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--accent) 0%, #f5b500 100%);
  color: #1a1a1a;
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }
.faq h2 { color: #1a1a1a; }
.faq .section-title { color: #1a1a1a; }
.faq .section-title strong { color: #1a1a1a; }
.faq .section-title em { color: #1a1a1a; font-style: italic; font-weight: 800; }
.faq .eyebrow { color: #1a1a1a; }
.faq .eyebrow::before { background: #1a1a1a; }
.faq-intro p { color: rgba(0,0,0,0.7); margin-top: 16px; max-width: 30ch; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding: 22px 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.2); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: clamp(16px, 1.6vw, 19px); font-weight: 700; letter-spacing: -0.01em;
}
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: #1a1a1a; color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0; font-size: 18px; font-weight: 400;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  font-size: 15px; color: rgba(0,0,0,0.75); line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 400px; margin-top: 14px; }

/* ===== Final CTA ===== */
.final-cta {
  padding: 120px 0 100px;
  background: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 60px, rgba(255,192,0,0.06) 60px 61px),
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(255,192,0,0.06) 60px 61px);
  pointer-events: none;
  mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 70%);
}
.final-cta-head {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  text-wrap: balance;
  text-transform: uppercase;
  max-width: 22ch;
  margin-left: auto; margin-right: auto;
  position: relative;
  color: #0a0a0a;
}
.final-cta-head em { font-style: normal; color: var(--accent); }
.final-cta-sub {
  margin-top: 20px; max-width: 56ch; margin-left: auto; margin-right: auto;
  font-size: 16px; color: #555; line-height: 1.55;
  position: relative;
}
.final-cta-btn {
  margin-top: 36px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #0a0a0a;
  padding: 18px 32px; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.005em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease;
  box-shadow: 0 6px 24px -4px rgba(255,192,0,0.35);
}
.final-cta-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -120%; height: 100%; width: 60%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.final-cta-btn:hover {
  background: var(--accent-3);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(255,192,0,0.5), 0 0 0 4px rgba(255,192,0,0.12);
}
.final-cta-btn:hover::before { left: 130%; }
.final-cta-foot {
  margin-top: 16px; font-size: 12px; color: #888;
  letter-spacing: 0.02em;
  position: relative;
}

/* ===== Footer ===== */
footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
}
.foot-row {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.foot-logo img { height: 56px; width: auto; }
.foot-social {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  border: 1px solid var(--line-2);
  background: var(--ink-3);
  border-radius: 50%;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.foot-social:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,192,0,0.06);
  transform: translateY(-2px);
}
.foot-meta {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 12px; color: var(--text-mute);
  flex-wrap: wrap;
}

/* ===== Photo placeholders (CSS-generated) ===== */
.photo-team { background:
  linear-gradient(135deg, rgba(255,192,0,0.3), transparent 60%),
  radial-gradient(circle at 30% 40%, #5a4520 0%, #2a1f10 50%, #0a0a0a 100%);
}
.photo-office { background:
  linear-gradient(135deg, rgba(255,192,0,0.2), transparent 60%),
  radial-gradient(circle at 70% 50%, #3a2f1a 0%, #1a140a 60%, #050505 100%);
}
.photo-culture { background:
  linear-gradient(135deg, rgba(255,192,0,0.25), transparent 50%),
  radial-gradient(circle at 50% 60%, #6a4f1a 0%, #2a2010 60%, #0a0a0a 100%);
}
.test-bg-1 { background:
  linear-gradient(135deg, #3a2410 0%, #1a1208 100%),
  radial-gradient(circle at 50% 30%, rgba(255,192,0,0.2), transparent 60%);
}
.test-bg-2 { background:
  linear-gradient(135deg, #2a1a30 0%, #100a18 100%),
  radial-gradient(circle at 50% 30%, rgba(255,192,0,0.15), transparent 60%);
}
.test-bg-3 { background:
  linear-gradient(135deg, #1a2030 0%, #08101a 100%),
  radial-gradient(circle at 50% 30%, rgba(255,192,0,0.15), transparent 60%);
}

/* ===== Photo silhouettes ===== */
.silhouette {
  position: absolute; inset: 0;
  display: grid; place-items: end center;
}
.silhouette svg { width: 80%; height: 80%; opacity: 0.4; }

/* ===== Tweaks override hooks ===== */
.cta-yellow .form-submit, .cta-yellow .final-cta-btn { background: var(--accent); color: #000; box-shadow: 0 12px 30px -8px rgba(255,192,0,0.5); }
.cta-yellow .form-submit:hover { background: var(--accent-2); }

/* ===== Scroll reveal ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ===== Hero entrance (on load) ===== */
.hero-logo     { animation: aion-up 0.7s cubic-bezier(0.16,1,0.3,1) both; }
.hero-headline { animation: aion-up 0.7s 0.12s cubic-bezier(0.16,1,0.3,1) both; }
.hero-sub      { animation: aion-up 0.65s 0.26s ease both; }
.hero-cta      { animation: aion-up 0.65s 0.42s ease both; }
@keyframes aion-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Nav hamburger ===== */
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; }
.bar { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-drawer {
  position: fixed; top: 60px; left: 0; right: 0; z-index: 49;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  flex-direction: column; gap: 0;
  padding: 12px 0 24px;
  display: none;
}
.nav-drawer a {
  display: block; padding: 14px 24px;
  font-size: 16px; font-weight: 500; color: var(--text-dim);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--accent); }
.nav-cta-drawer {
  margin: 12px 24px 0;
  background: var(--accent); color: #000 !important;
  border-radius: 10px; text-align: center;
  font-weight: 700 !important;
  border-bottom: none !important;
}

@media (max-width: 720px) {
  .nav-burger { display: flex; }
  .nav-cta-desktop { display: none; }
  .nav-drawer { display: flex; }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  :root { --gutter: 20px; }

  /* Hero */
  .hero { padding: 90px 20px 64px; }
  .hero-logo { height: 56px; margin-bottom: 32px; }
  .hero-headline { font-size: clamp(30px, 8.5vw, 44px); max-width: 100%; text-wrap: unset; }
  .hero-sub { font-size: 15px; color: var(--text-dim); margin-top: 20px; max-width: 100%; }
  .hero-cta { padding: 16px 24px; font-size: 15px; width: 100%; max-width: 360px; justify-content: center; }

  /* Titles */
  .section-title { font-size: clamp(24px, 6.5vw, 38px); }
  .final-cta-head { font-size: clamp(24px, 6.5vw, 38px); }
  .form-urgency { font-size: clamp(22px, 6vw, 36px); }

  /* Form */
  .form-card { padding: 28px 20px; }
  .form-steps { gap: 12px; }
  .form-step { padding: 16px; }

  /* Results */
  .result-card { padding: 28px 20px; }
  .result-big { font-size: clamp(36px, 9vw, 56px); }
  .result-meta { gap: 16px; }

  /* About */
  .about-stats { gap: 12px; }
  .stat-num { font-size: 34px; }
  .polaroid { max-width: 100%; }
  .polaroid-1 { transform: rotate(-3deg); }
  .polaroid-2 { transform: rotate(2deg); }
  .polaroid-3 { transform: rotate(-1.5deg); }

  /* Services */
  .svc-card.featured { padding: 24px; gap: 20px; }
  .svc-card.featured h4 { font-size: clamp(22px, 5.5vw, 30px); }

  /* Testimonials */
  .test-grid { gap: 16px; }

  /* Team */
  .team-card { padding: 22px; }

  /* FAQ */
  .faq { padding: 72px 0; }
  .faq-q { font-size: 15px; }

  /* Final CTA */
  .final-cta { padding: 80px 0 72px; }
  .final-cta-btn { width: 100%; max-width: 340px; justify-content: center; }

  /* Footer */
  .foot-row { flex-direction: column; gap: 20px; }
  .foot-meta { flex-direction: column; gap: 8px; text-align: center; align-items: center; }
}

@media (max-width: 480px) {
  :root { --gutter: 16px; }

  .hero { padding: 90px 16px 64px; }
  .hero-headline { font-size: clamp(28px, 8.5vw, 40px); }
  .hero-cta { font-size: 14px; padding: 16px 20px; }

  /* Method tags — oculta os externos, mantém só os principais */
  .method-viz { aspect-ratio: 1 / 1; }
  .method-tag { font-size: 11px; padding: 6px 10px 6px 6px; gap: 6px; white-space: nowrap; }
  .mt-num { width: 20px; height: 20px; font-size: 10px; }

  .form-card { padding: 24px 16px; }
  .stat-card { padding: 18px; }
  .stat-num { font-size: 30px; }
  .result-card { padding: 22px 16px; }
  .svc-card { padding: 24px 20px; }
  .svc-card.featured { padding: 20px 16px; }
  .team-card { padding: 18px; }
}
