:root {
  --bg: #060707;
  --bg-2: #0d0e0e;
  --panel: #171818;
  --panel-2: #202121;
  --light: #eef1f6;
  --paper: #f9fafc;
  --ink: #101214;
  --text: #fbfaf7;
  --muted: #aeb5c0;
  --muted-2: #6f7781;
  --orange: #ff6a18;
  --orange-2: #ff9b57;
  --orange-3: #ffcf9b;
  --cyan: #27d5c9;
  --green: #1fd26c;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(13, 18, 24, 0.08);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.4);
  --premium-shadow: 0 32px 90px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

html.page-jump {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 106, 24, 0.13), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(39, 213, 201, 0.1), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 70%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    conic-gradient(from 180deg at 50% 50%, transparent 0 18%, rgba(255, 106, 24, 0.08) 23%, transparent 32%, rgba(39, 213, 201, 0.08) 42%, transparent 58%, rgba(255, 155, 87, 0.08) 68%, transparent 82%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.02), transparent 42%, rgba(255, 106, 24, 0.035));
  opacity: 0.82;
  animation: auroraFlow 18s linear infinite;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 360px;
  height: 360px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(255, 106, 24, 0.18), rgba(39, 213, 201, 0.08) 38%, transparent 68%);
  filter: blur(10px);
  mix-blend-mode: screen;
  transition: opacity 220ms ease;
}

.section-transition {
  position: fixed;
  inset: 0;
  z-index: 38;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 106, 24, 0.14), transparent 34rem),
    rgba(3, 4, 4, 0);
  transition: background 260ms ease;
}

.section-transition::before,
.section-transition::after,
.section-transition span {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateY(105%);
}

.section-transition::before {
  background:
    linear-gradient(180deg, rgba(255, 106, 24, 0.08), rgba(3, 4, 4, 0.98) 38%, rgba(3, 4, 4, 0.98) 62%, rgba(255, 106, 24, 0.1)),
    #030404;
}

.section-transition span {
  inset: auto 0 48%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 24, 0.9), rgba(39, 213, 201, 0.72), transparent);
  box-shadow: 0 0 34px rgba(255, 106, 24, 0.55);
  transform: scaleX(0);
}

.section-transition::after {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  background: radial-gradient(circle at 50% 50%, rgba(255, 106, 24, 0.18), transparent 30rem);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  transform: none;
}

.section-transition.is-active {
  opacity: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 106, 24, 0.18), transparent 34rem),
    rgba(3, 4, 4, 0.74);
}

