.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;
}

:root {
  --bg-deep: #0a0a0a;
  --bg-card: #121212;
  --bg-elevated: #18181c;
  --accent: #e11d8c;
  --accent-deep: #b0106e;
  --accent-soft: #ff4fb3;
  --accent-glow: rgba(225, 29, 140, 0.38);
  --violet: #7c3aed;
  --cyan: #22d3ee;
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 100% 70% at 50% -25%, rgba(124, 58, 237, 0.26), transparent 55%),
    radial-gradient(ellipse 70% 45% at 110% 30%, rgba(225, 29, 140, 0.14), transparent 50%),
    radial-gradient(ellipse 50% 35% at -10% 70%, rgba(225, 29, 140, 0.07), transparent 45%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.45;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.lang-switch__btn {
  padding: 0.35rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-radius: 7px;
  transition: color 0.15s, background 0.15s, transform 0.2s var(--ease-out);
}

.lang-switch__btn:hover {
  color: var(--text);
}

.lang-switch__btn.is-active {
  color: var(--text);
  background: var(--bg-card);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.logo {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 6px 28px var(--accent-glow);
  animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
  0%,
  100% {
    box-shadow: 0 6px 28px var(--accent-glow);
  }
  50% {
    box-shadow: 0 8px 36px rgba(225, 29, 140, 0.48);
  }
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-main a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.25s var(--ease-out);
  position: relative;
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-soft), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav-main a:hover {
  color: var(--text);
}

.nav-main a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.35rem;
  border-radius: 11px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 8px 28px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: btnShine 4s ease-in-out infinite;
}

@keyframes btnShine {
  0%,
  70% {
    transform: translateX(-100%);
  }
  85% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-lg {
  padding: 0.85rem 1.65rem;
  font-size: 1rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--bg-elevated);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.steps .step-card[data-reveal]:nth-child(1) {
  transition-delay: 0.05s;
}
.steps .step-card[data-reveal]:nth-child(2) {
  transition-delay: 0.1s;
}
.steps .step-card[data-reveal]:nth-child(3) {
  transition-delay: 0.15s;
}
.steps .step-card[data-reveal]:nth-child(4) {
  transition-delay: 0.2s;
}

.features-grid .feature-card[data-reveal]:nth-child(1) {
  transition-delay: 0.04s;
}
.features-grid .feature-card[data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}
.features-grid .feature-card[data-reveal]:nth-child(3) {
  transition-delay: 0.12s;
}

.testimonials-grid .testimonial-card[data-reveal]:nth-child(1) {
  transition-delay: 0.05s;
}
.testimonials-grid .testimonial-card[data-reveal]:nth-child(2) {
  transition-delay: 0.1s;
}
.testimonials-grid .testimonial-card[data-reveal]:nth-child(3) {
  transition-delay: 0.15s;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.65rem;
  animation: kickerPulse 3s ease-in-out infinite;
}

@keyframes kickerPulse {
  0%,
  100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}

.section-head h2 {
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-wrap {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.hero-visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.55;
  animation: blobFloat 12s ease-in-out infinite;
}

.hero-blob--1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(225, 29, 140, 0.55), transparent 70%);
  top: 10%;
  left: 15%;
}

.hero-blob--2 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.5), transparent 70%);
  bottom: 5%;
  right: 10%;
  animation-delay: -4s;
}

.hero-blob--3 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(225, 29, 140, 0.22), transparent 70%);
  top: 40%;
  right: 25%;
  animation-delay: -7s;
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(12px, -18px) scale(1.05);
  }
  66% {
    transform: translate(-14px, 10px) scale(0.96);
  }
}

.hero-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: ringSpin 28s linear infinite;
}

.hero-ring--2 {
  width: 340px;
  height: 340px;
  border-style: dashed;
  opacity: 0.35;
  animation-duration: 42s;
  animation-direction: reverse;
}

@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

.hero-float-card {
  position: absolute;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: rgba(17, 17, 24, 0.82);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  max-width: 200px;
}

.hero-float-card--a {
  top: 8%;
  right: 8%;
  animation: cardBob 5s ease-in-out infinite;
}

.hero-float-card--b {
  bottom: 12%;
  left: 5%;
  animation: cardBob 6s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes cardBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-card-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.hero-float-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-float-card p:not(.hero-card-kicker) {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-float-card .pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 6px;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.85);
  }
}

.hero-copy {
  text-align: center;
}

@media (min-width: 900px) {
  .hero-copy {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  animation: badgeIn 0.9s var(--ease-out) both;
}

@keyframes badgeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

.hero-badge span {
  color: var(--accent-soft);
  font-weight: 600;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 5vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.12;
  margin-bottom: 1.15rem;
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
  animation: titleIn 1s var(--ease-out) 0.08s both;
}

@media (min-width: 900px) {
  .hero-copy h1 {
    margin-left: 0;
    max-width: 14ch;
  }
}

@keyframes titleIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
}

