:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --panel: rgba(255,255,255,.055);
  --panel-strong: rgba(255,255,255,.08);
  --line: rgba(255,255,255,.1);
  --text: #f8f5f0;
  --muted: #cfc7bb;
  --muted-2: #a89f93;
  --gold: #cba367;
  --gold-2: #f2d39a;
  --gold-3: rgba(203,163,103,.26);
  --radius: 30px;
  --radius-lg: 40px;
  --shadow: 0 20px 80px rgba(0,0,0,.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(203,163,103,.12), transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.04), transparent 16%),
    linear-gradient(180deg, #040404 0%, #080808 38%, #050505 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1200px, calc(100% - 34px)); margin: 0 auto; }
.section { padding: 110px 0; position: relative; }
.section-heading { margin-bottom: 34px; }
.section-heading.center { text-align: center; }
.section-heading.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(203,163,103,.22);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(203,163,103,.08);
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 0 18px rgba(203,163,103,.4);
}
h1,h2,h3 { margin: 0 0 16px; line-height: 1.05; }
h1 { font-size: clamp(3rem, 6vw, 6.3rem); font-weight: 900; letter-spacing: -.05em; }
h1 span { display: block; color: var(--gold-2); }
h2 { font-size: clamp(2.15rem, 3.6vw, 4rem); font-weight: 800; letter-spacing: -.04em; }
h3 { font-size: 1.34rem; font-weight: 700; }
p { margin: 0 0 16px; color: var(--muted); line-height: 1.75; }
.small-note { color: var(--muted-2); }
.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: .35;
}
.page-glow-left { left: -120px; top: 140px; background: rgba(203,163,103,.13); }
.page-glow-right { right: -150px; top: 420px; background: rgba(255,255,255,.04); }
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: .25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  color: #120d07;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 38px rgba(203,163,103,.25);
}
.btn-outline {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.03);
  color: var(--text);
}
.card-tag {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(203,163,103,.1);
  border: 1px solid rgba(203,163,103,.2);
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 60px; height: 60px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong { font-size: .96rem; letter-spacing: .22em; color: var(--gold-2); }
.brand-copy span { font-size: .83rem; color: var(--muted-2); }
.desktop-nav { display: flex; gap: 28px; color: #ebe5dc; }
.desktop-nav a, .mobile-nav a { position: relative; }
.desktop-nav a::after, .mobile-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
  transition: .25s ease;
}
.desktop-nav a:hover::after, .mobile-nav a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 12px; }
.mobile-toggle, .mobile-nav { display: none; }
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(203,163,103,.18), transparent 21%),
    radial-gradient(circle at 14% 24%, rgba(255,255,255,.05), transparent 18%);
}
.hero-grid, .split-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 44px;
  align-items: center;
}
.hero-copy p { font-size: 1.1rem; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 700px;
}
.mini-stat { padding: 18px 18px; border-radius: 22px; }
.mini-stat strong { display: block; margin-bottom: 6px; color: var(--gold-2); }
.mini-stat span { color: var(--muted); font-size: .95rem; }
.hero-visual { position: relative; }
.hero-image-shell {
  position: relative;
  min-height: 700px;
  border-radius: 42px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.15)),
    url('https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=1400&q=80') center/cover;
}
.hero-image-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,.1), rgba(8,8,8,.55));
}
.hero-chart {
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  z-index: 2;
  opacity: .95;
  background:
    linear-gradient(180deg, transparent, rgba(5,5,5,.6)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 500'%3E%3Cpath d='M0 380 C 120 360, 160 250, 250 260 S 420 420, 520 350 S 680 120, 760 180 S 900 380, 980 320 S 1120 120, 1210 170 S 1360 390, 1460 290 S 1560 160, 1600 190' fill='none' stroke='%23f2d39a' stroke-width='6' stroke-linecap='round'/%3E%3Cpath d='M0 420 C 110 440, 190 330, 280 360 S 430 470, 560 390 S 680 240, 760 280 S 910 440, 1020 380 S 1140 220, 1260 270 S 1410 450, 1600 330' fill='none' stroke='rgba(255,255,255,.45)' stroke-width='3' stroke-linecap='round' stroke-dasharray='10 14'/%3E%3C/svg%3E") bottom/cover no-repeat;
}
.hero-overlay-card {
  position: absolute;
  z-index: 3;
  width: min(260px, 72%);
  padding: 18px 18px 16px;
  border-radius: 24px;
}
.card-top-right { top: 28px; right: 28px; }
.card-bottom-left { left: 28px; bottom: 28px; }
.tiny-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.hero-overlay-card strong { display: block; margin-bottom: 8px; font-size: 1.12rem; }
.hero-overlay-card p { margin: 0; font-size: .94rem; line-height: 1.6; }
.visual-panel, .platform-panel {
  min-height: 540px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.visual-about {
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.25)),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1400&q=80') center/cover;
}
.visual-about::after, .service-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.58));
}
.panel-badge, .platform-badge {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(203,163,103,.12);
  border: 1px solid rgba(203,163,103,.28);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-copy { max-width: 610px; }
.services-grid, .mentors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.premium-grid { align-items: stretch; }
.service-card, .mentor-card, .testimonial-card, .mini-card {
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}
.service-card.featured {
  border-color: rgba(203,163,103,.28);
  box-shadow: 0 20px 85px rgba(203,163,103,.09), var(--shadow);
}
.service-media {
  position: relative;
  min-height: 290px;
  background-size: cover;
  background-position: center;
}
.service-basic {
  background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.2)), url('https://images.unsplash.com/photo-1554224154-22dec7ec8818?auto=format&fit=crop&w=1200&q=80');
}
.service-advanced {
  background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.2)), url('https://images.unsplash.com/photo-1518186285589-2f7649de83e0?auto=format&fit=crop&w=1200&q=80');
}
.service-live {
  background-image: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.2)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&w=1200&q=80');
}
.service-body { padding: 24px; }
.muted-section, .testimonials-section, .site-footer { background: rgba(255,255,255,.02); }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.mini-card {
  padding: 22px;
  min-height: 100%;
}
.mini-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(203,163,103,.12);
  border: 1px solid rgba(203,163,103,.26);
  color: var(--gold-2);
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.link-action { color: var(--gold-2); font-weight: 700; }
.method-panel {
  min-height: 520px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}