.section-transition.is-active::before {
  animation: pageCover 920ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.section-transition.is-active span {
  animation: pageLine 920ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.section-transition.is-active::after {
  animation: pageSignal 920ms ease both;
}

main.is-transitioning {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(0.985);
  opacity: 0.58;
  transition: opacity 260ms ease, transform 260ms ease, filter 260ms ease;
}

body.page-changing {
  overflow: hidden;
}

section.section-focus {
  position: relative;
  animation: destinationReveal 920ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

section.section-focus::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto;
  height: 220px;
  pointer-events: none;
  background: radial-gradient(circle at 18% 0%, rgba(255, 106, 24, 0.24), transparent 34rem);
  opacity: 0;
  animation: destinationGlow 980ms ease both;
}

#inicio,
#servicios,
#producto,
#portafolio,
#paquetes,
#proceso,
#contacto {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#inicio {
  display: block;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 18px;
  left: 0;
  right: 0;
  pointer-events: none;
}

.nav-shell {
  width: min(1110px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(12, 13, 13, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 136px;
  white-space: nowrap;
}

.brand-logo {
  width: 136px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 18px rgba(255, 106, 24, 0.22));
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a,
.nav-mobile-cta {
  padding: 12px 13px;
  border-radius: 999px;
  color: #c9cbd0;
  font-size: 0.84rem;
  font-weight: 850;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-mobile-cta {
  display: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: #111;
  background: var(--orange);
  transform: translateY(-1px);
}

.nav-cta,
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta::after,
.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 12%, rgba(255, 255, 255, 0.32), transparent 42%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

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

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

.nav-cta,
.btn-primary {
  color: #120d08;
  background: linear-gradient(180deg, var(--orange-3), var(--orange-2) 28%, var(--orange));
  box-shadow: 0 18px 42px rgba(255, 106, 24, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #222424, #111212);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

.btn span,
.nav-cta span {
  display: inline-block;
  transition: transform 180ms ease;
}

.btn:hover span,
.nav-cta:hover span {
  transform: translate(2px, -1px);
}

.btn,
.nav-links a,
.hero-pills span,
.feature-list span,
.package-card strong,
.booking-preview > p {
  overflow-wrap: break-word;
}

.compact {
  min-height: 44px;
  padding: 0 22px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 106, 24, 0.2), transparent 60%),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 24, 0.45);
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform: translateX(-50%);
  transition: transform 220ms ease, opacity 180ms ease, top 220ms ease;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 20px;
}

.nav-toggle span:nth-child(3) {
  top: 26px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}

.section-dark {
  background: transparent;
}

.section-light {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(238, 241, 246, 0.98), rgba(247, 248, 251, 1)),
    var(--light);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 154px 0 74px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 11% 8% auto auto;
  width: min(44vw, 560px);
  height: min(44vw, 560px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 48%),
    radial-gradient(circle, rgba(255, 106, 24, 0.15), transparent 62%);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.035), 0 0 80px rgba(255, 106, 24, 0.08);
  animation: orbitSpin 30s linear infinite;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  filter: saturate(1.14) contrast(1.12) brightness(1.08);
  transform: scale(1.03);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-vignette,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-vignette {
  background:
    radial-gradient(circle at 68% 40%, rgba(255, 106, 24, 0.18), transparent 26rem),
    radial-gradient(circle at 77% 72%, rgba(39, 213, 201, 0.12), transparent 22rem);
  animation: glowShift 12s ease-in-out infinite alternate;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  right: 10%;
  top: 22%;
  width: 220px;
  height: 220px;
  border-color: rgba(255, 106, 24, 0.28);
  animation: floatOrb 7s ease-in-out infinite alternate;
}

.orbit-two {
  right: 31%;
  bottom: 15%;
  width: 96px;
  height: 96px;
  border-color: rgba(39, 213, 201, 0.22);
  animation: floatOrb 5s ease-in-out infinite alternate-reverse;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(6, 7, 7, 0.9), rgba(6, 7, 7, 0.48) 50%, rgba(6, 7, 7, 0.76)),
    linear-gradient(180deg, rgba(6, 7, 7, 0.1), rgba(6, 7, 7, 0.9));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 770px) minmax(270px, 1fr);
  align-items: end;
  gap: 52px;
}

.hero-copy {
  padding-top: 44px;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #151719;
  background: #fff;
  box-shadow: 0 14px 36px rgba(20, 25, 35, 0.08);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 106, 24, 0.9);
}

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

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: 6.6rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: 4.35rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.38rem;
  line-height: 1.12;
}

.hero-lede,
.split p,
.section-heading p,
.product p,
.contact p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
}

.hero-lede {
  max-width: 690px;
}

.hero-pills,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pills {
  margin: 32px 0 36px;
}

.hero-pills span,
.feature-list span {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d7dae0;
  background: rgba(255, 255, 255, 0.065);
  font-size: 0.88rem;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-panel,
.lab-card,
.package-card,
.contact-cards article,
.contact-form,
.product-panel,
.footer {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.032)),
    rgba(14, 15, 15, 0.78);
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
}

.signal-panel {
  position: relative;
  overflow: hidden;
}

.signal-panel::before {
  content: "";
  position: absolute;
  inset: -40% -60% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 24, 0.24), transparent 70%);
  animation: glowShift 9s ease-in-out infinite alternate;
}

.signal-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-radius: var(--radius);
  color: #dfe4ea;
  background: rgba(0, 0, 0, 0.36);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-top p {
  margin: 0;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(31, 210, 108, 0.12), 0 0 18px rgba(31, 210, 108, 0.74);
}

.signal-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.signal-stack article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.34);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.signal-stack article:hover {
  transform: translateX(6px);
  border-color: rgba(255, 106, 24, 0.38);
  background: rgba(255, 106, 24, 0.08);
}

.signal-stack small {
  color: var(--orange);
  font-weight: 950;
  letter-spacing: 0.24em;
}

.signal-stack strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 1.24rem;
}

.signal-stack span {
  margin-top: 8px;
  line-height: 1.45;
}

.hero-panel div {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.34);
}

.hero-panel strong,
.contact-cards strong {
  display: block;
  color: var(--orange);
  font-size: 2.15rem;
  line-height: 1;
}

