:root {
  --bg: #05070d;
  --bg-soft: #09111e;
  --panel: #0d1523;
  --panel-strong: #111d31;
  --surface: #f6f8fb;
  --surface-2: #e9eef5;
  --ink: #f7f9fc;
  --ink-dark: #101722;
  --muted: #aeb8c7;
  --muted-dark: #5f6b7b;
  --line: rgba(255, 255, 255, .13);
  --line-dark: rgba(16, 23, 34, .14);
  --blue: #2f80ff;
  --cyan: #00d4ff;
  --gold: #d6b46a;
  --green: #3ddc97;
  --danger: #ff6b6b;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --shadow-soft: 0 18px 46px rgba(9, 17, 32, .13);
  --container: min(1160px, calc(100vw - 40px));
  --wide: min(1320px, calc(100vw - 40px));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

img {
  height: auto;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(0, 212, 255, .7);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-140%);
  padding: .8rem 1rem;
  border-radius: var(--radius);
  background: var(--cyan);
  color: #04101d;
  font-weight: 850;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
  background:
    linear-gradient(180deg, #05070d 0%, #07111f 42%, #05070d 100%);
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .34), transparent 72%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 14px clamp(16px, 3vw, 40px);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5, 7, 13, .82), rgba(5, 7, 13, .26));
  backdrop-filter: blur(18px);
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: var(--line);
  background: rgba(5, 7, 13, .91);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo-real {
  display: block;
  width: 206px;
  height: 52px;
  flex: 0 0 206px;
  overflow: hidden;
  border-radius: var(--radius);
}

.brand-logo-real img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .32));
}

.footer-logo-real {
  width: 220px;
  height: 58px;
  flex-basis: 220px;
}

.footer-logo-real img {
  object-position: center;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 1.5vw, 1.45rem);
  color: rgba(245, 247, 250, .78);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: .65rem .12rem;
  transition: color .2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .34rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: transform .2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta,
.btn,
.pill-link,
.chip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .11em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.header-cta {
  padding: .82rem 1rem;
  color: #04101d;
  background: linear-gradient(135deg, #f8fbff 0%, #bfefff 46%, #6eb1ff 100%);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 12px 34px rgba(47, 128, 255, .20);
}

.header-cta:hover,
.btn:hover,
.pill-link:hover,
.chip-link:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  justify-self: end;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  color: var(--ink);
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.weblux-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(290px, .78fr) minmax(500px, 1.22fr);
  align-items: center;
  gap: clamp(10px, 3vw, 48px);
  overflow: hidden;
  padding: calc(var(--header-height) + 28px) clamp(16px, 4vw, 64px) clamp(26px, 4vw, 58px);
  background:
    linear-gradient(125deg, rgba(5, 7, 13, .96) 0%, rgba(7, 18, 34, .92) 47%, rgba(3, 5, 12, .98) 100%);
}

.weblux-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .38) 43%, transparent 76%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 90px);
  opacity: .9;
}

.weblux-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .44));
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: 100%;
  min-width: 0;
  max-width: 560px;
}

