:root {
  --bg: #070812;
  --bg-soft: #101325;
  --surface: rgba(20, 24, 44, 0.75);
  --surface-strong: rgba(15, 19, 36, 0.92);
  --line: rgba(166, 181, 230, 0.2);
  --text: #f2f5ff;
  --muted: #bcc5e8;
  --brand: #79d5ff;
  --brand-2: #6d7dff;
  --brand-3: #5fa8ff;
  --ok: #38d48d;
  --wa: #25d366;
  --container: min(1160px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% -8%, rgba(87, 145, 255, 0.52), transparent 30%),
    radial-gradient(circle at 100% 5%, rgba(67, 132, 255, 0.42), transparent 29%),
    radial-gradient(circle at 50% 120%, rgba(75, 173, 255, 0.33), transparent 35%),
    linear-gradient(165deg, #040916 5%, #071127 45%, #0a1733 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.45;
  animation: float 14s ease-in-out infinite;
}

.blob--one {
  width: 320px;
  height: 320px;
  top: -100px;
  left: -120px;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
}

.blob--two {
  width: 360px;
  height: 360px;
  top: 22%;
  right: -100px;
  background: linear-gradient(120deg, var(--brand-3), var(--brand-2));
  animation-delay: 3s;
}

.blob--three {
  width: 300px;
  height: 300px;
  bottom: -90px;
  left: 25%;
  background: linear-gradient(120deg, var(--brand), var(--brand-3));
  animation-delay: 6s;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 8, 18, 0.58);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  background: rgba(7, 9, 20, 0.86);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 35px rgba(2, 4, 12, 0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #fff;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  font-size: 0.82rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero {
  padding: clamp(2.2rem, 6vw, 4.4rem) 0 2rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.hero__content,
.hero__panel,
.section__head,
.process-list li,
.contact-copy,
.lead-form,
.location-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  backdrop-filter: blur(9px);
}

.hero__content {
  padding: clamp(1.2rem, 2.8vw, 2rem);
}

.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(151, 180, 255, 0.42);
  background: linear-gradient(120deg, rgba(121, 213, 255, 0.2), rgba(109, 125, 255, 0.2));
  color: #e8ecff;
  padding: 0.4rem 0.75rem;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Syne", "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.05;
}

.hero__lead {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 58ch;
}

.checks {
  margin: 1.2rem 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.checks li {
  border: 1px solid rgba(151, 180, 255, 0.28);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0.8rem 1.1rem;
  min-height: 46px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(130deg, var(--brand), var(--brand-2), var(--brand-3));
  color: #04050c;
  box-shadow: 0 12px 30px rgba(106, 138, 255, 0.3);
}

.btn--glass {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.btn--icon {
  border-color: var(--line);
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
}

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

.stats article {
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(7, 10, 22, 0.7);
  border: 1px solid rgba(168, 187, 240, 0.2);
}

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

.stats strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.95rem;
}

.hero__panel {
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.glass-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}

.glass-card h2 {
  margin: 0.8rem 0 0.6rem;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
}

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

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.mini-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.9rem;
}

.mini-card span {
  display: inline-flex;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.74rem;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  color: #070913;
}

.mini-card h3 {
  margin: 0.7rem 0 0.35rem;
  font-size: 0.95rem;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  padding: clamp(1.7rem, 5vw, 3rem) 0;
}

.section__head {
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  margin-bottom: 1rem;
}

.section__head h2 {
  margin: 0.8rem 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}

.section__head p {
  margin: 0;
  color: var(--muted);
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.process-list li {
  padding: 1.1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(8, 10, 22, 0.4);
}

.process-list span {
  font-weight: 800;
  color: var(--brand);
  font-size: 0.84rem;
}

.process-list h3 {
  margin: 0.5rem 0 0.45rem;
  font-size: 1.03rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(1rem, 2.4vw, 1.8rem);
}

.contact-copy {
  padding: clamp(1rem, 2.2vw, 1.6rem);
}

.contact-copy h2 {
  margin: 0.75rem 0 0.55rem;
  font-size: clamp(1.45rem, 3.4vw, 2.15rem);
}

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

.location-cards {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.location-card {
  padding: 1rem;
}

.location-card h3 {
  font-size: 1.04rem;
}

.location-card p {
  color: var(--muted);
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.btn--maps {
  margin-top: 0.7rem;
  background: linear-gradient(120deg, #4aa2ff, #5b74ff);
  width: fit-content;
}

.instagram-link {
  margin-top: 1rem;
  display: inline-flex;
  color: #d8dcff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.lead-form {
  padding: clamp(1rem, 2.4vw, 1.45rem);
  display: grid;
  gap: 0.85rem;
}

.lead-form h3 {
  font-size: 1.35rem;
}

.lead-form p,
.lead-form small {
  margin: 0;
  color: var(--muted);
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
}

.lead-form label span {
  font-size: 0.85rem;
  color: #d2dbff;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(168, 186, 235, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0.82rem 0.92rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(121, 213, 255, 0.18);
}

.lead-form textarea {
  min-height: 130px;
  resize: vertical;
}

.btn--whatsapp {
  background: linear-gradient(140deg, #31db73, #22bc5a);
  color: #fff;
  width: 100%;
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 1.8rem;
  padding: 1.3rem 0 calc(1.3rem + env(safe-area-inset-bottom, 0px));
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.footer__horyzon {
  color: #cfe8ff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer__horyzon:hover {
  color: #ffffff;
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #27d768, #1fb154);
  color: #fff;
  box-shadow: 0 15px 28px rgba(16, 67, 35, 0.45);
}

.floating-wa svg {
  width: 28px;
  height: 28px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-26px) scale(1.08);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(56, 212, 141, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(56, 212, 141, 0);
  }
}

@media (max-width: 1024px) {
  .hero__grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .nav,
  .pill {
    display: none;
  }

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

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

  .process-list {
    grid-template-columns: 1fr;
  }

  .hero__cta .btn,
  .btn--maps {
    width: 100%;
  }

  .header__inner {
    padding: 0.75rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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