.method-panel::before {
  content: '';
  position: absolute;
  inset: 8% 8%;
  border-radius: 50%;
  border: 1px solid rgba(203,163,103,.18);
}
.method-orbit {
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.16);
}
.method-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 138px;
  height: 138px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #120d07;
  font-weight: 900;
  letter-spacing: .12em;
  box-shadow: 0 0 50px rgba(203,163,103,.24);
}
.method-point {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text);
}
.point-a { top: 18%; left: 16%; }
.point-b { top: 26%; right: 12%; }
.point-c { bottom: 18%; left: 50%; transform: translateX(-50%); }
.platform-panel { padding: 32px; }
.platform-screen {
  position: absolute;
  inset: 90px 30px 30px 30px;
  border-radius: 28px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.screen-bar { height: 56px; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border-bottom: 1px solid rgba(255,255,255,.06); }
.screen-content { padding: 24px; display: grid; gap: 16px; }
.screen-module { min-height: 120px; border-radius: 24px; background: linear-gradient(135deg, rgba(203,163,103,.14), rgba(255,255,255,.04)); }
.screen-module.wide { min-height: 180px; }
.feature-list { list-style: none; margin: 0 0 24px; padding: 0; }
.feature-list li {
  position: relative;
  padding: 15px 0 15px 28px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
}
.feature-list li::before {
  content: '•';
  position: absolute;
  left: 6px;
  top: 14px;
  color: var(--gold-2);
}
.community-panel { min-height: 520px; display: flex; align-items: center; justify-content: center; }
.community-stack { position: relative; width: min(480px, 100%); min-height: 460px; border-radius: 38px; }
.community-card {
  position: absolute;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.community-card.small {
  width: 48%;
  height: 44%;
  background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1000&q=80');
  top: 0;
  right: 0;
}
.community-card.large {
  width: 66%;
  height: 70%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1000&q=80');
}
.community-card.small.bottom {
  width: 42%;
  height: 36%;
  right: 8%;
  top: auto;
  bottom: 2%;
  background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1000&q=80');
}
.mentors-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mentor-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 0;
}
.mentor-portrait {
  position: relative;
  min-height: 100%;
  padding: 28px 12px 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(203,163,103,.16), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
}
.mentor-portrait img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.45));
}
.mentor-copy { padding: 28px 28px 26px 0; align-self: center; }
.carousel-shell { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; gap: 18px; transition: transform .6s ease; }
.testimonial-card {
  min-width: calc((100% - 36px) / 3);
  padding: 22px;
}
.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(203,163,103,.42);
  margin-bottom: 14px;
}
.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.edit-note { margin-top: 18px; text-align: center; color: var(--muted-2); }
.edit-note code {
  background: rgba(255,255,255,.05);
  padding: 5px 9px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.06);
}
.final-cta-box {
  padding: 58px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 80% 0%, rgba(203,163,103,.18), transparent 25%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(203,163,103,.2);
  text-align: center;
  box-shadow: var(--shadow);
}
.center-actions { justify-content: center; }
.lead-form {
  padding: 30px;
  border-radius: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.full-width { grid-column: 1 / -1; }
label { display: block; margin-bottom: 8px; font-weight: 600; }
input, select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(17,17,17,.9);
  color: #fff;
  font: inherit;
  outline: none;
}
input:focus, select:focus { border-color: rgba(203,163,103,.45); box-shadow: 0 0 0 3px rgba(203,163,103,.12); }
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0;
}
.checkbox-row input { width: 18px; height: 18px; min-height: 18px; margin-top: 3px; }
.checkbox-row span { color: var(--muted); font-size: .96rem; line-height: 1.7; }
.btn-submit { width: 100%; }
.site-footer { padding: 54px 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.1fr;
  gap: 26px;
}
.footer-brand { margin-bottom: 14px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  padding: 15px 18px;
  border-radius: 999px;
  color: #120d07;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 40px rgba(203,163,103,.28);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .desktop-nav, .nav-actions { display: none; }
  .mobile-toggle {
    display: block;
    border: none;
    background: none;
    color: #fff;
    font-size: 1.7rem;
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 0 0 20px;
  }
  .mobile-nav.open { display: flex; }
  .hero-grid, .split-grid, .services-grid, .mini-grid, .footer-grid, .mentors-grid { grid-template-columns: 1fr; }
  .mentor-card { grid-template-columns: 1fr; }
  .mentor-copy { padding: 0 24px 26px; }
  .reverse-mobile > :first-child { order: 2; }
  .reverse-mobile > :last-child { order: 1; }
  .hero-image-shell { min-height: 580px; }
  .visual-panel, .platform-panel, .method-panel, .community-panel { min-height: 460px; }
  .form-grid { grid-template-columns: 1fr; }
  .full-width { grid-column: auto; }
  .testimonial-card { min-width: 100%; }
}