.hero-eyebrow,
.section-label,
.card-kicker,
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-eyebrow {
  width: max-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(0, 212, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .065);
  color: #d8faff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}

.hero-eyebrow::before,
.section-label::before,
.page-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.weblux-hero h1 {
  max-width: 650px;
  color: #fff;
  font-size: clamp(2.75rem, 5.6vw, 5.15rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .94;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.weblux-hero h1 span {
  display: block;
}

.weblux-hero p {
  max-width: min(470px, 100%);
  margin: 22px 0 26px;
  color: rgba(245, 247, 250, .79);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.55;
}

.hero-actions,
.action-row {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}

.btn {
  padding: .96rem 1.16rem;
  border: 1px solid transparent;
}

.btn-primary {
  color: #03111f;
  background: linear-gradient(135deg, #f8fbff 0%, #bfefff 42%, #2f80ff 100%);
  box-shadow: 0 16px 44px rgba(47, 128, 255, .25), inset 0 1px 0 rgba(255, 255, 255, .62);
}

.btn-glass,
.btn-secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, .17);
  background: rgba(255, 255, 255, .055);
}

.btn-glass:hover,
.btn-secondary:hover {
  border-color: rgba(0, 212, 255, .42);
  background: rgba(0, 212, 255, .08);
}

.btn-dark {
  color: var(--ink);
  background: #101722;
  border-color: rgba(16, 23, 34, .16);
}

.light-section .btn-secondary,
.page-section.light-section .btn-secondary {
  color: var(--ink-dark);
  border-color: rgba(16, 23, 34, .18);
  background: rgba(255, 255, 255, .62);
}

.hero-price {
  display: inline-flex;
  width: max-content;
  margin-top: 16px;
  padding: .55rem .72rem;
  border: 1px solid rgba(214, 180, 106, .28);
  border-radius: var(--radius);
  background: rgba(214, 180, 106, .10);
  color: rgba(255, 239, 196, .92);
  font-size: .86rem;
  font-weight: 850;
}

.hero-orbit-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
  min-height: min(790px, 86vh);
  display: grid;
  place-items: center;
  perspective: 1800px;
  contain: layout paint;
}

.hero-orbit-halo {
  position: absolute;
  width: min(650px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .10);
  opacity: .72;
  transform: rotateX(64deg);
  box-shadow:
    0 0 60px rgba(47, 128, 255, .18),
    inset 0 0 70px rgba(0, 212, 255, .08);
}

.hero-orbit-scene {
  position: relative;
  width: min(740px, 62vw);
  height: min(740px, 82vh);
  min-height: 610px;
  transform-style: preserve-3d;
}

.hero-orbit {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1.15s cubic-bezier(.18, .82, .18, 1);
  will-change: transform;
}

.hero-panel {
  --angle: 0deg;
  --radius: 390px;
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(228px, 18.7vw, 320px);
  height: clamp(405px, 33.2vw, 569px);
  margin-left: calc(clamp(228px, 18.7vw, 320px) / -2);
  margin-top: calc(clamp(405px, 33.2vw, 569px) / -2);
  overflow: hidden;
  border-radius: 28px;
  background: #07101f;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .62), 0 0 0 1px rgba(255, 255, 255, .18);
  transform: rotateY(var(--angle)) translateZ(var(--radius));
  transform-style: preserve-3d;
  transition: filter .7s ease, opacity .7s ease, box-shadow .7s ease;
  will-change: transform, opacity, filter;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel.active {
  opacity: 1;
  filter: saturate(1.08) contrast(1.03) brightness(1.03);
  box-shadow: 0 38px 110px rgba(0, 0, 0, .72), 0 0 0 1px rgba(255, 255, 255, .25), 0 0 58px rgba(47, 128, 255, .22);
}

.hero-panel:not(.active) {
  opacity: .43;
  filter: blur(1.2px) brightness(.52) saturate(.84);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, .12), transparent 22%, transparent 72%, rgba(0, 0, 0, .34));
}

.hero-floor-shadow {
  position: absolute;
  bottom: clamp(18px, 5vh, 68px);
  width: min(520px, 58vw);
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .82), transparent 72%);
  filter: blur(12px);
}

.hero-slide-tag {
  position: absolute;
  z-index: 6;
  right: clamp(18px, 4vw, 70px);
  bottom: clamp(66px, 7vw, 110px);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100vw - 36px);
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(4, 7, 17, .64);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .36);
}

.hero-slide-tag span {
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-slide-tag strong {
  overflow: hidden;
  color: #fff;
  font-size: .92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-dots {
  position: absolute;
  z-index: 6;
  left: clamp(24px, 5vw, 86px);
  bottom: clamp(28px, 4vw, 54px);
  display: flex;
  gap: 9px;
}

.hero-dot {
  width: 34px;
  height: 8px;
  min-height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .25);
  transition: width .3s ease, background .3s ease;
}

.hero-dot.active {
  width: 66px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.section,
.page-section {
  position: relative;
  padding: clamp(70px, 8vw, 118px) 0;
}

.section-shell,
.page-shell {
  width: var(--container);
  margin: 0 auto;
}

.wide-shell {
  width: var(--wide);
  margin: 0 auto;
}

.dark-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, 0)),
    var(--bg);
}

.light-section {
  color: var(--ink-dark);
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
}

.muted-section {
  color: var(--ink-dark);
  background: #eef3f8;
}

