/* ==== Luis Tint Pro Luxury Theme ==== */

:root {
  --bg: #05070d;
  --bg-2: #0a0e1a;
  --panel: #0f1424;
  --panel-2: #131a2e;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --ink: #f4f6fb;
  --muted: #aab2c5;
  --dim: #6c7793;

  --red: #e41e2b;
  --red-2: #ff3a47;
  --blue: #1f6dff;
  --blue-2: #4ea0ff;
  --chrome: #c9d3e6;

  --grad: linear-gradient(135deg, #ff3a47 0%, #e41e2b 35%, #1f6dff 75%, #4ea0ff 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,58,71,.18), rgba(31,109,255,.18));

  --sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: 'Cinzel', 'Inter', serif;

  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;

  --shadow-1: 0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 60px -20px rgba(0,0,0,.6);
  --shadow-glow: 0 30px 80px -30px rgba(31,109,255,.55), 0 20px 60px -30px rgba(228,30,43,.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.wrap { width: min(1200px, 92vw); margin-inline: auto; }

/* ===== Topbar ===== */
.topbar {
  background: linear-gradient(180deg, #06080f, #0a0e1a);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.topbar__row {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 22px; padding: 9px 0;
}
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item:first-child { margin-right: auto; color: var(--chrome); }
.topbar__cta {
  background: var(--grad);
  color: #fff; font-weight: 700; padding: 6px 14px;
  border-radius: 999px; letter-spacing: .3px;
  box-shadow: 0 8px 24px -10px rgba(228,30,43,.6);
}
@media (max-width: 720px) {
  .topbar__row { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .topbar__item:first-child { margin-right: 0; flex-basis: 100%; justify-content: center; }
}

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(5,7,13,.72);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, border-color .3s ease;
}
.header.is-scrolled { background: rgba(5,7,13,.92); }
.header__row {
  display: flex; align-items: center; gap: 24px;
  padding: 10px 0;
}
.brand { display: flex; align-items: center; }
.brand__logo {
  height: 92px; width: auto;
  filter: drop-shadow(0 8px 22px rgba(31,109,255,.4)) drop-shadow(0 8px 22px rgba(228,30,43,.3));
  transition: transform .25s ease;
}
.brand:hover .brand__logo { transform: scale(1.04); }
@media (max-width: 900px) { .brand__logo { height: 72px; } }
@media (max-width: 480px) { .brand__logo { height: 60px; } }
.nav { margin-left: auto; display: flex; gap: 30px; }
.nav a {
  position: relative; font-weight: 500; font-size: 14.5px;
  color: var(--muted); letter-spacing: .3px;
  padding: 6px 0; transition: color .25s;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--grad); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.header__cta { padding: 10px 18px; font-size: 14px; }

.hamburger {
  display: none; width: 40px; height: 40px;
  position: relative; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: #fff;
  margin: 5px auto; border-radius: 2px; transition: all .3s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 18px 24px 24px;
  background: rgba(5,7,13,.96);
  border-top: 1px solid var(--line);
}
.mobile-nav a {
  padding: 12px 4px; font-size: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.mobile-nav .btn { margin-top: 12px; }
.mobile-nav.is-open { display: flex; }

@media (max-width: 900px) {
  .nav, .header__cta { display: none; }
  .hamburger { display: block; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; letter-spacing: .3px;
  padding: 12px 22px; border-radius: 999px;
  transition: transform .2s ease, box-shadow .25s ease, filter .25s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 14px 40px -14px rgba(228,30,43,.55), 0 14px 40px -14px rgba(31,109,255,.55);
}
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn--ghost {
  background: rgba(255,255,255,.04); color: var(--ink);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: clamp(620px, 95vh, 900px);
  display: flex; align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -3;
}
.hero__veil {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 600px at 80% 20%, rgba(31,109,255,.28), transparent 60%),
    radial-gradient(700px 500px at 10% 80%, rgba(228,30,43,.22), transparent 60%),
    linear-gradient(180deg, rgba(5,7,13,.72) 0%, rgba(5,7,13,.85) 50%, rgba(5,7,13,.95) 100%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: -1; opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.hero__inner { position: relative; padding: 120px 0 80px; max-width: 880px; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase; letter-spacing: .3em; font-size: 11.5px; font-weight: 700;
  color: var(--chrome);
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-2);
}
.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 1.04;
  margin: 22px 0 20px;
  letter-spacing: -.5px;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted); max-width: 640px; margin: 0 0 36px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; max-width: 720px;
}
.hero__stats > div {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 16px;
  backdrop-filter: blur(10px);
}
.hero__stats strong {
  display: block; font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 26px);
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__stats span {
  display: block; margin-top: 4px;
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .15em;
}
@media (max-width: 640px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.35);
  border-radius: 14px;
}
.hero__scroll span {
  display: block; width: 3px; height: 8px; background: #fff;
  border-radius: 2px; margin: 6px auto 0;
  animation: scroll-tick 1.6s ease-in-out infinite;
}
@keyframes scroll-tick {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ===== Marquee ===== */
.marquee {
  background: linear-gradient(180deg, #05070d, #0a0e1a);
  border-block: 1px solid var(--line);
  padding: 22px 0; overflow: hidden;
  contain: layout paint;
  transform: translateZ(0);
}
.marquee__track {
  display: flex; gap: 32px; white-space: nowrap;
  width: max-content;
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 24px);
  color: var(--chrome);
  text-transform: uppercase; letter-spacing: .15em;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.marquee__track span { opacity: .85; }
.marquee__track span:nth-child(odd) {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (max-width: 900px) {
  .marquee__track { gap: 26px; }
}
@media (max-width: 600px) {
  .marquee { padding: 16px 0; }
  .marquee__track {
    font-size: 15px;
    letter-spacing: .12em;
    gap: 18px;
  }
  /* Gradient text-clip is expensive on mobile (repaints per frame) */
  .marquee__track span:nth-child(odd) {
    background: none;
    -webkit-background-clip: initial; background-clip: initial;
    color: var(--blue-2);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ===== Sections ===== */
.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section--alt {
  background:
    radial-gradient(800px 500px at 90% 0%, rgba(31,109,255,.10), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(228,30,43,.08), transparent 60%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.section__head {
  text-align: center; max-width: 720px; margin: 0 auto 60px;
}
.h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: -.4px; line-height: 1.08;
  margin: 18px 0 16px;
}
.lede { color: var(--muted); font-size: clamp(15px, 1.4vw, 18px); margin: 0; }

/* ===== Services ===== */
.services {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
@media (max-width: 820px) { .services { grid-template-columns: 1fr; } }
.service {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.service::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-soft); opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.service:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow-glow); }
.service:hover::before { opacity: 1; }
.service__media {
  height: 260px; overflow: hidden; position: relative;
}
.service__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s ease;
}
.service:hover .service__media img { transform: scale(1.06); }
.service__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,20,36,.85) 100%);
}
.service__body { padding: 26px 28px 30px; position: relative; }
.service h3 {
  font-family: var(--display); font-size: 24px; font-weight: 600;
  margin: 0 0 12px; letter-spacing: -.2px;
}
.service p { color: var(--muted); margin: 0 0 16px; }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.ticks li {
  position: relative; padding-left: 26px;
  color: var(--ink); font-size: 14.5px;
}
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(31,109,255,.4);
}
.ticks li::after {
  content: ''; position: absolute; left: 4px; top: 11px;
  width: 6px; height: 3px; border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ===== Why Pillars ===== */
.why { display: grid; gap: 50px; }
.pillars {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px; margin-top: 36px;
}
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 26px;
  position: relative; overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--line-2); }
.pillar__num {
  font-family: var(--display); font-weight: 700;
  font-size: 56px; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .9; margin-bottom: 10px;
}
.pillar h4 {
  font-family: var(--display); font-size: 19px; font-weight: 600;
  margin: 0 0 8px;
}
.pillar p { color: var(--muted); margin: 0; font-size: 14.5px; }

/* ===== Featured video player ===== */
.videofeat__frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line-2);
  box-shadow:
    0 40px 100px -30px rgba(31,109,255,.55),
    0 30px 80px -30px rgba(228,30,43,.4),
    0 1px 0 rgba(255,255,255,.06) inset;
  isolation: isolate;
}
.videofeat__frame::before {
  content: ''; position: absolute; inset: -2px;
  background: var(--grad);
  z-index: -1; border-radius: calc(var(--r-lg) + 2px);
  opacity: .55; filter: blur(14px);
}
.videofeat__video {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  background: #000;
}
.videofeat__play {
  position: absolute; inset: 0; margin: auto;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 20px 60px -10px rgba(228,30,43,.6), 0 20px 60px -10px rgba(31,109,255,.6);
  transition: transform .25s ease, opacity .3s ease;
  z-index: 2;
}
.videofeat__play::before {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  animation: pulse-ring 2s ease-out infinite;
}
.videofeat__play svg { width: 38px; height: 38px; margin-left: 4px; }
.videofeat__play:hover { transform: scale(1.06); }
.videofeat__frame.is-playing .videofeat__play { opacity: 0; pointer-events: none; }
@keyframes pulse-ring {
  0% { transform: scale(.95); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.videofeat__corners span {
  position: absolute; width: 28px; height: 28px;
  border: 2px solid var(--chrome);
  pointer-events: none;
}
.videofeat__corners span:nth-child(1) { top: 14px; left: 14px;     border-right: 0; border-bottom: 0; }
.videofeat__corners span:nth-child(2) { top: 14px; right: 14px;    border-left: 0;  border-bottom: 0; }
.videofeat__corners span:nth-child(3) { bottom: 14px; left: 14px;  border-right: 0; border-top: 0; }
.videofeat__corners span:nth-child(4) { bottom: 14px; right: 14px; border-left: 0;  border-top: 0; }
.videofeat__frame.is-playing .videofeat__corners { opacity: 0; transition: opacity .3s ease; }

/* ===== Showcase video band ===== */
.showcase {
  position: relative; isolation: isolate;
  min-height: 540px; padding: 120px 0;
  display: flex; align-items: center;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.showcase__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.showcase__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(700px 400px at 50% 50%, rgba(228,30,43,.18), transparent 70%),
    linear-gradient(90deg, rgba(5,7,13,.85), rgba(5,7,13,.55) 50%, rgba(5,7,13,.85));
}
.showcase__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.showcase__inner .h2 { margin-bottom: 18px; }
.showcase__inner .btn { margin-top: 30px; }

/* ===== Team ===== */
.team {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 36px; width: 100%;
}
@media (max-width: 900px) { .team { grid-template-columns: 1fr; gap: 28px; } }
.team__card {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.team__card:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-glow);
}
.team__photo {
  overflow: hidden;
  background: var(--panel);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
}
.team__photo img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .8s ease;
}
.team__card:hover .team__photo img { transform: scale(1.03); }
.team__card figcaption {
  padding: 28px 32px 32px;
  text-align: center;
}
.team__card h4 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  margin: 0 0 8px; font-weight: 600; letter-spacing: -.3px;
}
.team__card span {
  display: block; color: var(--blue-2);
  font-size: 13px; text-transform: uppercase; letter-spacing: .25em; font-weight: 700;
}