.hero-copy h1 .highlight {
  background: linear-gradient(90deg, var(--accent-soft), var(--accent), var(--violet));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hueShift 6s ease-in-out infinite;
}

@keyframes hueShift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 auto 1.85rem;
  animation: titleIn 1s var(--ease-out) 0.15s both;
}

@media (min-width: 900px) {
  .hero-lead {
    margin-left: 0;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.25rem;
  animation: titleIn 1s var(--ease-out) 0.22s both;
}

@media (min-width: 900px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  animation: titleIn 1s var(--ease-out) 0.28s both;
}

@media (min-width: 900px) {
  .trust-strip {
    justify-content: flex-start;
  }
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-strip strong {
  color: var(--text);
}

.section-block {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 720px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}

.stat-card {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(24, 24, 36, 0.95), rgba(17, 17, 24, 0.98));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(225, 29, 140, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 29, 140, 0.22);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card__value {
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-card__value-num {
  font-variant-numeric: tabular-nums;
}

.stat-card__suffix {
  font-size: 1.35rem;
  font-weight: 700;
  opacity: 0.95;
}

.stat-card__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.marquee-section {
  padding: 2rem 0 3rem;
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.marquee {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marqueeMove 32s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

@keyframes marqueeMove {
  to {
    transform: translateX(-50%);
  }
}

.marquee-track {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.marquee-item {
  flex-shrink: 0;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition:
    color 0.25s,
    border-color 0.25s,
    transform 0.25s var(--ease-out);
}

.marquee-item:hover {
  color: var(--text);
  border-color: rgba(124, 58, 237, 0.35);
  transform: scale(1.03);
}

.how-section {
  position: relative;
}

.how-section::before {
  content: "";
  position: absolute;
  inset: 20% 10% auto;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.08), transparent 65%);
  pointer-events: none;
}

.steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 880px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.step-card {
  padding: 1.65rem 1.35rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 140, 0.22);
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(225, 29, 140, 0.25), rgba(124, 58, 237, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.features {
  padding-top: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  padding: 1.85rem 1.65rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition:
    border-color 0.35s,
    transform 0.35s var(--ease-out),
    box-shadow 0.35s;
}

.feature-card:hover {
  border-color: rgba(225, 29, 140, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--bg-elevated), var(--bg-card));
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  font-size: 1.3rem;
  border: 1px solid var(--border);
}

.feature-card h2 {
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.bento-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 780px) {
  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(140px, auto);
  }

  .bento-card--lg {
    grid-column: span 3;
    grid-row: span 2;
  }

  .bento-card--sm {
    grid-column: span 3;
  }

  .bento-card--md {
    grid-column: span 3;
  }
}

.bento-card {
  padding: 1.65rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(20, 20, 30, 0.95), rgba(12, 12, 18, 0.98));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-out),
    border-color 0.35s;
}

.bento-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 140, 0.15), transparent 65%);
  top: -50px;
  right: -40px;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.28);
}

.bento-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  position: relative;
  z-index: 1;
}

.bento-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 820px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 29, 140, 0.22);
}

.testimonial-card blockquote {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text);
}

.testimonial-card blockquote::before {
  content: "\201C";
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.45;
  margin-bottom: 0.35rem;
}

.testimonial-meta {
  margin-top: auto;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
}

.testimonial-meta strong {
  display: block;
  font-size: 0.92rem;
}

.testimonial-meta span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cta-band {
  padding: 3.25rem 1.75rem;
  border-radius: calc(var(--radius) + 6px);
  text-align: center;
  background: linear-gradient(135deg, rgba(225, 29, 140, 0.18), rgba(124, 58, 237, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.06), transparent 45%);
  animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(0, 0);
  }
  50% {
    opacity: 1;
    transform: translate(4%, -4%);
  }
}

.cta-band h2,
.cta-band p,
.cta-band .btn-wrap {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.65rem;
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.25s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-item summary:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-item .faq-a {
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  animation: faqOpen 0.45s var(--ease-out);
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
}

.cta-final {
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-final h2 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 18ch;
  margin: 0 auto 1rem;
}

.cta-final > .section-inner > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 44ch;
  margin: 0 auto 1.75rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.25);
}

.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 0.65rem;
  max-width: 28ch;
}

.footer-col h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li + li {
  margin-top: 0.45rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-copy {
  max-width: 1120px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  .nav-main {
    display: none;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .hero-wrap {
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 260px;
  }

  .hero-float-card {
    max-width: 170px;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .marquee {
    animation: none;
  }

  .btn-primary::before {
    animation: none;
  }
}