.section-heading,
.centered-head {
  margin-bottom: clamp(2rem, 4.5vw, 4rem);
}

.centered-head {
  text-align: center;
}

.centered-head .section-label {
  justify-content: center;
  color: var(--blue);
}

.centered-head .section-label::before {
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.section-heading h2,
.centered-head h2,
.split-block h2,
.contact-panel h2,
.cta-band h2 {
  margin-top: .9rem;
  max-width: 940px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.centered-head h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-heading p,
.centered-head p,
.split-block p,
.lead,
.page-hero p {
  max-width: 700px;
  margin-top: 1rem;
  color: inherit;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.65;
  opacity: .78;
}

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(2rem, 5vw, 4.8rem);
  align-items: start;
}

.text-stack {
  display: grid;
  gap: 1rem;
}

.text-stack p {
  color: var(--muted);
  line-height: 1.68;
}

.light-section .text-stack p,
.light-section .section-heading p,
.light-section .centered-head p {
  color: var(--muted-dark);
}

.mini-stats,
.trust-grid,
.service-preview-grid,
.plan-grid,
.portfolio-grid,
.service-grid,
.feature-grid,
.values-grid,
.process-grid,
.faq-grid,
.contact-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.mini-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.stat-item {
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
}

.stat-item strong {
  display: block;
  color: var(--cyan);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: .45rem;
  color: rgba(245, 247, 250, .72);
  font-size: .86rem;
  line-height: 1.35;
}

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

.plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

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

.service-card,
.plan-card,
.trust-card,
.project-card,
.feature-card,
.value-card,
.faq-card,
.process-step,
.contact-card,
.notice-card {
  border-radius: var(--radius);
}

.service-card,
.trust-card,
.feature-card,
.value-card,
.process-step,
.notice-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .026));
  box-shadow: var(--shadow);
}

.light-section .service-card,
.light-section .feature-card,
.light-section .value-card,
.light-section .process-step,
.light-section .notice-card {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.service-card img,
.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  object-fit: cover;
  background: #101722;
}

.service-card h3,
.plan-card h3,
.trust-card h3,
.project-card h3,
.feature-card h3,
.value-card h3,
.faq-card h3,
.process-step h3,
.notice-card h3,
.contact-card h3 {
  margin-top: .75rem;
  color: inherit;
  font-size: clamp(1.08rem, 1.65vw, 1.42rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card p,
.plan-card p,
.trust-card p,
.project-card p,
.feature-card p,
.value-card p,
.faq-card p,
.process-step p,
.notice-card p,
.contact-card p {
  margin-top: .78rem;
  color: var(--muted);
  line-height: 1.58;
}

.light-section .service-card p,
.light-section .plan-card p,
.light-section .feature-card p,
.light-section .value-card p,
.light-section .faq-card p,
.light-section .process-step p,
.light-section .notice-card p,
.light-section .contact-card p,
.muted-section .plan-card p,
.muted-section .project-card p {
  color: var(--muted-dark);
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, .78);
  color: var(--ink-dark);
  box-shadow: var(--shadow-soft);
}

.plan-card.featured {
  color: var(--ink);
  border-color: rgba(0, 212, 255, .34);
  background: linear-gradient(155deg, #0b1422 0%, #101d31 58%, #07101c 100%);
}

.plan-card.featured p,
.plan-card.featured li {
  color: rgba(245, 247, 250, .78);
}

.price {
  margin: 1rem 0 .7rem;
  color: #125ed1;
  font-size: clamp(1.15rem, 2vw, 1.58rem);
  font-weight: 950;
  line-height: 1.08;
}

.featured .price {
  color: var(--cyan);
}

.plan-card ul,
.check-list {
  display: grid;
  gap: .58rem;
  margin: 1rem 0 1.35rem;
  list-style: none;
}

.plan-card ul {
  flex: 1;
}

.plan-card li,
.check-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #3e4a59;
  line-height: 1.48;
}

.plan-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.featured li::before {
  background: var(--gold);
}

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

.trust-card {
  min-height: 100%;
}

.trust-card .number {
  display: inline-flex;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .16em;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, .78);
  color: var(--ink-dark);
  box-shadow: var(--shadow-soft);
}

.project-card.dark {
  color: var(--ink);
  border-color: var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .026));
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  background: #101722;
}

