:root {
  --bg: #07111f;
  --bg-2: #0c1729;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7fbff;
  --muted: #b6c3d7;
  --cyan: #5ef3ff;
  --violet: #8b5cf6;
  --gold: #f8d46b;
  --green: #1fd982;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(94, 243, 255, 0.35);
  color: #fff;
}

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

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

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

.site-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 20%, rgba(94, 243, 255, 0.12), transparent 28%),
    radial-gradient(circle at 78% 14%, rgba(139, 92, 246, 0.14), transparent 24%),
    radial-gradient(circle at 70% 88%, rgba(248, 212, 107, 0.08), transparent 22%),
    linear-gradient(140deg, #06101d 0%, #081525 44%, #11152b 100%);
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
}

.grid-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(94, 243, 255, 0.08) 40%, transparent 75%);
  transform: translateX(-40%);
  animation: sweep 12s ease-in-out infinite;
}

.orb {
  position: absolute;
  width: 440px;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.28;
  animation: floatOrb 11s ease-in-out infinite;
}

.orb-one {
  left: -160px;
  top: 90px;
  background: var(--cyan);
}

.orb-two {
  right: -160px;
  top: 220px;
  background: var(--violet);
  animation-delay: -3s;
}

.orb-three {
  left: 35%;
  bottom: -220px;
  background: var(--gold);
  animation-delay: -6s;
}

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

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

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

.brand-mark {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 12px 28px rgba(94, 243, 255, 0.2));
}

.brand strong {
  display: block;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: 1.1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(247, 251, 255, 0.82);
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(94, 243, 255, 0.18);
}

.nav-links .nav-cta:hover {
  color: #06101d;
  background: linear-gradient(135deg, #fff, var(--cyan));
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding-top: 92px;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}

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

h1 {
  font-size: clamp(3.2rem, 8vw, 6.75rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  margin-bottom: 28px;
  max-width: 820px;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  max-width: 650px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

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

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn.primary {
  color: #04111c;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  box-shadow: 0 18px 36px rgba(94, 243, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(94, 243, 255, 0.22);
}

.btn.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(247, 251, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-card {
  min-height: 590px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 30% 20%, rgba(94, 243, 255, 0.24), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(248, 212, 107, 0.12), transparent 30%);
  box-shadow: var(--shadow);
  border-radius: 44px;
  overflow: hidden;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 340px;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 60px rgba(94, 243, 255, 0.08), 0 0 80px rgba(139, 92, 246, 0.14);
  animation: spinSlow 18s linear infinite;
}

.card-noise {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255,255,255,.8) .6px, transparent .6px);
  background-size: 20px 20px;
  z-index: -1;
}

.hero-logo-wrap {
  width: min(360px, 72%);
  animation: floatLogo 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(94, 243, 255, 0.22));
}

.pulse-card,
.terminal-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  border-radius: 22px;
}

.pulse-card {
  padding: 14px 18px;
}

.pulse-card strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.pulse-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.card-a {
  top: 58px;
  right: 34px;
  animation: floatLogo 6s ease-in-out infinite reverse;
}

.card-b {
  left: 26px;
  bottom: 116px;
  animation: floatLogo 7s ease-in-out infinite;
}

.terminal-card {
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.terminal-card code {
  color: #c9faff;
  font-size: 0.92rem;
}

.dots {
  display: flex;
  gap: 7px;
}

.dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
}

.dots i:nth-child(2) {
  background: var(--gold);
}

.dots i:nth-child(3) {
  background: var(--violet);
}

.stats-section {
  padding: 0 0 60px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.stats div {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: #fff;
}

.stats span {
  color: var(--muted);
}

.section-head {
  max-width: 770px;
  margin-bottom: 44px;
}

.section-head p:not(.eyebrow),
.muted {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.service-card {
  position: relative;
  min-height: 290px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -100px;
  right: -90px;
  border-radius: 50%;
  background: rgba(94, 243, 255, 0.18);
  filter: blur(20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(94, 243, 255, 0.34);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
}

.service-card:hover::before {
  transform: scale(1.25);
  opacity: 0.95;
}

.icon-box {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 24px;
  background: rgba(94, 243, 255, 0.12);
  border: 1px solid rgba(94, 243, 255, 0.22);
}

.icon-box svg,
.check-list svg,
.contact-methods svg,
.floating-badge svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  color: var(--cyan);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-section {
  overflow: hidden;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 56px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(247, 251, 255, 0.88);
}

.check-list svg {
  width: 20px;
  min-width: 20px;
  color: var(--gold);
}

.showcase {
  position: relative;
  min-height: 520px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 20% 20%, rgba(94, 243, 255, 0.16), transparent 34%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(94, 243, 255, 0.13);
  transform: rotate(-16deg);
}

.showcase-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(7, 17, 31, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.showcase-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
}

.showcase-top span:nth-child(2) {
  background: var(--gold);
}

.showcase-top span:nth-child(3) {
  background: var(--violet);
}

.showcase-top strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.88rem;
}

.code-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin: 32px 0;
}

.code-lines i {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 243, 255, 0.86), rgba(139, 92, 246, 0.4));
  animation: shimmer 2.8s ease-in-out infinite;
}