.hero-panel span,
.contact-cards span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 850;
}

.proof-strip {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 106, 24, 0.06), rgba(39, 213, 201, 0.035), rgba(255, 106, 24, 0.06));
  overflow: hidden;
}

.proof-marquee {
  width: 100%;
  overflow: hidden;
}

.proof-grid {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 28px;
  animation: marqueeMove 26s linear infinite;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: softPulse 4s ease-in-out infinite;
}

.about,
.fit,
.outcomes,
.product,
.packages,
.portfolio,
.cta-band,
.contact {
  padding: 112px 0;
}

.split,
.product-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.lab-card {
  padding: 36px;
  border-radius: var(--radius);
}

.lab-kicker,
.package-label {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.lab-card ol {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.lab-card li {
  position: relative;
  padding-left: 54px;
  color: var(--muted);
  line-height: 1.6;
  counter-increment: steps;
}

.lab-card li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 950;
}

.lab-card strong {
  color: #fff;
}

.premium-console,
.premium-device,
.premium-cta,
.solution-card,
.package-card,
.timeline article {
  transform-style: preserve-3d;
}

.premium-console::after,
.premium-device::after,
.premium-cta::after,
.solution-card::after,
.package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 32%, rgba(255, 106, 24, 0.11) 64%, transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.premium-console:hover::after,
.premium-device:hover::after,
.premium-cta:hover::after,
.solution-card:hover::after,
.package-card:hover::after {
  opacity: 1;
}

.fit-grid,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fit-grid article,
.outcome-grid article,
.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.032)),
    rgba(13, 14, 14, 0.76);
  box-shadow: var(--premium-shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.fit-grid article:hover,
.outcome-grid article:hover,
.package-card:hover,
.portfolio-grid article:hover,
.timeline article:hover,
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 24, 0.36);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 106, 24, 0.08);
}

.fit-grid article {
  min-height: 265px;
  padding: 30px;
}

.fit-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 38px;
  border-radius: 50%;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 950;
}

.fit-grid p,
.outcome-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.services,
.process,
.faq {
  padding: 104px 0;
}

.services {
  padding: 92px 0 86px;
}

.services .section-heading {
  margin-bottom: 34px;
}

.services .section-heading h2 {
  max-width: 920px;
  font-size: 3.72rem;
  line-height: 1;
}

.services .section-heading p {
  max-width: 660px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 980px;
}

.section-heading p {
  max-width: 700px;
}

.section-light .section-heading p,
.faq p,
.timeline p {
  color: #5b6470;
}

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

.premium-service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.service-card,
.timeline article {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(18, 24, 34, 0.1);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card {
  min-height: 330px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.solution-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.solution-card p {
  margin-bottom: 0;
}

.solution-card ul {
  margin-top: auto;
  padding-top: 22px;
  columns: 2;
  column-gap: 28px;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: auto -28% -34% 18%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 24, 0.16), transparent 68%);
  transition: transform 260ms ease, opacity 260ms ease;
}

.solution-card:hover::before {
  transform: scale(1.32) translateY(-10px);
  opacity: 0.9;
}

.featured-solution {
  color: #fff;
  border-color: rgba(255, 106, 24, 0.3);
  background:
    radial-gradient(circle at 70% 0%, rgba(255, 106, 24, 0.2), transparent 14rem),
    linear-gradient(180deg, #191a1a, #0d0e0e);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255, 106, 24, 0.1);
}

.featured-solution p,
.featured-solution li {
  color: #cfd4dc;
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--orange);
  background: #fff;
  font-size: 1.35rem;
  font-weight: 950;
  box-shadow: 0 15px 32px rgba(20, 26, 36, 0.08);
  transition: transform 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.solution-card .service-icon {
  border-radius: var(--radius);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.service-card:hover .service-icon {
  color: #fff;
  background: var(--orange);
  transform: rotate(-4deg) scale(1.06);
  box-shadow: 0 18px 40px rgba(255, 106, 24, 0.24);
}

.service-card p,
.service-card li {
  color: #536071;
  line-height: 1.55;
}

.service-card ul,
.package-card ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.service-card li,
.package-card li {
  position: relative;
  padding-left: 18px;
  margin: 11px 0;
}

.service-card li::before,
.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

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

.outcome-grid article {
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
}

.outcome-grid strong {
  display: block;
  margin-bottom: 70px;
  color: rgba(255, 106, 24, 0.95);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
}

.outcome-grid article:nth-child(2) {
  background: linear-gradient(180deg, rgba(39, 213, 201, 0.1), rgba(255, 255, 255, 0.035));
}

.outcome-grid article:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 106, 24, 0.12), rgba(255, 255, 255, 0.035));
}

