:root {
  --bg: #05070d;
  --bg-elevated: #0d1220;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --surface-soft: rgba(255, 255, 255, 0.035);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(117, 146, 255, 0.28);
  --text: #f7faff;
  --muted: #a7b1c9;
  --blue: #4ea3ff;
  --purple: #8f6bff;
  --cyan: #71e8d6;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.26);
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: 1180px;
  --section-space: clamp(72px, 8vw, 120px);
  --divider: rgba(111, 130, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(78, 163, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 16%, rgba(143, 107, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 50% 92%, rgba(113, 232, 214, 0.08), transparent 24rem),
    var(--bg);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 88%);
  opacity: 0.28;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
.brand,
.price,
.hero-pill,
.badge,
.promo-bar,
.nav-cta,
.btn,
.mini-btn {
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8.2vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 13, 0.74);
  backdrop-filter: blur(18px);
}

.promo-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(78, 163, 255, 0.12), rgba(143, 107, 255, 0.14));
}

.promo-bar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.promo-bar__inner p {
  margin: 0;
  color: rgba(247, 250, 255, 0.92);
}

.promo-bar__inner a {
  color: var(--cyan);
  font-weight: 700;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, rgba(78, 163, 255, 0.96), rgba(143, 107, 255, 0.95));
  box-shadow: 0 16px 30px rgba(78, 163, 255, 0.22);
}

.nav-menu {
  display: none;
  position: absolute;
  top: 118px;
  left: 16px;
  right: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(12, 15, 24, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.nav-menu.is-open {
  display: grid;
  gap: 14px;
}

.nav-menu a,
.footer-links a,
.text-link {
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover,
.footer-links a:hover,
.text-link:hover,
.contact-methods a:hover {
  color: var(--text);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-cta {
  display: none;
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: clamp(16px, 4vw, 48px);
  min-height: calc(100svh - 118px);
  display: grid;
  align-items: start;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), transparent 85%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  width: 44rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.6;
  animation: floatOrb 16s ease-in-out infinite;
  pointer-events: none;
}

.hero-orb--blue {
  top: -4rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(78, 163, 255, 0.4), rgba(78, 163, 255, 0.04) 55%, transparent 72%);
}

.hero-orb--purple {
  right: -10rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(143, 107, 255, 0.38), rgba(143, 107, 255, 0.05) 55%, transparent 72%);
  animation-delay: -7s;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 44px;
  align-items: center;
  margin-top: -12px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(113, 232, 214, 0.18);
  border-radius: 999px;
  color: #dffef8;
  background: rgba(113, 232, 214, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.hero-pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(113, 232, 214, 0.08);
}

.hero-subtitle,
.section-heading p,
.compact p,
.cta-box p,
.contact-form p,
.demo-card p,
.service p,
.testimonial p,
.process-step p,
.price-card li,
.benefit span,
.hero-metrics span {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(1.02rem, 1.8vw, 1.12rem);
}

.hero-actions,
.socials,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-actions {
  margin-top: 28px;
}

.section-actions--compact {
  margin-top: 24px;
}

.btn,
.mini-btn,
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
}

.btn::before,
.mini-btn::before,
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 22%, transparent 45%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover::before,
.mini-btn:hover::before,
.nav-cta:hover::before {
  transform: translateX(120%);
}

.btn:hover,
.mini-btn:hover,
.nav-cta:hover,
.card:hover,
.demo-card:hover,
.price-card:hover,
.benefit:hover,
.process-step:hover {
  transform: translateY(-4px);
}

.btn-primary,
.nav-cta {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(78, 163, 255, 0.96), rgba(143, 107, 255, 0.96));
  box-shadow: 0 18px 34px rgba(78, 163, 255, 0.22);
}

.btn-primary:hover,
.nav-cta:hover {
  box-shadow: 0 22px 42px rgba(78, 163, 255, 0.28);
}

.btn-secondary,
.mini-btn {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.hero-metrics div,
.benefit,
.price-card,
.process-step,
.card,
.demo-card,
.contact-form,
.cta-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.hero-metrics div,
.benefit,
.process-step,
.price-card,
.card,
.contact-form {
  padding: 22px;
}

.hero-metrics div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
}

.hero-metrics strong,
.hero-metrics span,
.benefit strong,
.benefit span {
  display: block;
}

.hero-metrics strong,
.benefit strong {
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--text);
}

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

.hero-trust span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(247, 250, 255, 0.9);
  background: rgba(255, 255, 255, 0.035);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin-top: -36px;
}

.hero-frame {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(7, 9, 15, 0.7);
  box-shadow: var(--shadow);
}

.hero-frame img {
  width: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
}

.floating-note {
  position: absolute;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(5, 7, 13, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.floating-note span,
.floating-note strong {
  display: block;
}

.floating-note span {
  font-size: 0.78rem;
  color: var(--muted);
}

.note-top {
  top: 20px;
  right: -8px;
}

.note-bottom {
  left: -8px;
  bottom: 20px;
}

.section-divider {
  position: relative;
  line-height: 0;
  color: var(--divider);
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 84px;
}

.section-divider path {
  fill: currentColor;
}

.testimonial-grid,
.service-grid,
.demo-grid,
.process-grid,
.pricing-grid,
.contact-grid,
.why-grid {
  display: grid;
  gap: 18px;
}

.showcase,
.pricing,
.proof {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04));
}