/* ===== Reviews ===== */
.reviews {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }
.review {
  margin: 0; padding: 30px 28px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative; overflow: hidden;
}
.review::before {
  content: '"'; position: absolute; top: -28px; right: 16px;
  font-family: var(--display); font-size: 160px; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .14;
}
.stars {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; font-size: 18px; letter-spacing: 2px; margin-bottom: 12px;
}
.review p {
  font-family: var(--display); font-size: 17px; line-height: 1.55;
  color: var(--ink); margin: 0 0 16px; font-weight: 500;
}
.review cite {
  font-style: normal; color: var(--muted); font-size: 14px;
  text-transform: uppercase; letter-spacing: .1em;
}

/* ===== Contact ===== */
.contact {
  background:
    radial-gradient(700px 500px at 100% 0%, rgba(31,109,255,.10), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(228,30,43,.08), transparent 60%);
}
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; gap: 40px; } }
.contact__copy .h2 { text-align: left; margin-top: 18px; }
.contact__copy .lede { margin: 0 0 30px; }
.contact__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 18px;
}
.contact__list li {
  display: grid; grid-template-columns: 90px 1fr; align-items: start;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.contact__list strong {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--chrome); padding-top: 2px;
}
.contact__list a, .contact__list span { color: var(--ink); font-size: 16px; }
.contact__list a:hover { color: var(--blue-2); }