.product {
  position: relative;
  overflow: hidden;
}

.product::before {
  content: "";
  position: absolute;
  inset: 12% auto auto 55%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 24, 0.16), transparent 68%);
}

.product-grid {
  position: relative;
  z-index: 1;
}

.feature-list {
  margin-top: 30px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.product-panel {
  position: relative;
  padding: 16px;
  border-radius: var(--radius);
  overflow: hidden;
}

.premium-device::before {
  content: "";
  position: absolute;
  inset: -18% -24% auto auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 213, 201, 0.16), transparent 70%);
  animation: floatOrb 6s ease-in-out infinite alternate;
}

.mini-window {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.mini-window span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.mini-window span:nth-child(2) {
  background: var(--cyan);
}

.mini-window span:nth-child(3) {
  background: rgba(255, 255, 255, 0.3);
}

.booking-preview {
  margin-top: 16px;
  padding: 30px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 106, 24, 0.22), transparent 12rem),
    #0b0d0d;
}

.booking-preview > strong {
  color: var(--orange);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
}

.booking-preview > p {
  margin: 18px 0 26px;
  color: #fff;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.05;
}

.booking-preview div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.booking-preview span {
  color: var(--muted-2);
}

.booking-preview b {
  text-align: right;
}

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

.package-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.package-card.featured {
  border-color: rgba(255, 106, 24, 0.54);
  background:
    linear-gradient(180deg, rgba(255, 106, 24, 0.18), rgba(255, 255, 255, 0.04)),
    var(--panel);
}

.package-card.featured::before {
  content: "Mas pedido";
  position: absolute;
  top: 20px;
  right: -46px;
  width: 170px;
  padding: 8px 0;
  color: #16100a;
  background: var(--orange);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(35deg);
}

.package-card strong {
  color: var(--orange);
  font-size: 1.55rem;
  line-height: 1.2;
}

.package-card li {
  color: var(--muted);
  line-height: 1.55;
}

.package-card .btn {
  margin-top: auto;
}

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

.timeline article {
  min-height: 230px;
  padding: 28px;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-weight: 950;
}

.portfolio {
  padding-top: 126px;
}

.portfolio-showcase-head {
  min-height: 118px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 106, 24, 0.16), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028)),
    rgba(16, 17, 17, 0.88);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.portfolio-head-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--orange);
  background: rgba(0, 0, 0, 0.32);
  font-size: 1.35rem;
  font-weight: 950;
}

.portfolio-showcase-head p,
.portfolio-showcase-head h2,
.portfolio-showcase-head span {
  margin: 0;
}

.portfolio-showcase-head p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.portfolio-showcase-head h2 {
  margin-top: 6px;
  font-size: 2rem;
  line-height: 1;
}

.portfolio-showcase-head span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.4;
}

.portfolio-kicker {
  margin-bottom: 22px;
}

.portfolio-kicker .eyebrow {
  margin-bottom: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.portfolio-project {
  position: relative;
  min-height: 438px;
  display: block;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #0a0b0b;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.portfolio-project::after {
  content: "Abrir proyecto";
  position: absolute;
  z-index: 4;
  right: 20px;
  top: 20px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.38);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
  backdrop-filter: blur(16px);
}

.portfolio-project:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 24, 0.42);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(255, 106, 24, 0.12);
}

.portfolio-project:hover::after {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(255, 106, 24, 0.42);
}

.portfolio-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 86px 28px 28px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78) 34%, rgba(0, 0, 0, 0.94));
}

.portfolio-grid p {
  margin: 0;
  color: #d8dde5;
  line-height: 1.5;
}

.portfolio-info > span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-type {
  width: fit-content;
  margin-bottom: 12px !important;
  padding: 8px 12px;
  border: 1px solid rgba(255, 106, 24, 0.28);
  border-radius: 999px;
  color: #ffd7c0 !important;
  background: rgba(255, 106, 24, 0.1);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-visual {
  min-height: 438px;
  position: relative;
  overflow: hidden;
  background: #0a0b0b;
}

.portfolio-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.08) contrast(1.04) brightness(0.82);
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