.project-card.wide img {
  aspect-ratio: 16 / 10;
}

.project-info {
  padding: 1.1rem;
}

.project-info .card-kicker {
  color: var(--blue);
}

.dark .project-info .card-kicker {
  color: var(--cyan);
}

.pill-link,
.chip-link {
  width: max-content;
  max-width: 100%;
  margin-top: 1.1rem;
  padding: .82rem .98rem;
  color: inherit;
  border: 1px solid currentColor;
  background: transparent;
}

.cta-band {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(1.6rem, 4.4vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 128, 255, .15), transparent 46%),
    linear-gradient(315deg, rgba(214, 180, 106, .13), transparent 38%),
    rgba(255, 255, 255, .048);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-band h2 {
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  width: min(680px, 100%);
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.65;
}

.cta-band .action-row {
  justify-content: center;
  margin-top: 1.4rem;
}

.page-hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--header-height) + 72px) 0 clamp(56px, 7vw, 96px);
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(5, 7, 13, .98) 0%, rgba(9, 20, 36, .94) 52%, rgba(5, 7, 13, .98) 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: .48;
}

.page-hero-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, .98fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.page-hero h1 {
  max-width: 760px;
  margin-top: .9rem;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  font-weight: 950;
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.page-hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101722;
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1rem;
  color: rgba(245, 247, 250, .62);
  font-size: .82rem;
}

.breadcrumbs a {
  color: rgba(245, 247, 250, .82);
}

.breadcrumbs span::before {
  content: "/";
  margin-right: .4rem;
  color: rgba(245, 247, 250, .36);
}

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

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

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

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

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

.faq-card,
.contact-card {
  padding: 1.25rem;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, .76);
  color: var(--ink-dark);
  box-shadow: var(--shadow-soft);
}

.notice-card {
  border-color: rgba(214, 180, 106, .24);
}

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

.gallery-item {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, 1.05fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .026));
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: top center;
  background: #101722;
}

.gallery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(.6rem, 2vw, 1.2rem);
}

.gallery-copy h2,
.gallery-copy h3 {
  margin-top: .7rem;
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.gallery-copy p {
  margin-top: .75rem;
  color: var(--muted);
  line-height: 1.62;
}

.contact-grid {
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  align-items: start;
}

.contact-panel {
  padding: clamp(1.35rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .028));
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.contact-list {
  display: grid;
  gap: .85rem;
  margin-top: 1.5rem;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
  color: rgba(245, 247, 250, .88);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.8rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  color: var(--ink-dark);
  box-shadow: var(--shadow-soft);
}

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

.field {
  display: grid;
  gap: .45rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #263242;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 23, 34, .18);
  border-radius: var(--radius);
  padding: .8rem .9rem;
  background: #fff;
  color: var(--ink-dark);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  color: var(--muted-dark);
  font-size: .92rem;
  line-height: 1.48;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-soft);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--ink-dark);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: rgba(47, 128, 255, .08);
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 88;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #04140a;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .32);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem clamp(16px, 3vw, 40px);
  border-top: 1px solid var(--line);
  background: #05070d;
  color: var(--muted);
}

.site-footer p {
  text-align: center;
  line-height: 1.45;
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  color: rgba(170, 180, 195, .82);
  font-size: .9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
}

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