.card,
.demo-card,
.process-step,
.price-card,
.contact-form,
.cta-box {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.demo-card:hover,
.price-card:hover,
.process-step:hover,
.benefit:hover {
  border-color: var(--border-strong);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.stars {
  margin-bottom: 14px;
  color: #facc15;
  letter-spacing: 0.08em;
}

.testimonial span {
  color: var(--cyan);
  font-size: 0.9rem;
}

.icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(113, 232, 214, 0.14);
  border-radius: 16px;
  color: var(--cyan);
  background: rgba(78, 163, 255, 0.08);
}

.icon svg {
  width: 24px;
  height: 24px;
}

.split-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.text-link {
  align-self: end;
  color: var(--cyan);
  font-weight: 700;
}

.demo-card {
  overflow: hidden;
}

.demo-card h3,
.demo-card p,
.demo-card .mini-btn {
  margin-inline: 18px;
}

.demo-card .mini-btn {
  margin-bottom: 18px;
}

.demo-screen {
  height: 210px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  padding: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-screen span {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
}

.demo-screen span:first-child {
  grid-row: span 2;
}

.school-demo {
  background: linear-gradient(135deg, rgba(16, 47, 79, 0.96), rgba(91, 33, 182, 0.94));
}

.shop-demo {
  background: linear-gradient(135deg, rgba(15, 61, 51, 0.96), rgba(37, 99, 235, 0.94));
}

.coach-demo {
  background: linear-gradient(135deg, rgba(49, 46, 129, 0.96), rgba(2, 132, 199, 0.94));
}

.clinic-demo {
  background: linear-gradient(135deg, rgba(22, 78, 99, 0.96), rgba(124, 58, 237, 0.94));
}

.why-grid {
  align-items: start;
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.process-step span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.price-card {
  position: relative;
}

.price-card.featured {
  border-color: rgba(78, 163, 255, 0.38);
  background:
    linear-gradient(180deg, rgba(78, 163, 255, 0.15), rgba(143, 107, 255, 0.08)),
    rgba(255, 255, 255, 0.05);
}

.badge {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #dffef8;
  background: rgba(113, 232, 214, 0.11);
  font-size: 0.76rem;
  font-weight: 700;
}

.price {
  margin: 0 0 18px;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text);
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.price-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--cyan);
}

.cta-box {
  padding: clamp(30px, 6vw, 64px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(78, 163, 255, 0.18), rgba(143, 107, 255, 0.18)),
    rgba(255, 255, 255, 0.04);
}

.cta-box h2,
.cta-box p {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-methods a {
  width: fit-content;
  color: var(--cyan);
  font-weight: 700;
}

.contact-grid {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  color: var(--text);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(167, 177, 201, 0.74);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(78, 163, 255, 0.64);
  box-shadow: 0 0 0 4px rgba(78, 163, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.form-note {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--cyan);
}

.developer {
  padding-top: 0;
}

.developer-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.developer-card,
.developer-details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-soft);
}

.developer-card {
  padding: 26px;
}

.developer-card h2 {
  margin-bottom: 12px;
}

.developer-card p {
  margin-bottom: 20px;
}

.developer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.developer-details {
  padding: 22px;
  display: grid;
  gap: 18px;
}

.developer-details h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text);
}

.developer-links {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.developer-links a {
  color: var(--cyan);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #04120d;
  background: linear-gradient(135deg, #4af27d, #25d366);
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 48px rgba(37, 211, 102, 0.34);
}

.footer {
  padding: 54px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.92), rgba(5, 7, 13, 0.92));
}

.footer-top {
  display: grid;
  gap: 32px;
}

.footer-brand {
  max-width: 420px;
  display: grid;
  gap: 16px;
}

.footer-note {
  margin: 0;
  color: rgba(167, 177, 201, 0.92);
}

.footer-columns {
  display: grid;
  gap: 24px;
}

.footer-column h4 {
  margin: 0 0 14px;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 40px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  color: rgba(167, 177, 201, 0.9);
  font-size: 0.92rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 250, 255, 0.9);
  font-size: 0.78rem;
}

.socials {
  margin-top: 14px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -18px, 0) scale(1.04);
  }
}

@media (min-width: 680px) {
  .testimonial-grid,
  .service-grid,
  .demo-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .split-heading {
    grid-template-columns: 1fr auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 0.96fr 1.04fr;
  }

  .hero-copy {
    padding: 22px 0;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .developer-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

@media (max-width: 900px) {
  .promo-bar {
    display: none;
  }

  .promo-bar__inner {
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
    text-align: center;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-frame img {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 64px 0;
  }

  .nav {
    min-height: 72px;
  }

  .nav-menu {
    top: 110px;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

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

  .hero-actions .btn,
  .section-actions .btn,
  .contact-form .btn,
  .cta-box .btn {
    width: 100%;
  }

  .hero-trust {
    gap: 8px;
  }

  .floating-note {
    display: none;
  }

  .section-divider svg {
    height: 56px;
  }

  .demo-screen {
    height: 180px;
  }

  .developer-actions .btn {
    width: 100%;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
