/* ═══════════════════════════════════════════
   STEPS LANDING — TOP-TIER DESIGN SYSTEM
   ═══════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────── */
:root {
  --green: #3CA348;
  --green-dark: #286F31;
  --green-darker: #1a4d22;
  --green-light: #DDF2E0;
  --green-tint: #F3FBF4;
  --teal: #1F6B5C;
  --teal-light: #DDF1EC;
  --orange: #FF9600;
  --orange-dark: #FF6B00;
  --bg: #FAFBFA;
  --surface: #FFFFFF;
  --surface-2: #F3F5F3;
  --border: #E4E8E4;
  --text: #0F1610;
  --text-2: #4A5550;
  --text-3: #8A948C;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.1), 0 8px 24px rgba(0,0,0,.04);
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font: inherit; border: none; background: none; cursor: pointer; }

/* ── Layout ──────────────────────────────── */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── Section Headers ─────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text);
}
.section-header p {
  font-size: 18px;
  color: var(--text-2);
  margin-top: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,251,250,.65);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav--scrolled {
  background: rgba(255,255,255,.9);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; height: 64px; gap: 40px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; letter-spacing: -.02em;
}
.nav__logo img { border-radius: 10px; }
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: color .2s;
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--green); border-radius: 1px;
  transform: scaleX(0); transition: transform .25s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  font-size: 14px; font-weight: 600;
  background: var(--text); color: #fff;
  padding: 9px 20px; border-radius: 100px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav__lang {
  display: flex; gap: 2px; margin-left: auto;
  background: var(--surface-2); border-radius: 10px; padding: 3px;
}
.nav__lang-item {
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
  color: var(--text-3); padding: 5px 12px; border-radius: 8px;
  transition: color .2s, background .2s, box-shadow .2s;
  line-height: 1;
}
.nav__lang-item:hover { color: var(--text-2); }
.nav__lang-item--active {
  color: var(--green-dark); background: var(--surface);
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
/* Language dropdown (mobile) */
.nav__lang-dropdown { display: none; position: relative; margin-left: auto; -webkit-transform: translateZ(0); transform: translateZ(0); }
.nav__lang-toggle {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  padding: 6px 10px; border-radius: 10px;
  background: var(--surface-2);
  transition: background .2s, color .2s;
  -webkit-tap-highlight-color: transparent;
}
.nav__lang-toggle:hover { color: var(--text); }
.nav__lang-chevron { transition: transform .25s var(--ease); }
.nav__lang-dropdown.open .nav__lang-chevron { transform: rotate(180deg); }
.nav__lang-menu {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 6px;
  box-shadow: var(--shadow-lg);
  min-width: 100px; z-index: 1001;
  -webkit-transform: translateZ(0); transform: translateZ(0);
}
.nav__lang-dropdown.open .nav__lang-menu { display: flex; flex-direction: column; }
.nav__lang-option {
  font-size: 13px; font-weight: 600; color: var(--text-2);
  padding: 8px 14px; border-radius: 8px;
  transition: background .15s, color .15s;
  -webkit-tap-highlight-color: transparent;
}
.nav__lang-option:hover { background: var(--surface-2); color: var(--text); }
.nav__lang-option--active { color: var(--green-dark); background: var(--green-light); }
.nav__lang-option--active:hover { background: var(--green-light); }

.nav__burger { display: none; width: 24px; height: 20px; flex-direction: column; justify-content: space-between; }
.nav__burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.nav__mobile {
  display: none; flex-direction: column; padding: 16px 32px 24px; gap: 16px;
  border-top: 1px solid var(--border);
}
.nav__mobile a { font-size: 16px; font-weight: 500; color: var(--text-2); }
.nav__mobile .nav__cta--mobile { text-align: center; margin-top: 8px; color: #fff; }

@media (max-width: 768px) {
  .nav__inner { gap: 12px; }
  .nav__links, .nav__cta:not(.nav__cta--mobile), .nav__inner > .nav__lang { display: none; }
  .nav__lang-dropdown { display: block; }
  .nav__burger { display: flex; }
  .nav__mobile.open { display: flex; }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  background: var(--surface);
}
.hero__container {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px;
}
.hero__content { position: relative; z-index: 2; }

/* Background orbs */
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5;
  animation: float 20s ease-in-out infinite;
}
.hero__orb--1 { width: 600px; height: 600px; background: var(--green-light); top: -200px; right: -100px; }
.hero__orb--2 { width: 400px; height: 400px; background: var(--teal-light); bottom: -100px; left: -100px; animation-delay: -7s; }
.hero__orb--3 { width: 300px; height: 300px; background: #FFF4DB; top: 50%; left: 40%; animation-delay: -14s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(.95); }
}

/* Badge */
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 8px 16px; border-radius: 100px;
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
}
.gradient-text {
  background: linear-gradient(135deg, var(--green), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  margin-top: 24px;
  font-size: 18px; line-height: 1.7;
  color: var(--text-2);
  max-width: 480px;
}

/* Store buttons */
.hero__actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 24px;
  background: var(--text); color: #fff;
  border-radius: 14px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.store-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.store-btn__text small { display: block; font-size: 11px; opacity: .7; line-height: 1.2; }
.store-btn__text strong { display: block; font-size: 16px; font-weight: 700; line-height: 1.3; }
.store-btn--light {
  background: #fff; color: var(--text);
  box-shadow: var(--shadow-sm);
}
.store-btn--light:hover { box-shadow: var(--shadow-lg); }

/* Social proof */
.hero__proof {
  display: flex; align-items: center; gap: 12px;
  margin-top: 32px;
  font-size: 14px; color: var(--text-3);
}
.hero__proof-avatars { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  object-fit: cover;
}
.avatar:first-child { margin-left: 0; }

/* Phone mockup */
.hero__phone { position: relative; display: flex; justify-content: center; z-index: 2; }
.phone {
  width: 280px;
  background: #0F1610;
  border-radius: 44px;
  padding: 14px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.1) inset;
  position: relative;
}
.phone__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #0F1610; border-radius: 14px; z-index: 3;
}
.phone__screen {
  width: 100%; aspect-ratio: 9/19.5;
  background: var(--bg);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

/* App UI inside phone */
.app-ui { padding: 48px 20px 20px; }
.app-ui__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.app-ui__greeting { font-size: 16px; font-weight: 700; }
.app-ui__avatar-sm { width: 28px; height: 28px; border-radius: 50%; background: var(--green-light); }
.app-ui__ring-wrap { position: relative; width: 120px; height: 120px; margin: 0 auto 20px; }
.app-ui__ring { width: 100%; height: 100%; }
.app-ui__ring-progress { transition: stroke-dashoffset 2s var(--ease); }
.app-ui__ring-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.app-ui__count { font-size: 22px; font-weight: 800; line-height: 1; }
.app-ui__label { font-size: 9px; color: var(--text-3); margin-top: 2px; }
.app-ui__week { display: flex; justify-content: space-between; margin-bottom: 16px; }
.app-ui__day { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.app-ui__day span { font-size: 8px; color: var(--text-3); font-weight: 500; }
.app-ui__day i {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--surface-2); display: block;
}
.app-ui__day--done i { background: var(--green); }
.app-ui__day--today i { background: var(--green-light); border: 2px solid var(--green); }
.app-ui__streak {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-2);
  background: #FFF4DB; padding: 8px 14px; border-radius: 10px; margin-bottom: 14px;
}
.app-ui__streak strong { color: var(--text); }
.app-ui__card {
  background: var(--surface); border-radius: 12px;
  padding: 14px; box-shadow: var(--shadow-sm);
}
.app-ui__card-row { display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 600; }
.app-ui__card-badge {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  background: var(--green-light); color: var(--green-dark);
  padding: 3px 8px; border-radius: 100px;
}
.app-ui__card-bar {
  height: 6px; background: var(--surface-2); border-radius: 3px;
  margin-top: 10px; overflow: hidden;
}
.app-ui__card-bar > div { height: 100%; background: var(--green); border-radius: 3px; }
.app-ui__card-sub { font-size: 9px; color: var(--text-3); margin-top: 6px; }