.weblux-hero .hero-copy.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .service-preview-grid,
  .plan-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 1080px) {
  :root {
    --container: min(100vw - 32px, 920px);
    --wide: min(100vw - 32px, 980px);
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    left: 16px;
    right: 16px;
    z-index: 89;
    display: grid;
    gap: 0;
    justify-self: auto;
    padding: .55rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 7, 13, .96);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .34);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

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

  .weblux-hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding: calc(var(--header-height) + 24px) 18px 22px;
  }

  .hero-copy {
    max-width: 760px;
    justify-self: center;
    text-align: center;
  }

  .hero-eyebrow,
  .hero-actions,
  .hero-price {
    margin-left: auto;
    margin-right: auto;
  }

  .weblux-hero h1 {
    font-size: clamp(2.55rem, 8vw, 4.5rem);
  }

  .weblux-hero p {
    margin: 18px auto 18px;
    max-width: 620px;
  }

  .hero-orbit-wrap {
    min-height: 610px;
    margin-top: -8px;
  }

  .hero-orbit-scene {
    width: 100%;
    height: 585px;
    min-height: 585px;
  }

  .hero-slide-tag {
    right: 50%;
    bottom: 74px;
    transform: translateX(50%);
  }

  .hero-dots {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .page-hero-media img {
    min-height: 270px;
  }

  .service-grid,
  .feature-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    justify-self: center;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100vw - 28px);
    --wide: calc(100vw - 28px);
    --header-height: 70px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-logo-real {
    width: 156px;
    height: 42px;
    flex-basis: 156px;
  }

  .footer-logo-real {
    width: 188px;
    height: 48px;
    flex-basis: 188px;
  }

  .weblux-hero {
    padding: calc(var(--header-height) + 16px) 12px 16px;
  }

  .hero-copy {
    width: min(100%, 360px);
    max-width: 360px;
    justify-self: start;
  }

  .hero-eyebrow {
    margin-bottom: 12px;
    font-size: .62rem;
  }

  .weblux-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.35rem);
    line-height: 1.04;
    width: 100%;
    max-width: 360px;
    text-wrap: initial;
  }

  .weblux-hero p {
    max-width: 100%;
    width: 100%;
    overflow-wrap: break-word;
    font-size: .94rem;
    line-height: 1.48;
    margin: 14px auto;
  }

  .hero-actions,
  .action-row {
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .btn,
  .action-row .btn,
  .contact-form .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-price {
    width: 100%;
    justify-content: center;
  }

  .hero-orbit-wrap {
    min-height: 506px;
    margin-top: -8px;
  }

  .hero-orbit-scene {
    width: 100%;
    height: 494px;
    min-height: 494px;
  }

  .hero-panel {
    width: 200px;
    height: 356px;
    margin-left: -100px;
    margin-top: -178px;
    border-radius: 23px;
  }

  .hero-orbit-halo {
    width: 500px;
  }

  .hero-slide-tag {
    bottom: 54px;
    padding: 10px 12px;
    gap: 9px;
  }

  .hero-slide-tag span {
    font-size: .62rem;
  }

  .hero-slide-tag strong {
    font-size: .82rem;
  }

  .hero-dots {
    bottom: 20px;
  }

  .hero-dot {
    width: 28px;
  }

  .hero-dot.active {
    width: 48px;
  }

  .section,
  .page-section {
    padding: clamp(58px, 13vw, 78px) 0;
  }

  .page-hero {
    padding: calc(var(--header-height) + 48px) 0 52px;
  }

  .page-hero h1,
  .section-heading h2,
  .centered-head h2,
  .split-block h2,
  .contact-panel h2,
  .cta-band h2 {
    font-size: clamp(1.95rem, 10.4vw, 3.1rem);
    line-height: 1.02;
  }

  .service-preview-grid,
  .plan-grid,
  .portfolio-grid,
  .service-grid,
  .feature-grid,
  .trust-grid,
  .values-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    min-height: 240px;
  }

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

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 12px;
    min-height: 48px;
  }

  .site-footer {
    padding-bottom: 78px;
  }
}

@media (max-width: 420px) {
  .hero-copy,
  .weblux-hero h1 {
    max-width: 330px;
  }

  .hero-eyebrow,
  .section-label,
  .card-kicker,
  .page-kicker {
    font-size: .64rem;
    letter-spacing: .13em;
  }

  .hero-eyebrow::before,
  .section-label::before,
  .page-kicker::before {
    width: 18px;
  }

  .service-card,
  .plan-card,
  .trust-card,
  .feature-card,
  .value-card,
  .faq-card,
  .process-step,
  .notice-card,
  .contact-card {
    padding: 1rem;
  }

  .project-info {
    padding: 1rem;
  }
}

@media (orientation: landscape) and (max-height: 560px) {
  :root {
    --header-height: 62px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 8px 14px;
  }

  .brand-logo-real {
    width: 148px;
    height: 38px;
    flex-basis: 148px;
  }

  .weblux-hero {
    min-height: 640px;
  }
}

@media (min-width: 1600px) {
  :root {
    --container: 1280px;
    --wide: 1440px;
  }
}

