:root {
  --green: #18ab5c;
  --green-bright: #1ec86a;
  --green-deep: #158a4b;
  --green-dim: #0c3d24;
  --green-ink: #082016;
  --bg: #030806;
  --bg-2: #06140c;
  --bg-3: #0a1c12;
  --text: #e7f6ec;
  --muted: #93b4a2;
  --line: rgba(24, 171, 92, 0.22);
  --glass: rgba(6, 22, 14, 0.72);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Syne", "Outfit", sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--green);
  color: #04140c;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 108px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--green);
}

h1,
h2,
.display {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.6rem);
}

h2 {
  font-size: clamp(1.85rem, 3.6vw, 3.1rem);
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 640px;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 48px;
}

.section-head.center {
  text-align: center;
  justify-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  color: #04140c;
  box-shadow: 0 10px 30px rgba(24, 171, 92, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(24, 171, 92, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--green);
  background: rgba(24, 171, 92, 0.08);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(3, 8, 6, 0.86);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 168px;
}

.brand svg,
.brand img.mark {
  width: 38px;
  height: 38px;
  display: block;
  flex-shrink: 0;
}

.wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.04em;
}

.wordmark span {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: kenburns 22s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 6, 0.35) 0%, rgba(3, 8, 6, 0.55) 42%, rgba(3, 8, 6, 0.96) 100%),
    radial-gradient(circle at 20% 20%, rgba(24, 171, 92, 0.18), transparent 36%);
}

.plot-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 171, 92, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 171, 92, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 30% 40%, black, transparent 70%);
  animation: gridShift 18s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  max-width: 860px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(4, 20, 12, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: #cde8d6;
}

.orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 171, 92, 0.22), transparent 68%);
  filter: blur(10px);
  animation: float 9s ease-in-out infinite;
}

.orb-1 { top: 8%; right: -80px; }
.orb-2 { bottom: 10%; left: -120px; animation-delay: -3s; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
}

.card {
  background: linear-gradient(180deg, rgba(14, 42, 26, 0.72), rgba(6, 18, 12, 0.88));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.card:hover,
.card.in-view:hover {
  transform: translateY(-8px);
  border-color: rgba(24, 171, 92, 0.5);
}

.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(24, 171, 92, 0.12);
  color: var(--green);
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.service {
  min-height: 180px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -40px;
  bottom: -50px;
  border-radius: 50%;
  background: rgba(24, 171, 92, 0.08);
  transition: transform 0.4s ease;
}

.service:hover,
.service.in-view:hover {
  background: #0b2317;
  transform: translateY(-6px);
}

.service:hover::after {
  transform: scale(1.5);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(24, 171, 92, 0.12);
  color: var(--green);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.service span {
  color: var(--muted);
  font-size: 0.84rem;
  position: relative;
  z-index: 1;
}

.service a {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 600;
  margin-top: auto;
  padding-top: 12px;
  position: relative;
  z-index: 1;
}

.timeline {
  display: grid;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--green), transparent);
}

.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  padding: 16px 0 28px;
}

.dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-ink);
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.photo-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--line);
  cursor: zoom-in;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 460px;
  transform-origin: center;
  transition: transform 0.4s ease;
}

.photo-frame:hover img {
  transform: scale(1.12);
}

.photo-frame figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(16px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mentor-name span {
  color: var(--green);
}

.hl {
  color: var(--green);
  font-weight: 700;
}

.mentor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.mentor-stats article {
  padding: 16px 12px;
  border-radius: 16px;
  background: var(--bg-3);
  border: 1px solid var(--line);
}

.mentor-stats b {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--green-bright);
  letter-spacing: -0.03em;
}

.mentor-stats span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat b,
.stat-value {
  white-space: nowrap;
}

.story {
  max-width: 860px;
  text-align: center;
  margin: 0 auto;
}

.story h2 {
  margin-bottom: 18px;
}

.story .lead {
  max-width: 820px;
  margin: 0 auto;
}

.clients-banner {
  margin: 0;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  padding: 28px 24px;
}

.clients-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.stat {
  padding: 28px 22px;
  border-radius: 20px;
  background: var(--bg-3);
  border: 1px solid var(--line);
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--green-bright);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.simulator {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 171, 92, 0.12), transparent 40%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 32px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field label {
  font-size: 0.86rem;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: #07150e;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
}

.sim-result {
  display: grid;
  gap: 14px;
  align-content: start;
}

.result-card {
  padding: 22px;
  border-radius: 20px;
  background: #071910;
  border: 1px solid var(--line);
}

.result-card small {
  color: var(--muted);
}

.result-card strong {
  display: block;
  font-size: 1.7rem;
  font-family: var(--display);
  margin-top: 4px;
}

.note {
  font-size: 0.8rem;
  color: var(--muted);
}