.form {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 32px 30px;
  box-shadow: var(--shadow-1);
}
.field { margin-bottom: 18px; display: block; }
.field label {
  display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .2em;
  color: var(--chrome); margin-bottom: 8px; font-weight: 600;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font: inherit; font-size: 15px;
  color: var(--ink);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  outline: none; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
/* ===== Luxury Custom Select ===== */
.lux-select { position: relative; }
.lux-select__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  font: inherit; font-size: 15px; text-align: left;
  color: var(--ink);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.lux-select__trigger:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.22); }
.lux-select__trigger:focus-visible { outline: none; }
.lux-select.is-open .lux-select__trigger,
.lux-select__trigger[aria-expanded="true"] {
  border-color: var(--blue);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 4px rgba(31,109,255,.18);
}
.lux-select__caret {
  width: 18px; height: 18px;
  color: var(--blue-2);
  transition: transform .25s ease;
  flex-shrink: 0; margin-left: 12px;
}
.lux-select.is-open .lux-select__caret { transform: rotate(180deg); }

.lux-select__menu {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  list-style: none; margin: 0; padding: 6px;
  background: linear-gradient(180deg, #131a2e, #0f1424);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,.7),
    0 14px 40px -14px rgba(31,109,255,.35),
    0 1px 0 rgba(255,255,255,.06) inset;
  z-index: 20;
  opacity: 0; transform: translateY(-8px) scale(.98);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  max-height: 280px; overflow-y: auto;
  backdrop-filter: blur(14px);
}
.lux-select.is-open .lux-select__menu {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.lux-select__menu::before {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(31,109,255,.06), transparent 40%);
}
.lux-select__menu li {
  position: relative;
  padding: 12px 16px 12px 38px;
  font-size: 15px; color: var(--ink);
  border-radius: 10px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, padding-left .2s ease;
}
.lux-select__menu li::before {
  content: ''; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.lux-select__menu li:hover {
  background: rgba(255,255,255,.05);
}
.lux-select__menu li:hover::before {
  background: var(--grad);
  box-shadow: 0 0 12px rgba(31,109,255,.5);
}
.lux-select__menu li.is-selected {
  background: linear-gradient(90deg, rgba(228,30,43,.12), rgba(31,109,255,.12));
  color: #fff;
}
.lux-select__menu li.is-selected::before {
  background: var(--grad);
  box-shadow: 0 0 12px rgba(228,30,43,.5), 0 0 12px rgba(31,109,255,.5);
  transform: translateY(-50%) scale(1.15);
}

/* scrollbar inside menu */
.lux-select__menu::-webkit-scrollbar { width: 8px; }
.lux-select__menu::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.12); border-radius: 4px;
}
.lux-select__menu::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.22); }
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 4px rgba(31,109,255,.18);
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .row { grid-template-columns: 1fr; } }
.form .btn { width: 100%; margin-top: 6px; }
.form__note {
  margin: 14px 0 0; padding: 12px 14px;
  background: rgba(31,109,255,.10);
  border: 1px solid rgba(31,109,255,.28);
  border-radius: var(--r);
  color: var(--blue-2); font-size: 14px; text-align: center;
}

/* ===== Footer ===== */
.footer {
  background: #04060b;
  border-top: 1px solid var(--line);
  padding: 70px 0 30px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo { height: 60px; width: auto; margin-bottom: 16px; }
.footer__brand p { color: var(--muted); font-size: 14.5px; max-width: 360px; }
.footer h5 {
  font-size: 12px; text-transform: uppercase; letter-spacing: .2em;
  color: var(--chrome); margin: 8px 0 18px;
}
.footer a {
  display: block; color: var(--muted); font-size: 14.5px;
  padding: 6px 0; transition: color .2s;
}
.footer a:hover { color: var(--ink); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 12px; margin-top: 50px; padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--dim); font-size: 13px;
}

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  /* Only kill heavy scroll-reveal & hover transforms.
     Leave ambient brand motion (marquee, video) alone — it's identity, not motion-sickness fuel. */
  .reveal { opacity: 1; transform: none; transition: none; }
  .service:hover,
  .pillar:hover,
  .team__card:hover,
  .brand:hover .brand__logo,
  .service:hover .service__media img,
  .team__card:hover .team__photo img { transform: none; }
}