/* Ajuste final: banner 3D con animación luminosa del diseño preferido */
.weblux-hero {
  min-height: 100svh;
  background:
    radial-gradient(circle at 76% 48%, rgba(47, 128, 255, .22), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(115, 92, 255, .26), transparent 25%),
    radial-gradient(circle at 12% 82%, rgba(0, 212, 255, .12), transparent 28%),
    linear-gradient(135deg, #03050c 0%, #071222 46%, #02030a 100%);
}

.weblux-hero::before {
  z-index: -6;
  background: linear-gradient(100deg, rgba(0, 0, 0, .66) 0%, rgba(0, 0, 0, .34) 40%, transparent 74%);
}

.hero-bg {
  position: absolute;
  z-index: -5;
  border-radius: 999px;
  filter: blur(58px);
  opacity: .58;
  pointer-events: none;
  will-change: transform;
}

.hero-bg-one {
  width: 440px;
  height: 440px;
  right: 4%;
  top: 5%;
  background: rgba(47, 128, 255, .42);
  animation: heroDriftOne 14s ease-in-out infinite alternate;
}

.hero-bg-two {
  width: 520px;
  height: 520px;
  right: 24%;
  bottom: -22%;
  background: rgba(115, 92, 255, .28);
  animation: heroDriftTwo 16s ease-in-out infinite alternate;
}

.hero-grid-light {
  position: absolute;
  inset: -40px;
  z-index: -4;
  opacity: .17;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 68% 48%, #000, transparent 76%);
}

.hero-eyebrow {
  color: #d8faff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(0, 212, 255, .22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}

.hero-eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(0, 212, 255, .75);
}

.hero-orbit-halo {
  width: min(690px, 74vw);
  border: 0;
  background:
    radial-gradient(circle, rgba(47, 128, 255, .18), transparent 58%),
    conic-gradient(from 130deg, transparent, rgba(115, 92, 255, .48), transparent, rgba(0, 212, 255, .32), transparent);
  filter: blur(10px);
  opacity: .95;
  box-shadow: none;
  animation: heroSpinGlow 18s linear infinite;
  will-change: transform;
}

.hero-panel {
  border-radius: 30px;
}

.page-hero {
  background:
    radial-gradient(circle at 18% 12%, rgba(47, 128, 255, .18), transparent 32rem),
    radial-gradient(circle at 88% 6%, rgba(115, 92, 255, .16), transparent 28rem),
    linear-gradient(180deg, #04070f 0%, #07101a 100%);
}

.page-hero-media {
  position: relative;
  min-height: 320px;
  border-color: rgba(255, 255, 255, .16);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .34);
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, .34), transparent 34%, transparent 70%, rgba(5, 7, 13, .20)),
    linear-gradient(180deg, transparent 58%, rgba(5, 7, 13, .42));
}

.page-hero-media img {
  min-height: 320px;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}

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

@keyframes heroDriftOne {
  to { transform: translate(-70px, 40px) scale(1.08); }
}

@keyframes heroDriftTwo {
  to { transform: translate(54px, -36px) scale(.94); }
}

@media (max-width: 1080px) {
  .weblux-hero {
    min-height: auto;
  }

  .hero-orbit-wrap {
    min-height: 600px;
    margin-top: -10px;
  }

  .hero-orbit-scene {
    height: 580px;
    min-height: 580px;
  }
}

@media (max-width: 720px) {
  .weblux-hero {
    padding: calc(var(--header-height) + 16px) 12px 16px;
  }

  .hero-copy {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    justify-self: center;
  }

  .weblux-hero h1 {
    max-width: 360px;
    font-size: clamp(2rem, 8.8vw, 2.55rem);
    line-height: 1.04;
  }

  .weblux-hero p {
    max-width: 330px;
    font-size: .94rem;
  }

  .hero-actions {
    max-width: 280px;
  }

  .hero-price {
    max-width: 280px;
  }

  .hero-orbit-wrap {
    min-height: 500px;
    margin-top: -4px;
  }

  .hero-orbit-scene {
    height: 488px;
    min-height: 488px;
  }

  .hero-panel {
    width: 196px;
    height: 348px;
    margin-left: -98px;
    margin-top: -174px;
    border-radius: 24px;
  }

  .hero-orbit-halo {
    width: 520px;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 230px;
  }
}