.portfolio-project:hover .portfolio-visual img {
  filter: saturate(1.18) contrast(1.08) brightness(0.94);
  transform: scale(1.055);
}

.portfolio-visual span {
  position: absolute;
  z-index: 2;
  right: 22px;
  top: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.38);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.portfolio-brand {
  position: absolute;
  z-index: 3;
  left: 22px;
  top: 22px;
  min-width: min(72%, 330px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.46);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.portfolio-brand strong {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #120d08;
  background: linear-gradient(180deg, #ffdfbd, var(--orange));
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 30px rgba(255, 106, 24, 0.26);
}

.portfolio-brand p {
  margin: 0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: 0;
}

.portfolio-brand.gold strong {
  color: #201409;
  background: linear-gradient(180deg, #ffe9bd, #c89437 54%, #7a4b16);
  box-shadow: 0 12px 34px rgba(218, 169, 77, 0.24);
}

.portfolio-visual::before,
.portfolio-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.portfolio-visual::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at 20% 12%, rgba(255, 106, 24, 0.22), transparent 18rem);
}

.portfolio-visual::after {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
}

.portfolio-project:hover .portfolio-visual::before {
  opacity: 0.92;
}

.portfolio-project:hover .portfolio-visual::after {
  border-color: rgba(255, 106, 24, 0.38);
}

.visual-booking {
  background:
    linear-gradient(135deg, rgba(255, 106, 24, 0.1), rgba(39, 213, 201, 0.06)),
    #0a0b0b;
}

.visual-leads {
  background:
    radial-gradient(circle at 25% 30%, rgba(39, 213, 201, 0.24), transparent 7rem),
    radial-gradient(circle at 78% 70%, rgba(255, 106, 24, 0.32), transparent 8rem),
    #0a0b0b;
}

.visual-sagui {
  background:
    radial-gradient(circle at 68% 24%, rgba(255, 207, 155, 0.3), transparent 8rem),
    linear-gradient(135deg, rgba(255, 106, 24, 0.2), rgba(255, 255, 255, 0.04) 46%, rgba(39, 213, 201, 0.1)),
    #0a0b0b;
}

.visual-sagui::before {
  width: 62%;
  height: 46%;
  left: 18%;
  top: 24%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 106, 24, 0.12)),
    rgba(255, 255, 255, 0.05);
}

.visual-sagui::after {
  width: 34%;
  height: 34%;
  right: 18%;
  bottom: 14%;
  border-radius: 50%;
  background: rgba(255, 207, 155, 0.22);
}

.visual-support {
  background:
    linear-gradient(180deg, rgba(255, 106, 24, 0.16), rgba(255, 255, 255, 0.02)),
    #0a0b0b;
}

.visual-sagui::before {
  inset: 0;
  width: auto;
  height: auto;
  left: auto;
  top: auto;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at 20% 12%, rgba(255, 207, 155, 0.18), transparent 18rem);
}