.cta-band {
  border-radius: 32px;
  padding: 56px 40px;
  background:
    linear-gradient(120deg, rgba(24, 171, 92, 0.18), rgba(3, 8, 6, 0.2)),
    url("../img/hero.jpg") center/cover;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 8, 6, 0.88), rgba(3, 8, 6, 0.55));
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.socials a:hover {
  border-color: var(--green);
  color: var(--green);
}

.float-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
}

.instagram-float,
.whatsapp-float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
}

.instagram-float {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.whatsapp-float {
  background: #25d366;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.instagram-float svg,
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

.marquee {
  overflow: hidden;
  position: relative;
  z-index: 0;
  border-block: 1px solid var(--line);
  background: #07150e;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--green);
}

.chips-select {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--muted);
  transition: 0.2s ease;
}

.choice.active,
.choice:hover {
  color: #04140c;
  background: var(--green);
  border-color: var(--green);
}

.reasons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.reason {
  padding: 22px 16px;
  border-radius: 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  min-height: 160px;
}

.reason b {
  display: block;
  color: var(--green);
  font-family: var(--display);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq p {
  color: var(--muted);
  margin-top: 10px;
}

.quiz {
  display: grid;
  gap: 12px;
}

.quiz-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: #07150e;
  border: 1px solid var(--line);
}

.switch {
  display: flex;
  gap: 8px;
}

.switch button {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.switch button.active {
  background: var(--green);
  color: #04140c;
  border-color: var(--green);
}

.score-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #08180f;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: end;
}

.hero-grid.solo {
  grid-template-columns: 1fr;
}

.hero-grid.solo .hero-content {
  max-width: 980px;
}

.hero-title-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.hero-title-row h1 {
  flex: 1;
  min-width: 0;
}

.seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 168px;
  width: 168px;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(4, 20, 12, 0.7);
  backdrop-filter: blur(12px);
}

.seal img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
}

.seal small {
  display: block;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seal b {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
}

.portrait {
  justify-self: end;
  width: min(390px, 100%);
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.portrait figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.socials a svg {
  width: 18px;
  height: 18px;
}

.nav-social {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.nav-social:hover {
  border-color: var(--green);
  color: var(--green);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  cursor: zoom-in;
  position: relative;
  z-index: 1;
  transition: z-index 0s;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery figure:hover,
.photo-frame:hover {
  z-index: 9;
}

.gallery figure:hover img {
  transform: scale(1.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 8, 6, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid var(--line);
  transform: scale(0.94);
  transition: transform 0.3s ease;
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #04140c;
  font-size: 1.6rem;
  cursor: pointer;
}

.video-wrap {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  background: #07150e;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #07150e;
}

.video-play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 8, 6, 0.15), rgba(3, 8, 6, 0.45));
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  border-radius: 50%;
  background: var(--green);
  color: #04140c;
  display: grid;
  place-items: center;
  z-index: 1;
  box-shadow: 0 12px 30px rgba(24, 171, 92, 0.45);
}

.play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

.video-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--green);
  font-weight: 600;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.method-item {
  padding: 18px;
  border-radius: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  min-height: 132px;
}

.method-item b {
  display: block;
  color: var(--green);
  margin-bottom: 8px;
  font-size: 0.78rem;
}

.legal {
  padding: 140px 0 80px;
}

.legal h1 { margin-bottom: 18px; }
.legal h2 { margin: 28px 0 10px; font-size: 1.35rem; }
.legal p, .legal li { color: var(--muted); margin-bottom: 10px; }
.legal ul { padding-left: 18px; }
.legal a { color: var(--green); }

@media (max-width: 980px) {
  .hero-title-row {
    flex-direction: column;
  }
  .seal {
    flex: none;
    width: auto;
    max-width: 280px;
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
  .menu-btn { display: grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: rgba(5, 16, 11, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
  }
  .nav-links.open { display: flex; }
  .pillars,
  .services-grid,
  .split,
  .stats,
  .simulator,
  .reasons,
  .process,
  .footer-grid,
  .hero-grid,
  .gallery,
  .method-grid {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .gallery,
  .method-grid { grid-template-columns: 1fr 1fr; }
  .portrait { justify-self: start; }
}

@media (max-width: 640px) {
  .services-grid,
  .gallery,
  .method-grid,
  .mentor-stats { grid-template-columns: 1fr; }
  .hero { padding: 110px 0 48px; min-height: auto; }
  .cta-band { padding: 36px 22px; }
  .hero-actions .btn { width: 100%; }
  .seal {
    max-width: 100%;
    width: 100%;
    border-radius: 16px;
    align-items: center;
  }
  .play-btn { width: 60px; height: 60px; margin: -30px 0 0 -30px; }
  .float-dock { right: 14px; bottom: 14px; }
  .instagram-float,
  .whatsapp-float { width: 50px; height: 50px; }
}

@keyframes kenburns {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-2%, -1%, 0); }
}

@keyframes gridShift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 72px 72px, 72px 72px; }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
  .gallery figure:hover img,
  .photo-frame:hover img {
    transform: none;
  }
}