@media (max-width: 420px) {
  .hero-copy,
  .weblux-hero h1 {
    max-width: 340px;
  }

  .hero-panel {
    width: 188px;
    height: 334px;
    margin-left: -94px;
    margin-top: -167px;
  }

  .hero-orbit-scene {
    height: 470px;
    min-height: 470px;
  }
}

/* Ajuste solicitado: hero 3D con animación estilo carrusel circular (4 paneles a 90°) */
.weblux-hero {
  grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(14px, 2.4vw, 38px);
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: clamp(22px, 3vw, 42px);
}

.hero-copy {
  max-width: 520px;
}

.weblux-hero h1 {
  max-width: 540px;
  font-size: clamp(2.75rem, 4.7vw, 4.7rem);
  line-height: 1;
}

.weblux-hero p {
  max-width: 430px;
  margin: 18px 0 20px;
}

.hero-actions {
  width: max-content;
  max-width: 100%;
}

.hero-orbit-wrap {
  min-height: clamp(560px, 76vh, 720px);
  overflow: visible;
  perspective: 1600px;
}

.hero-orbit-scene {
  width: min(620px, 100%);
  height: clamp(560px, 70vh, 660px);
  min-height: 0;
  overflow: visible;
}

.hero-orbit {
  transition: transform 1.05s cubic-bezier(.2, .78, .2, 1);
}

/* Paneles estilo carrusel preferido: más anchos, llenos, con cover */
.hero-panel {
  width: clamp(220px, 17vw, 260px);
  height: clamp(395px, 30vw, 465px);
  margin-left: calc(clamp(220px, 17vw, 260px) / -2);
  margin-top: calc(clamp(395px, 30vw, 465px) / -2);
  border-radius: 26px;
  transition: filter .55s ease, opacity .55s ease, box-shadow .55s ease;
}

.hero-panel img {
  object-fit: cover;
  object-position: center;
  background: #07101f;
}

.hero-panel.active {
  opacity: 1;
  filter: saturate(1.12) contrast(1.05);
  box-shadow: 0 38px 110px rgba(0, 0, 0, .72), 0 0 0 1px rgba(255, 255, 255, .22), 0 0 58px rgba(47, 128, 255, .22);
}

.hero-panel:not(.active) {
  opacity: .52;
  filter: blur(1.3px) brightness(.58) saturate(.82);
}

body.hero-in-view .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.hero-orbit-halo {
  width: min(620px, 68vw);
}

.hero-floor-shadow {
  bottom: clamp(12px, 4vh, 44px);
  width: min(420px, 56vw);
}

.hero-slide-tag {
  right: clamp(18px, 3.2vw, 54px);
  bottom: clamp(56px, 6vw, 90px);
}

.hero-dots {
  bottom: clamp(22px, 3vw, 42px);
}

.page-hero.page-hero-banner {
  min-height: clamp(430px, 56vh, 640px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 70px) 0 clamp(46px, 7vw, 86px);
  background: #05070d;
}

.page-hero.page-hero-banner::before {
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .22;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55), transparent 82%);
}

.page-hero.page-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 7, 15, .92) 0%, rgba(4, 7, 15, .70) 42%, rgba(4, 7, 15, .28) 74%, rgba(4, 7, 15, .55) 100%),
    linear-gradient(180deg, rgba(4, 7, 15, .28) 0%, rgba(4, 7, 15, .20) 42%, rgba(4, 7, 15, .92) 100%);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  max-width: 860px;
  margin: 0 auto;
}

.page-hero-content.reveal {
  opacity: 1;
  transform: none;
}