.visual-sagui::after {
  inset: 0;
  width: auto;
  height: auto;
  right: auto;
  bottom: auto;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.narrow {
  max-width: 900px;
}

.faq h2 {
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.faq-item {
  width: 100%;
  padding: 24px;
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(24, 31, 42, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 24, 0.28);
  box-shadow: 0 22px 54px rgba(24, 31, 42, 0.12);
}

.faq-item span {
  color: var(--orange);
  font-weight: 950;
  font-size: 0.78rem;
}

.faq-item strong {
  font-size: 1.05rem;
}

.faq-item em {
  font-style: normal;
  font-size: 1.4rem;
}

.faq-item p {
  grid-column: 2 / 4;
  display: none;
  margin: 0;
  line-height: 1.6;
}

.faq-item.open p {
  display: block;
}

.cta-band {
  padding-top: 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 34px;
  padding: 42px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 106, 24, 0.22), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.cta-panel h2 {
  font-size: 3.55rem;
}

.cta-panel p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

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

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-direct a {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(31, 210, 108, 0.34);
  border-radius: 999px;
  color: #d9ffe5;
  background:
    linear-gradient(180deg, rgba(31, 210, 108, 0.16), rgba(31, 210, 108, 0.07)),
    rgba(255, 255, 255, 0.04);
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(31, 210, 108, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-direct a:hover {
  transform: translateX(6px);
  border-color: rgba(31, 210, 108, 0.68);
  background:
    linear-gradient(180deg, rgba(31, 210, 108, 0.24), rgba(31, 210, 108, 0.1)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 42px rgba(31, 210, 108, 0.2);
}

.contact-cards article {
  min-height: 140px;
  padding: 24px;
  border-radius: var(--radius);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 34px;
  border-radius: var(--radius);
  border-color: rgba(31, 210, 108, 0.18);
  background:
    radial-gradient(circle at 92% 8%, rgba(31, 210, 108, 0.16), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(31, 210, 108, 0.04);
}

.contact-form h3,
.contact-form .full,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  display: none;
  margin: 0;
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.45;
  letter-spacing: 0;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  border: 1px solid rgba(31, 210, 108, 0.42);
  color: #c9ffd9;
  background: rgba(31, 210, 108, 0.12);
  box-shadow: 0 12px 28px rgba(31, 210, 108, 0.12);
}

.form-status.error {
  border: 1px solid rgba(255, 106, 24, 0.44);
  color: #ffd7c0;
  background: rgba(255, 106, 24, 0.12);
}

label {
  display: grid;
  gap: 10px;
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(0, 0, 0, 0.3);
  padding: 0 18px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
textarea:focus {
  border-color: rgba(31, 210, 108, 0.62);
  box-shadow: 0 0 0 4px rgba(31, 210, 108, 0.12);
  background: rgba(0, 0, 0, 0.42);
}

.contact .btn-primary {
  color: #071109;
  background: linear-gradient(180deg, #64f39a, #18d260);
  box-shadow: 0 20px 54px rgba(31, 210, 108, 0.24);
}

.contact .btn-primary::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
}

.contact .btn-primary:hover {
  box-shadow: 0 26px 68px rgba(31, 210, 108, 0.34);
}

textarea {
  min-height: 126px;
  padding-top: 16px;
  resize: vertical;
}

.footer {
  padding: 64px 0 28px;
  background: #080909;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 70px;
}

.footer p,
.footer a,
.footer span {
  color: var(--muted);
  line-height: 1.7;
}

.footer h4 {
  color: var(--muted-2);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 30;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  background: #18d260;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  box-shadow: 0 18px 44px rgba(24, 210, 96, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: whatsappBreath 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 60px rgba(24, 210, 96, 0.48);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms ease, transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes glowShift {
  from {
    opacity: 0.82;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(-2%);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.56;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes whatsappBreath {
  0%,
  100% {
    box-shadow: 0 18px 44px rgba(24, 210, 96, 0.36);
  }
  50% {
    box-shadow: 0 18px 44px rgba(24, 210, 96, 0.48), 0 0 0 10px rgba(24, 210, 96, 0.08);
  }
}

@keyframes auroraFlow {
  from {
    transform: rotate(0deg) scale(1.08);
  }
  to {
    transform: rotate(360deg) scale(1.08);
  }
}

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

@keyframes floatOrb {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-18px, 22px, 0) scale(1.06);
  }
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes menuPanelIn {
  from {
    opacity: 0;
    transform: translateY(-14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pageCover {
  0% {
    transform: translateY(105%);
  }
  42%,
  58% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-105%);
  }
}

@keyframes pageLine {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  42%,
  58% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}

@keyframes pageSignal {
  0%,
  22% {
    opacity: 0;
  }
  42%,
  58% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes destinationReveal {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes destinationGlow {
  0%,
  100% {
    opacity: 0;
  }
  34% {
    opacity: 1;
  }
}

@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;
  }
}

@media (max-width: 1020px) {
  .container {
    width: min(100% - 36px, 1160px);
  }

  .nav-shell {
    width: min(720px, calc(100% - 28px));
    justify-content: space-between;
    gap: 14px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 92px;
    display: grid;
    gap: 8px;
    max-height: calc(100svh - 118px);
    padding: 18px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background:
      radial-gradient(circle at 88% 0%, rgba(255, 106, 24, 0.18), transparent 12rem),
      linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.036)),
      rgba(10, 11, 11, 0.96);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    animation: menuPanelIn 260ms ease both;
  }

  .nav-links.open a:not(.nav-mobile-cta) {
    position: relative;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 0 52px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    color: #edf0f4;
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.9rem;
  }

  .nav-links.open a:not(.nav-mobile-cta)::before {
    content: "";
    position: absolute;
    left: 18px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background:
      radial-gradient(circle, var(--orange) 0 31%, transparent 34%),
      rgba(255, 106, 24, 0.12);
    box-shadow: 0 0 20px rgba(255, 106, 24, 0.22);
  }

  .nav-links.open a:not(.nav-mobile-cta)::after {
    content: "→";
    color: rgba(255, 255, 255, 0.46);
  }

  .nav-links.open a.active {
    color: #120d08;
    border-color: rgba(255, 106, 24, 0.54);
    background: linear-gradient(180deg, var(--orange-3), var(--orange));
  }

  .nav-links.open a.active::after {
    color: #120d08;
  }

  .nav-mobile-cta {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    color: #120d08;
    background: linear-gradient(180deg, var(--orange-3), var(--orange));
    box-shadow: 0 18px 42px rgba(255, 106, 24, 0.26);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero {
    min-height: auto;
    padding: 142px 0 68px;
  }

  .hero-art {
    opacity: 0.36;
    object-position: 64% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(6, 7, 7, 0.92), rgba(6, 7, 7, 0.62) 56%, rgba(6, 7, 7, 0.82)),
      linear-gradient(180deg, rgba(6, 7, 7, 0.05), rgba(6, 7, 7, 0.92));
  }

  .hero-copy {
    padding-top: 20px;
  }

  h1 {
    max-width: 760px;
    font-size: 4.85rem;
  }

  h2 {
    font-size: 3.3rem;
  }

  .cta-panel h2 {
    font-size: 3rem;
  }

  .hero-lede,
  .split p,
  .section-heading p,
  .product p,
  .contact p {
    font-size: 1.06rem;
  }

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

  .hero-panel,
  .fit-grid,
  .service-grid,
  .package-grid,
  .outcome-grid,
  .portfolio-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about,
  .fit,
  .outcomes,
  .product,
  .packages,
  .portfolio,
  .cta-band,
  .contact,
  .services,
  .process,
  .faq {
    padding: 86px 0;
  }

  .services {
    min-height: auto;
    padding: 104px 0 86px;
  }

  .services .section-heading {
    align-items: start;
    margin-bottom: 30px;
  }

  .services .section-heading h2 {
    max-width: 680px;
    font-size: 3.05rem;
    line-height: 1.02;
  }

  .premium-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .service-card {
    padding: 26px;
  }

  .solution-card {
    min-height: 318px;
  }

  .solution-card ul {
    columns: 1;
  }

  .portfolio-showcase-head {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .portfolio-showcase-head .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .portfolio-project,
  .portfolio-visual {
    min-height: 410px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    top: 10px;
  }

  .nav-shell {
    width: calc(100% - 20px);
    min-height: 62px;
    padding: 9px 12px 9px 14px;
    border-radius: 18px;
  }

  .brand {
    min-width: 108px;
  }

  .brand-logo {
    width: 108px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-links.open {
    left: 10px;
    right: 10px;
    top: 82px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 56px;
  }

  .hero-art {
    opacity: 0.28;
    object-position: 70% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(6, 7, 7, 0.94), rgba(6, 7, 7, 0.72)),
      linear-gradient(180deg, rgba(6, 7, 7, 0.14), rgba(6, 7, 7, 0.95));
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 22px;
    padding: 9px 13px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    line-height: 1.35;
  }

  h1 {
    margin-bottom: 22px;
    font-size: 2.78rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.28rem;
    line-height: 1.04;
  }

  h3 {
    font-size: 1.24rem;
  }

  .hero-lede,
  .split p,
  .section-heading p,
  .product p,
  .contact p,
  .cta-panel p {
    font-size: 1rem;
    line-height: 1.58;
  }

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

  .hero-pills span,
  .feature-list span {
    width: 100%;
    text-align: center;
  }

  .hero-pills,
  .feature-list,
  .hero-actions,
  .product-actions {
    gap: 10px;
  }

  .hero-pills {
    margin: 26px 0 28px;
  }

  .btn,
  .nav-cta {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .about,
  .fit,
  .outcomes,
  .product,
  .packages,
  .portfolio,
  .cta-band,
  .contact,
  .services,
  .process,
  .faq {
    padding: 68px 0;
  }

  .services {
    display: block;
    min-height: auto;
    padding: 96px 0 64px;
  }

  .services .section-heading {
    margin-bottom: 24px;
  }

  .services .section-heading h2 {
    font-size: 2.05rem;
    line-height: 1.06;
  }

  .services .section-heading .btn {
    width: 100%;
  }

  .premium-service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .solution-card {
    min-height: auto;
  }

  .solution-card::before {
    inset: auto -40% -42% auto;
    width: 170px;
    height: 170px;
  }

  .hero-panel div {
    padding: 20px;
  }

  .section-heading {
    display: grid;
  }

  .hero-panel,
  .fit-grid,
  .service-grid,
  .package-grid,
  .outcome-grid,
  .portfolio-grid,
  .timeline,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .package-card,
  .contact-form,
  .lab-card,
  .cta-panel,
  .product-panel {
    padding: 24px;
  }

  .services .service-card {
    padding: 20px;
  }

  .services .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .services .service-card h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
  }

  .services .service-card p,
  .services .service-card li {
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .services .service-card ul {
    margin-top: 18px;
    padding-top: 0;
  }

  .services .service-card li {
    margin: 8px 0;
  }

  .service-card,
  .package-card,
  .fit-grid article,
  .outcome-grid article,
  .timeline article {
    min-height: auto;
  }

  .solution-card ul {
    columns: 1;
  }

  .fit-grid article,
  .outcome-grid article {
    padding: 24px;
  }

  .fit-grid span {
    margin-bottom: 26px;
  }

  .outcome-grid strong {
    margin-bottom: 34px;
  }

  .booking-preview {
    padding: 24px;
  }

  .booking-preview > p {
    font-size: 1.55rem;
  }

  .booking-preview div {
    display: grid;
    gap: 8px;
  }

  .booking-preview b {
    text-align: left;
  }

  .portfolio {
    padding-top: 96px;
  }

  .portfolio-showcase-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 26px;
    padding: 20px;
    border-radius: 22px;
  }

  .portfolio-head-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .portfolio-showcase-head h2 {
    font-size: 1.55rem;
  }

  .portfolio-showcase-head p {
    font-size: 0.82rem;
  }

  .portfolio-showcase-head span {
    font-size: 0.9rem;
  }

  .portfolio-project,
  .portfolio-visual {
    min-height: 360px;
  }

  .portfolio-project::after {
    display: none;
  }

  .portfolio-brand {
    left: 16px;
    top: 16px;
    right: 16px;
    min-width: 0;
    padding: 10px 12px;
  }

  .portfolio-brand strong {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 12px;
  }

  .portfolio-brand p {
    font-size: 0.82rem;
  }

  .portfolio-visual span {
    left: 16px;
    right: auto;
    top: 84px;
    font-size: 0.64rem;
  }

  .portfolio-info {
    padding: 86px 20px 22px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-cards article {
    min-height: auto;
  }

  label {
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  input,
  textarea {
    min-height: 54px;
    padding: 0 16px;
    font-size: 16px;
  }

  textarea {
    min-height: 132px;
    padding-top: 15px;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }

  .faq-item p {
    grid-column: 1;
  }

  .footer-bottom {
    display: grid;
  }

  .whatsapp-float {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
    font-size: 0.82rem;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand {
    min-width: 96px;
  }

  .brand-logo {
    width: 96px;
  }

  h1 {
    font-size: 2.36rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-panel strong,
  .contact-cards strong {
    font-size: 1.78rem;
  }

  .proof-grid {
    gap: 18px;
  }

  .service-card,
  .package-card,
  .contact-form,
  .lab-card,
  .cta-panel,
  .product-panel,
  .fit-grid article,
  .outcome-grid article,
  .timeline article {
    padding: 20px;
  }

  .services .service-card {
    padding: 18px;
  }

  .services .service-card p,
  .services .service-card li {
    font-size: 0.93rem;
  }

  .portfolio-project,
  .portfolio-visual {
    min-height: 340px;
  }

  .portfolio-info p {
    font-size: 0.92rem;
  }

  .footer {
    padding-top: 48px;
  }
}

@media (hover: none) {
  .nav-cta:hover,
  .btn:hover,
  .fit-grid article:hover,
  .outcome-grid article:hover,
  .package-card:hover,
  .portfolio-grid article:hover,
  .timeline article:hover,
  .service-card:hover,
  .faq-item:hover,
  .whatsapp-float:hover {
    transform: none;
  }
}