/* Floating cards */
.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--surface);
  padding: 14px 18px; border-radius: 16px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  z-index: 3;
}
.float-card strong { display: block; font-size: 13px; font-weight: 700; }
.float-card small { display: block; font-size: 11px; color: var(--text-3); }
.float-card--streak { top: 25%; left: -60px; animation: float-card-1 6s ease-in-out infinite; }
.float-card--prize { bottom: 25%; right: -60px; animation: float-card-2 6s ease-in-out infinite; }

@keyframes float-card-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float-card-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@media (max-width: 768px) {
  .hero { padding: 110px 0 80px; }
  .hero__container { grid-template-columns: 1fr; text-align: center; gap: 56px; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__proof { justify-content: center; }
  .float-card { display: none; }
  .phone { width: 240px; border-radius: 36px; padding: 12px; }
  .phone__screen { border-radius: 26px; }
  .phone__notch { width: 80px; height: 24px; top: 12px; border-radius: 12px; }
  .app-ui { padding: 40px 16px 16px; }
}

/* ═══════════════════════════════════════════
   TRUST
   ═══════════════════════════════════════════ */
.trust {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: center; gap: 40px;
  flex-wrap: wrap;
}
.trust__inner > span { font-size: 13px; color: var(--text-3); font-weight: 500; }
.trust__logos { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; justify-content: center; }
.trust__logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--text-2);
  opacity: .6; transition: opacity .2s;
}
.trust__logo:hover { opacity: 1; }

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how { padding: 120px 0; }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how__card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.how__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.how__card-num {
  position: absolute; top: 20px; right: 24px;
  font-size: 64px; font-weight: 900; line-height: 1;
  color: var(--surface-2);
  user-select: none;
}
.how__card-num span { color: inherit; }
.how__card:hover .how__card-num { color: var(--green-light); }
.how__card-visual { margin-bottom: 24px; }
.how__card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.how__card p { font-size: 15px; color: var(--text-2); line-height: 1.7; }