@media (max-width: 720px) {
  .section { padding: 82px 0; }
  .hero-mini-stats { grid-template-columns: 1fr; }
  .hero-image-shell { min-height: 480px; }
  .hero-overlay-card { width: calc(100% - 34px); }
  .card-top-right { top: 18px; right: 18px; }
  .card-bottom-left { left: 18px; bottom: 18px; }
  .final-cta-box { padding: 34px 22px; }
  .lead-form { padding: 22px; }
  .platform-screen { inset: 80px 18px 18px 18px; }
  .community-card.small, .community-card.large, .community-card.small.bottom { position: absolute; }
}


.results-section {
  position: relative;
  padding: 10px 0 28px;
  z-index: 1;
}
.results-heading {
  max-width: 920px;
  margin: 0 auto 30px;
  text-align: center;
}
.results-heading h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.results-heading p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.result-card {
  padding: 28px;
  border-radius: 28px;
}
.result-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}
.result-card p {
  margin: 0;
  color: var(--muted);
}
.result-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: rgba(203,163,103,.12);
  border: 1px solid rgba(203,163,103,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.results-cta {
  margin: 24px auto 0;
  max-width: 900px;
  border-radius: 30px;
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}
.results-cta p {
  margin: 0 auto 20px;
  max-width: 760px;
  color: var(--text);
}
@media (max-width: 980px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}


/* Hero spacing refinement */
.hero {
  min-height: auto;
  padding: 138px 0 96px;
}
.hero-grid {
  gap: 74px;
  align-items: center;
}
.hero-copy {
  max-width: 620px;
  padding-top: 18px;
}
.hero-copy .eyebrow {
  margin-bottom: 22px;
}
.hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.15rem, 5.9vw, 6.15rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}
.hero-copy h1 span {
  display: block;
  margin-top: 14px;
}
.hero-copy p {
  margin: 24px 0 0;
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.75;
}
.hero-actions {
  margin-top: 30px;
}
.hero-mini-stats {
  max-width: 620px;
  margin-top: 42px;
  gap: 16px;
}
.mini-stat {
  padding: 20px 18px;
}
.hero-visual {
  padding-left: 10px;
}
.hero-image-shell {
  min-height: 640px;
}
.hero-overlay-card {
  width: min(270px, 74%);
}
.card-top-right {
  top: 32px;
  right: 32px;
}
.card-bottom-left {
  left: 32px;
  bottom: 32px;
}

@media (max-width: 1200px) {
  .hero-grid {
    gap: 56px;
  }
  .hero-image-shell {
    min-height: 600px;
  }
}

@media (max-width: 1040px) {
  .hero {
    padding: 124px 0 72px;
  }
  .hero-copy {
    max-width: 100%;
    padding-top: 0;
  }
  .hero-copy h1 {
    max-width: 100%;
  }
  .hero-visual {
    padding-left: 0;
    margin-top: 6px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 112px 0 56px;
  }
  .hero-copy .eyebrow {
    margin-bottom: 18px;
  }
  .hero-copy h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
    line-height: 0.98;
  }
  .hero-copy h1 span {
    margin-top: 10px;
  }
  .hero-copy p {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.7;
  }
  .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }
  .hero-mini-stats {
    margin-top: 28px;
  }
  .hero-image-shell {
    min-height: 500px;
  }
  .card-top-right,
  .card-bottom-left {
    left: 18px;
    right: 18px;
    width: auto;
  }
}
