:root {
  --navy-950: #020916;
  --navy-900: #071329;
  --navy-800: #0a1d3f;
  --navy-700: #102b5f;
  --black: #030407;
  --white: #ffffff;
  --muted: #aebbd0;
  --text: #ecf4ff;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.14);
  --accent: #43d9ff;
  --accent-2: #7c5cff;
  --accent-3: #f5c46b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --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:
    radial-gradient(circle at 18% 8%, rgba(67, 217, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 84% 18%, rgba(124, 92, 255, 0.2), transparent 28rem),
    linear-gradient(145deg, var(--black), var(--navy-950) 42%, #050711);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  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: 80px 80px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 9, 22, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(100% - 2rem, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: fit-content;
}

.brand-mark {
  width: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(67, 217, 255, 0.9), rgba(124, 92, 255, 0.9)),
    var(--navy-700);
  box-shadow: 0 12px 36px rgba(67, 217, 255, 0.22);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  position: relative;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 40px rgba(67, 217, 255, 0.18);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(67, 217, 255, 0.26);
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 6rem 0;
}

.section-bleed {
  position: relative;
}

.section-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 38%),
    radial-gradient(circle at 78% 45%, rgba(67, 217, 255, 0.13), transparent 24rem);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-grid {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.25rem, 9vw, 6.7rem);
}

.hero h1 {
  background: linear-gradient(110deg, var(--white), #d9f7ff, var(--accent), var(--white));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: headline-shimmer 7s ease-in-out infinite;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}

.hero-subtitle {
  max-width: 45rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.6rem;
}

.hero-actions .btn-primary {
  position: relative;
  overflow: hidden;
}

.hero-actions .btn-primary::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -40%;
  width: 38%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.56), transparent);
  animation: cta-sweep 3.8s ease-in-out infinite;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-strip span {
  position: relative;
  overflow: hidden;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #dbe8fb;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.86rem;
  animation: trust-fade 0.8s ease both;
}

.trust-strip span:nth-child(2) {
  animation-delay: 0.14s;
}

.trust-strip span:nth-child(3) {
  animation-delay: 0.28s;
}

.trust-strip span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(67, 217, 255, 0.16), transparent);
  transform: translateX(-105%);
  animation: trust-scan 5s ease-in-out infinite;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  animation: rotate-slow 18s linear infinite;
}

.hero-visual::before {
  width: min(92vw, 520px);
  aspect-ratio: 1;
}

.hero-visual::after {
  width: min(76vw, 410px);
  aspect-ratio: 1;
  animation-duration: 24s;
  animation-direction: reverse;
}

.orbital-card,
.mini-card,
.glass-panel,
.service-card,
.testimonial-card,
.contact-form,
.values-grid article,
.process-step {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.main-dashboard {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding: 1.25rem;
  border-radius: 8px;
  animation: float-card 6s ease-in-out infinite;
  overflow: hidden;
}

.main-dashboard::before {
  content: "";
  position: absolute;
  inset: -40% -80%;
  z-index: -1;
  background: conic-gradient(from 90deg, transparent, rgba(67, 217, 255, 0.2), transparent, rgba(124, 92, 255, 0.18), transparent);
  animation: dashboard-glow 9s linear infinite;
}

.main-dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 16%, rgba(255, 255, 255, 0.12), transparent 38%);
  transform: translateX(-120%);
  animation: dashboard-scan 4.8s ease-in-out infinite;
}