.app-preview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.preview-card {
  min-height: 140px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
}

.preview-card.wide {
  grid-column: 1 / -1;
  min-height: 170px;
  background:
    linear-gradient(135deg, rgba(94, 243, 255, 0.16), rgba(248, 212, 107, 0.1)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.floating-badge {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  animation: floatLogo 5s ease-in-out infinite;
}

.process-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.03), transparent);
}

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

.timeline-item {
  position: relative;
  padding: 26px;
  min-height: 260px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.timeline-item b {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  margin-bottom: 26px;
}

.timeline-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-section {
  padding-bottom: 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.form-card {
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 260px;
  aspect-ratio: 1;
  right: -130px;
  bottom: -120px;
  border-radius: 999px;
  background: rgba(94, 243, 255, 0.14);
  filter: blur(18px);
}

.contact-methods {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a,
.contact-location {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border-radius: 20px;
  background: rgba(7, 17, 31, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-methods a:hover {
  transform: translateX(4px);
  border-color: rgba(94, 243, 255, 0.3);
  background: rgba(94, 243, 255, 0.08);
}

.contact-methods small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-card {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.form-card label {
  display: grid;
  gap: 8px;
}

.form-card label span {
  color: rgba(247, 251, 255, 0.88);
  font-weight: 700;
  font-size: 0.92rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.74);
  color: #fff;
  outline: none;
  padding: 14px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: rgba(94, 243, 255, 0.64);
  box-shadow: 0 0 0 4px rgba(94, 243, 255, 0.11);
  background: rgba(7, 17, 31, 0.92);
}

.form-card textarea {
  resize: vertical;
  min-height: 140px;
}

.form-card option {
  background: #07111f;
}

.form-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.form-alert {
  padding: 13px 15px;
  border-radius: 18px;
  font-weight: 700;
}

.form-alert.success {
  background: rgba(31, 217, 130, 0.14);
  border: 1px solid rgba(31, 217, 130, 0.32);
  color: #baffdf;
}

.form-alert.error {
  background: rgba(255, 83, 83, 0.14);
  border: 1px solid rgba(255, 83, 83, 0.32);
  color: #ffd0d0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 11, 20, 0.74);
  backdrop-filter: blur(18px);
  padding: 34px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.footer-links a {
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
}

.footer-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(182, 195, 215, 0.72);
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #06101d;
  background: linear-gradient(135deg, #3dff9d, var(--cyan));
  box-shadow: 0 18px 40px rgba(31, 217, 130, 0.28);
  animation: pulse 2.3s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

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

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

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

@keyframes sweep {
  0%, 100% { transform: translateX(-45%); opacity: 0.2; }
  50% { transform: translateX(45%); opacity: 0.6; }
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

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

@keyframes shimmer {
  0%, 100% { opacity: 0.45; transform: scaleX(0.94); transform-origin: left; }
  50% { opacity: 1; transform: scaleX(1); transform-origin: left; }
}

@keyframes pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.04); }
}

@media (max-width: 980px) {
  .section {
    padding: 88px 0;
  }

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-card {
    min-height: 500px;
  }

  .stats,
  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats div:nth-child(2) {
    border-right: 0;
  }

  .stats div:nth-child(1),
  .stats div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, var(--max));
  }

  .nav {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 35;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 auto 0;
    min-height: 100vh;
    padding: 100px 18px 28px;
    background: rgba(7, 17, 31, 0.96);
    backdrop-filter: blur(22px);
    display: grid;
    align-content: start;
    gap: 10px;
    transform: translateX(100%);
    transition: transform 0.32s ease;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-links .nav-cta {
    text-align: center;
    justify-content: center;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.6rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-card {
    min-height: 430px;
    border-radius: 32px;
  }

  .pulse-card {
    display: none;
  }

  .terminal-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .stats,
  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .stats div,
  .stats div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .service-card,
  .timeline-item,
  .contact-card,
  .form-card {
    border-radius: 24px;
    padding: 22px;
  }

  .showcase {
    min-height: 460px;
    border-radius: 28px;
    padding: 18px;
  }

  .app-preview {
    grid-template-columns: 1fr;
  }

  .preview-card.wide {
    grid-column: auto;
  }

  .floating-badge {
    right: 18px;
    bottom: 18px;
  }

  .footer-links,
  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