.page-hero-content h1 {
  max-width: 820px;
  margin-top: .9rem;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.55rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.page-hero-content p {
  max-width: 650px;
  margin-top: 1rem;
  color: rgba(245, 247, 250, .82);
  font-size: clamp(1rem, 1.24vw, 1.14rem);
  line-height: 1.62;
}

.page-hero-content .action-row {
  margin-top: 1.35rem;
}

@media (max-width: 1280px) {
  .weblux-hero {
    grid-template-columns: minmax(270px, .74fr) minmax(460px, 1.26fr);
  }

  .hero-orbit-scene {
    width: min(580px, 100%);
  }
}

@media (max-width: 1080px) {
  .weblux-hero {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 100svh;
    gap: 2px;
  }

  .hero-copy {
    max-width: 620px;
    justify-self: center;
    text-align: center;
  }

  .weblux-hero h1,
  .weblux-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .weblux-hero h1 {
    font-size: clamp(2.45rem, 7vw, 3.7rem);
  }

  .hero-actions {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-orbit-wrap {
    min-height: clamp(520px, 60vh, 620px);
    margin-top: -4px;
  }

  .hero-orbit-scene {
    width: min(620px, 100%);
    height: clamp(520px, 60vh, 620px);
  }

  .hero-panel {
    width: 215px;
    height: 385px;
    margin-left: -107.5px;
    margin-top: -192.5px;
  }

  .hero-slide-tag {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 720px) {
  .weblux-hero {
    min-height: 100svh;
    padding: calc(var(--header-height) + 12px) 12px 12px;
    gap: 0;
  }

  .hero-copy {
    max-width: 350px;
  }

  .hero-eyebrow {
    margin-bottom: 10px;
    padding: 8px 12px;
  }

  .weblux-hero h1 {
    max-width: 320px;
    font-size: clamp(1.9rem, 8.2vw, 2.28rem);
    line-height: 1.04;
  }

  .weblux-hero p {
    max-width: 270px;
    margin: 10px auto 12px;
    font-size: .9rem;
    line-height: 1.42;
  }

  .hero-actions {
    width: min(100%, 270px);
  }

  .hero-actions .btn {
    min-height: 46px;
  }

  .hero-price {
    width: min(100%, 270px);
    margin-top: 9px;
  }

  .hero-orbit-wrap {
    min-height: 470px;
    margin-top: 8px;
  }

  .hero-orbit-scene {
    width: 100%;
    height: 460px;
    min-height: 460px;
  }

  .hero-panel {
    width: 195px;
    height: 350px;
    margin-left: -97.5px;
    margin-top: -175px;
    border-radius: 22px;
  }

  .hero-orbit-halo {
    width: 430px;
  }

  .hero-floor-shadow {
    width: 280px;
    height: 42px;
    bottom: 18px;
  }

  .hero-slide-tag {
    display: none;
  }

  .hero-dots {
    bottom: 12px;
  }

  .page-hero.page-hero-banner {
    min-height: 430px;
    padding: calc(var(--header-height) + 46px) 0 44px;
  }

  .page-hero.page-hero-banner::after {
    background:
      linear-gradient(180deg, rgba(4, 7, 15, .62) 0%, rgba(4, 7, 15, .62) 44%, rgba(4, 7, 15, .94) 100%),
      linear-gradient(90deg, rgba(4, 7, 15, .78), rgba(4, 7, 15, .52));
  }

  .page-hero-bg {
    object-position: center top;
  }

  .page-hero-content h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.03;
  }

  .page-hero-content {
    width: min(calc(100vw - 28px), 360px);
    margin-left: 14px;
    margin-right: auto;
  }

  .page-hero-content p {
    max-width: 100%;
    font-size: .98rem;
  }

  .page-hero-content .action-row {
    align-items: stretch;
    width: min(100%, 310px);
  }
}

@media (max-width: 390px) {
  .hero-copy {
    max-width: 326px;
  }

  .weblux-hero h1 {
    max-width: 300px;
    font-size: clamp(1.86rem, 8.5vw, 2.1rem);
  }

  .weblux-hero p {
    max-width: 300px;
    font-size: .88rem;
  }

  .hero-panel {
    width: 175px;
    height: 315px;
    margin-left: -87.5px;
    margin-top: -157.5px;
  }

  .hero-orbit-wrap,
  .hero-orbit-scene {
    min-height: 430px;
    height: 430px;
  }
}

@media (orientation: landscape) and (max-height: 620px) {
  .weblux-hero {
    min-height: 650px;
    grid-template-columns: minmax(260px, .82fr) minmax(420px, 1.18fr);
    align-items: center;
  }

  .hero-orbit-wrap {
    min-height: 520px;
  }

  .hero-orbit-scene {
    height: 520px;
  }

  .hero-panel {
    width: 200px;
    height: 360px;
    margin-left: -100px;
    margin-top: -180px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .hero-bg,
  .hero-orbit-halo {
    animation: none !important;
  }
}