.dashboard-head {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.dashboard-head span {
  width: 0.7rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.dashboard-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.dashboard-title p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.dashboard-title strong {
  font-size: 2.8rem;
  line-height: 1;
  background: linear-gradient(90deg, var(--white), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.chart-lines {
  height: 170px;
  display: flex;
  align-items: end;
  gap: 0.8rem;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
}

.chart-lines span {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  animation: bar-rise 2.6s ease-in-out infinite alternate;
}

.dashboard-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.dashboard-row b {
  color: var(--white);
}

.mini-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
}

.orbit-node {
  position: absolute;
  z-index: 1;
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 28px rgba(67, 217, 255, 0.88);
  transform-origin: center;
}

.node-one {
  top: 21%;
  left: 16%;
  animation: orbit-one 10s ease-in-out infinite;
}

.node-two {
  right: 15%;
  bottom: 24%;
  width: 10px;
  background: var(--accent-2);
  box-shadow: 0 0 28px rgba(124, 92, 255, 0.88);
  animation: orbit-two 12s ease-in-out infinite;
}

.node-three {
  top: 47%;
  right: 8%;
  width: 8px;
  background: var(--accent-3);
  box-shadow: 0 0 28px rgba(245, 196, 107, 0.75);
  animation: orbit-three 8s ease-in-out infinite;
}

.mini-card p {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.card-top {
  top: 18%;
  right: 4%;
  animation: float-mini 5s ease-in-out infinite;
}

.card-bottom {
  bottom: 16%;
  left: 2%;
  animation: float-mini 5.8s ease-in-out infinite reverse;
}

.card-bottom strong {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(67, 217, 255, 0.15);
  color: var(--accent);
}

.pulse {
  width: 0.85rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #32f6a8;
  box-shadow: 0 0 0 rgba(50, 246, 168, 0.5);
  animation: pulse 1.8s ease-out infinite;
}

.section-heading {
  max-width: 810px;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.about p,
.why p,
.service-card p,
.process-step p,
.testimonial-card p,
.faq-list p,
.footer p {
  color: var(--muted);
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 1.3rem;
}

.glass-panel,
.values-grid article {
  border-radius: 8px;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.glass-panel p:last-child,
.values-grid p:last-child,
.service-card p:last-child,
.process-step p:last-child,
.testimonial-card p:last-child,
.why p:last-child {
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.values-grid span,
.process-step span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-3);
  font-weight: 900;
}

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

.service-card {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 8px;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -52% 16%;
  height: 120px;
  background: radial-gradient(circle, rgba(67, 217, 255, 0.22), transparent 70%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(67, 217, 255, 0.45);
  background: linear-gradient(145deg, rgba(67, 217, 255, 0.13), rgba(255, 255, 255, 0.055));
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  position: relative;
  width: 52px;
  aspect-ratio: 1;
  display: inline-block;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(67, 217, 255, 0.32);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(67, 217, 255, 0.22), rgba(124, 92, 255, 0.16));
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  border-radius: 3px;
  background: var(--white);
  opacity: 0.9;
}

.service-icon.marketing::before { width: 28px; height: 28px; left: 12px; top: 12px; border-radius: 50%; background: transparent; border: 3px solid var(--white); }
.service-icon.marketing::after { width: 16px; height: 3px; right: 8px; bottom: 10px; transform: rotate(45deg); }
.service-icon.seo::before { width: 28px; height: 5px; left: 12px; top: 16px; }
.service-icon.seo::after { width: 18px; height: 5px; left: 12px; top: 29px; background: var(--accent); }
.service-icon.social::before { width: 11px; height: 11px; left: 12px; top: 13px; border-radius: 50%; box-shadow: 18px 2px 0 var(--white), 9px 20px 0 var(--accent); }
.service-icon.social::after { width: 26px; height: 2px; left: 13px; top: 27px; transform: rotate(21deg); }

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.advantage-list {
  display: grid;
  gap: 1rem;
}

.advantage-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.advantage-list span {
  width: 14px;
  aspect-ratio: 1;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(67, 217, 255, 0.8);
}

.stats {
  padding-block: 4rem;
}

.stats-grid {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stats-grid article {
  padding: 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.stats-grid strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
  background: linear-gradient(90deg, var(--white), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.process-step {
  position: relative;
  min-height: 255px;
  padding: 1.2rem;
  border-radius: 8px;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 2.1rem;
  right: -1rem;
  width: 1rem;
  height: 1px;
  background: var(--line);
}

.process-step:last-child::before {
  display: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-card {
  padding: 1.45rem;
  border-radius: 8px;
}

.testimonial-card p {
  font-size: 1rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

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

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  color: var(--white);
  font-weight: 850;
}

details p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
}

.contact-grid {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
}

.contact-methods {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.contact-methods a {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  overflow-wrap: anywhere;
}

.contact-methods span {
  display: block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--white);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.86rem 0.95rem;
  background: rgba(0, 0, 0, 0.22);
  color: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(67, 217, 255, 0.45);
  border-color: rgba(67, 217, 255, 0.55);
}

.form-whatsapp {
  color: var(--accent);
  font-weight: 800;
  text-align: center;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

.footer-grid,
.footer-bottom {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 0.9fr;
  gap: 2rem;
  padding: 4rem 0 2.5rem;
}

.footer h3 {
  font-size: 1rem;
}

.footer a {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand strong,
.footer-brand small {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  width: 58px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #20d56b, #0aa843);
  box-shadow: 0 18px 48px rgba(32, 213, 107, 0.34);
  transition: transform 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.04);
}

.floating-whatsapp span {
  font-weight: 950;
  color: var(--white);
}

.reveal {
  animation: reveal-up 0.9s ease both;
}

.delay-1 {
  animation-delay: 0.18s;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headline-shimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

@keyframes cta-sweep {
  0%,
  42% {
    transform: translateX(0) rotate(18deg);
  }
  72%,
  100% {
    transform: translateX(440%) rotate(18deg);
  }
}

@keyframes trust-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trust-scan {
  0%,
  55% {
    transform: translateX(-105%);
  }
  85%,
  100% {
    transform: translateX(105%);
  }
}

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

@keyframes float-mini {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes dashboard-glow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes dashboard-scan {
  0%,
  48% {
    transform: translateX(-120%);
  }
  78%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-one {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(74px, 36px) scale(1.22);
  }
}

@keyframes orbit-two {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-58px, -46px) scale(1.18);
  }
}

@keyframes orbit-three {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-42px, 58px) scale(1.3);
  }
}

@keyframes bar-rise {
  from {
    filter: brightness(0.9);
    transform: scaleY(0.86);
  }
  to {
    filter: brightness(1.1);
    transform: scaleY(1);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(50, 246, 168, 0.5);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(50, 246, 168, 0);
  }
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 860px) {
  .navbar {
    min-height: 70px;
  }

  .nav-toggle-label {
    width: 46px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 0.72rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
  }

  .nav-toggle-label span {
    width: 100%;
    height: 2px;
    background: var(--white);
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(2, 9, 22, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links a {
    padding: 0.9rem;
    border-radius: 8px;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle:checked ~ .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

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

  h1 {
    max-width: 11ch;
  }

  .hero-visual {
    min-height: 460px;
  }

  .values-grid,
  .testimonial-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .process-step::before {
    display: none;
  }
}

@media (max-width: 580px) {
  .section {
    padding: 4.5rem 0;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.65rem;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

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

  .trust-strip span {
    width: 100%;
  }

  .hero-visual {
    min-height: 410px;
  }

  .mini-card {
    font-size: 0.82rem;
  }

  .card-top {
    right: 0;
    top: 10%;
  }

  .card-bottom {
    left: 0;
    bottom: 8%;
  }

  .values-grid,
  .service-grid,
  .process-timeline,
  .testimonial-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-step {
    min-height: auto;
  }

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

  .floating-whatsapp {
    width: 54px;
  }
}

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