@media (max-width: 768px) {
  .how { padding: 80px 0; }
  .how__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   FEATURES (BENTO)
   ═══════════════════════════════════════════ */
.features { padding: 120px 0; background: var(--surface); }
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento__item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.bento__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.bento__item--lg { grid-column: span 1; }
.bento__item--dark {
  background: var(--text);
  border-color: transparent;
  color: #fff;
}
.bento__item--dark:hover { border-color: rgba(255,255,255,.1); }
.bento__item--dark p { color: rgba(255,255,255,.6); }

.bento__icon {
  width: 48px; height: 48px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.bento__icon--orange { background: #FFF4DB; color: var(--orange); }
.bento__icon--teal { background: var(--teal-light); color: var(--teal); }
.bento__icon--dark-inv { background: rgba(255,255,255,.1); color: #fff; }
.bento__item h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.bento__item p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* Bar chart visual */
.bento__visual { margin-top: 24px; }
.bento__bar-chart {
  display: flex; align-items: flex-end; gap: 8px; height: 80px;
}
.bento__bar {
  flex: 1; height: var(--h);
  background: var(--green-light);
  border-radius: 6px 6px 0 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative;
  transition: height .6s var(--ease);
}
.bento__bar--done { background: var(--green); }
.bento__bar span {
  text-align: center; font-size: 9px; font-weight: 600;
  color: var(--text-3); padding-top: 6px; position: absolute; bottom: -20px; left: 0; right: 0;
}

/* Streak visual */
.bento__streak-demo {
  display: flex; align-items: center; gap: 8px;
  margin-top: 20px; padding: 16px; background: #FFF4DB; border-radius: 14px;
}
.bento__streak-num { font-size: 32px; font-weight: 900; color: var(--orange-dark); line-height: 1; }
.bento__streak-label { font-size: 14px; color: var(--text-2); }

/* Calendar visual */
.bento__calendar {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
  margin-top: 20px;
}
.cal-dot {
  aspect-ratio: 1; border-radius: 6px; background: var(--surface-2);
}
.cal-dot--done { background: var(--green); }
.cal-dot--today { background: var(--green-light); border: 2px solid var(--green); }

/* Social row */
.bento__social-row { display: flex; gap: 8px; margin-top: 20px; }
.bento__social-link {
  flex: 1; text-align: center;
  font-size: 13px; font-weight: 600;
  padding: 10px; border-radius: 10px;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.bento__social-link--ig {
  background: linear-gradient(135deg, #F77737, #C13584, #833AB4);
  color: #fff;
}
.bento__social-link--tg { background: #229ED9; color: #fff; }
.bento__social-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

@media (max-width: 768px) {
  .features { padding: 80px 0; }
  .bento { grid-template-columns: 1fr; }
  .bento__item--lg { grid-column: span 1; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   NUMBERS
   ═══════════════════════════════════════════ */
.numbers { padding: 96px 0; }
.numbers__grid {
  display: flex; align-items: center; justify-content: center;
  gap: 56px;
}
.numbers__item { text-align: center; }
.numbers__value {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900; letter-spacing: -.03em; line-height: 1;
  color: var(--green);
}
.numbers__label { font-size: 15px; color: var(--text-2); margin-top: 8px; }
.numbers__divider { width: 1px; height: 56px; background: var(--border); }

@media (max-width: 768px) {
  .numbers { padding: 64px 0; }
  .numbers__grid { flex-direction: column; gap: 40px; }
  .numbers__divider { width: 48px; height: 1px; }
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq { padding: 120px 0; background: var(--surface); }
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color .25s, box-shadow .25s;
  overflow: hidden;
}
.faq__item[open] { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-light); }
.faq__item summary {
  padding: 20px 24px;
  font-size: 16px; font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item[open] summary { color: var(--green-dark); }
.faq__icon {
  width: 24px; height: 24px; position: relative; flex-shrink: 0;
}
.faq__icon span {
  position: absolute; background: var(--text-3); border-radius: 1px;
  transition: transform .3s var(--ease), background .3s;
}
.faq__icon span:first-child { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq__icon span:last-child { width: 2px; height: 14px; top: 5px; left: 11px; }
.faq__item[open] .faq__icon span { background: var(--green); }
.faq__item[open] .faq__icon span:last-child { transform: rotate(90deg); opacity: 0; }
.faq__answer { padding: 0 24px 20px; }
.faq__answer p { font-size: 15px; color: var(--text-2); line-height: 1.7; }

@media (max-width: 768px) { .faq { padding: 80px 0; } }

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.cta {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(160deg, var(--green-darker), var(--green-dark), var(--teal));
  overflow: hidden;
}
.cta__bg { position: absolute; inset: 0; }
.cta__orb {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta__orb--1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.cta__orb--2 { width: 400px; height: 400px; bottom: -200px; left: -100px; }
.cta__inner { position: relative; z-index: 1; }
.cta__content { text-align: center; color: #fff; }
.cta__logo { margin: 0 auto 28px; border-radius: 18px; box-shadow: var(--shadow-lg); }
.cta h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800; letter-spacing: -.03em;
  color: #fff;
}
.cta p { font-size: 18px; color: rgba(255,255,255,.75); margin-top: 12px; }
.cta__buttons { display: flex; justify-content: center; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.cta__social {
  display: flex; justify-content: center; gap: 16px; margin-top: 32px;
}
.cta__social a {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s, transform .2s var(--ease);
}
.cta__social a:hover { background: rgba(255,255,255,.2); transform: scale(1.1); }

@media (max-width: 768px) { .cta { padding: 80px 0; } }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  padding: 64px 0 32px;
  background: var(--text);
  color: rgba(255,255,255,.4);
}
.footer__inner { display: flex; flex-direction: column; gap: 48px; }
.footer__top {
  display: flex; justify-content: space-between; gap: 48px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; color: #fff;
}
.footer__brand img { border-radius: 8px; }
.footer__nav { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .05em; }
.footer__col a { font-size: 14px; transition: color .2s; }
.footer__col a:hover { color: rgba(255,255,255,.8); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer__top { flex-direction: column; gap: 32px; }
  .footer__nav { gap: 32px; }
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.anim[data-anim="fade-left"] { transform: translate(-32px, 0); }
.anim[data-anim="fade-right"] { transform: translate(32px, 0); }
.anim.visible {
  opacity: 1;
  transform: translate(0, 0);
}
.anim[data-delay="1"] { transition-delay: .1s; }
.anim[data-delay="2"] { transition-delay: .2s; }
.anim[data-delay="3"] { transition-delay: .3s; }
.anim[data-delay="4"] { transition-delay: .4s; }
.anim[data-delay="5"] { transition-delay: .5s; }
.anim[data-delay="6"] { transition-delay: .6s; }
