:root {
  --bg: #070707;
  --bg-soft: #101010;
  --bg-elevated: rgba(18, 18, 18, 0.78);
  --panel: rgba(20, 20, 20, 0.8);
  --panel-strong: #151515;
  --text: #f6f3eb;
  --muted: #bdb7aa;
  --line: rgba(255, 215, 0, 0.14);
  --line-strong: rgba(255, 215, 0, 0.24);
  --gold: #ffd400;
  --gold-deep: #d8aa00;
  --gold-soft: rgba(255, 212, 0, 0.14);
  --white-soft: rgba(255, 255, 255, 0.06);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100vw - 32px));
  --ease: cubic-bezier(.2,.8,.2,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 212, 0, 0.12), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(255, 212, 0, 0.08), transparent 24%),
    linear-gradient(180deg, #050505 0%, #080808 28%, #0a0a0a 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.22;
  z-index: -2;
}

body::before {
  left: -16rem;
  top: 8rem;
  background: rgba(255, 212, 0, 0.18);
  animation: glowFloat 14s ease-in-out infinite;
}

body::after {
  right: -16rem;
  top: 20rem;
  background: rgba(120, 120, 120, 0.18);
  animation: glowFloat 18s ease-in-out infinite reverse;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(255, 212, 0, 0.28);
  color: #fff;
}

.site-shell {
  position: relative;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 20%, black 24%, transparent 76%);
  opacity: 0.4;
  pointer-events: none;
  z-index: -3;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.12) 0%, rgba(255, 212, 0, 0.08) 22%, transparent 70%);
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  z-index: -1;
  opacity: 0.9;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), #fff1a6, var(--gold));
  box-shadow: 0 0 24px rgba(255, 212, 0, 0.55);
  z-index: 100;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 7, 0.72);
  border-bottom: 1px solid rgba(255, 212, 0, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(255, 212, 0, 0.08));
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 212, 0, 0.22), rgba(255, 212, 0, 0.06));
  border: 1px solid rgba(255, 212, 0, 0.25);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  position: relative;
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  transition: color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

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

.cta-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe14f, var(--gold));
  color: #0c0c0c;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(255, 212, 0, 0.18);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.cta-mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(255, 212, 0, 0.24);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: white;
}

.mobile-menu {
  display: none;
  padding-bottom: 18px;
}

.mobile-menu-panel {
  border: 1px solid rgba(255, 212, 0, 0.12);
  background: rgba(15,15,15,0.92);
  border-radius: 24px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  color: rgba(255,255,255,0.82);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: rgba(255,255,255,0.05);
  color: white;
}

.hero {
  position: relative;
  padding: 88px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 32px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 212, 0, 0.08);
  border: 1px solid rgba(255, 212, 0, 0.18);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: none;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

.hero h1,
.page-hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .95;
  letter-spacing: -0.06em;
}

.hero h1 span,
.page-hero h1 span {
  display: block;
  color: var(--gold);
}

.hero p,
.page-hero p,
.lead {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.8;
  max-width: 62ch;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button,
.button-secondary,
.button-dark,
.button-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}

.button::before,
.button-secondary::before,
.button-dark::before,
.button-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.38) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform .85s var(--ease);
}

.button:hover::before,
.button-secondary:hover::before,
.button-dark:hover::before,
.button-ghost:hover::before {
  transform: translateX(130%);
}

.button {
  background: linear-gradient(135deg, #ffe14f 0%, var(--gold) 100%);
  color: #090909;
  box-shadow: 0 18px 40px rgba(255, 212, 0, 0.2);
}

.button:hover,
.button-secondary:hover,
.button-dark:hover,
.button-ghost:hover {
  transform: translateY(-3px);
}

.button-secondary {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  color: white;
}

.button-dark {
  background: #0d0d0d;
  border-color: rgba(255,255,255,0.08);
  color: var(--gold);
}

.button-ghost {
  background: rgba(255, 212, 0, 0.06);
  border-color: rgba(255, 212, 0, 0.18);
  color: white;
}

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

.orbit-scene {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
}

.orbit-ring,
.orbit-ring::after,
.orbit-ring::before {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring {
  width: 88%;
  height: 88%;
  border: 1px solid rgba(255,255,255,0.08);
  animation: spin 24s linear infinite;
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  border: 1px dashed rgba(255, 212, 0, 0.16);
}

.orbit-ring::before {
  width: 74%;
  height: 74%;
}

.orbit-ring::after {
  width: 108%;
  height: 108%;
}

.centerpiece {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  aspect-ratio: 1 / 1;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 212, 0, 0.24), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.centerpiece::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 28px;
  border: 1px solid rgba(255, 212, 0, 0.12);
}

.centerpiece img {
  width: 88%;
  max-width: 380px;
  animation: drift 6s ease-in-out infinite;
}

.floating-chip {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255, 212, 0, 0.18);
  color: white;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
  animation: bob 5s ease-in-out infinite;
}

.floating-chip strong {
  color: var(--gold);
}

.chip-a { top: 5%; left: 1%; animation-delay: .2s; }
.chip-b { top: 16%; right: -1%; animation-delay: 1.1s; }
.chip-c { bottom: 20%; left: -2%; animation-delay: 1.8s; }
.chip-d { bottom: 4%; right: 10%; animation-delay: .7s; }
.chip-e { top: 44%; right: -8%; animation-delay: 2.3s; }
.chip-f { top: 52%; left: -10%; animation-delay: 1.5s; }

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

.meta-card,
.stat-card,
.info-card,
.service-card,
.feature-card,
.gallery-card,
.contact-card,
.location-card,
.form-card,
.cta-panel,
.premium-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.meta-card {
  padding: 18px 18px 20px;
  min-height: 122px;
}

.meta-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.meta-card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.5;
}

.meta-card::after,
.service-card::after,
.gallery-card::after,
.cta-panel::after,
.contact-card::after,
.location-card::after,
.form-card::after,
.premium-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 212, 0, 0.12), transparent 42%, transparent 60%, rgba(255,255,255,0.05));
  opacity: .9;
  pointer-events: none;
}

.section {
  padding: 44px 0 16px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-copy {
  max-width: 42rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

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

.service-card {
  padding: 26px;
  min-height: 240px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-4deg);
  border-color: rgba(255, 212, 0, 0.32);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 212, 0, 0.08) inset;
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #090909;
  background: linear-gradient(135deg, #ffe35b, var(--gold));
  box-shadow: 0 16px 30px rgba(255, 212, 0, 0.2);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.service-card h3,
.feature-card h3,
.gallery-card h3,
.contact-card h3,
.location-card h3,
.form-card h3,
.cta-panel h3,
.premium-panel h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.service-card p,
.feature-card p,
.gallery-card p,
.contact-card p,
.location-card p,
.form-card p,
.cta-panel p,
.premium-panel p,
.service-card li,
.feature-card li,
.location-card li {
  color: rgba(255,255,255,0.74);
  line-height: 1.8;
}

.ticker {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 212, 0, 0.12);
  margin: 28px 0 12px;
  background: rgba(255,255,255,0.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 16px 0;
  animation: marquee 24s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  margin-right: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.ticker-item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
}

.feature-card,
.contact-card,
.location-card,
.form-card,
.cta-panel,
.premium-panel {
  padding: 28px;
}

.feature-list,
.inline-list,
.location-list,
.quick-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.inline-list li,
.location-list li,
.quick-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.feature-list li::before,
.inline-list li::before,
.location-list li::before,
.quick-list li::before {
  content: "";
  flex: 0 0 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: .55rem;
  background: radial-gradient(circle, #ffe26a 0%, var(--gold) 68%, #8e7300 100%);
  box-shadow: 0 0 18px rgba(255, 212, 0, 0.35);
}

.gallery-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  min-height: 280px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    radial-gradient(circle at top right, rgba(255, 212, 0, 0.16), transparent 34%);
}

.gallery-card:hover {
  transform: translateY(-8px) rotateX(3deg) rotateY(-3deg);
  border-color: rgba(255, 212, 0, 0.28);
}

.gallery-card .service-index {
  font-size: .9rem;
  color: var(--gold);
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 800;
}

.gallery-visual {
  position: relative;
  min-height: 140px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 18%),
    radial-gradient(circle at 70% 70%, rgba(255, 212, 0, 0.34), transparent 24%),
    linear-gradient(140deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  overflow: hidden;
}

.gallery-visual::before,
.gallery-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.gallery-visual::before {
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  left: 15%;
  top: 40%;
  animation: pulseLine 4s ease-in-out infinite;
}

.gallery-visual::after {
  inset: 18px;
  border: 1px dashed rgba(255, 212, 0, 0.22);
  animation: spin 18s linear infinite reverse;
}

.brand-wall {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 212, 0, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.brand-wall::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 0deg, rgba(255,212,0,.16), transparent, rgba(255,255,255,.04), transparent, rgba(255,212,0,.16));
  animation: spin 20s linear infinite;
}

.brand-wall::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px solid rgba(255, 212, 0, 0.12);
}

.brand-wall img {
  position: relative;
  z-index: 1;
  width: min(76%, 540px);
  filter: drop-shadow(0 24px 60px rgba(255, 212, 0, 0.12));
  animation: drift 7s ease-in-out infinite;
}

.page-hero {
  padding: 88px 0 30px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.hero-panel {
  padding: 30px;
}

.hero-panel p:last-child {
  margin-bottom: 0;
}

.page-signature {
  display: grid;
  place-items: center;
  min-height: 460px;
}

.page-signature .centerpiece {
  width: min(100%, 480px);
  aspect-ratio: 1 / 1;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 20px;
}

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

.field,
.select-field,
.textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: white;
  padding: 15px 16px;
  outline: none;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}

.field:focus,
.select-field:focus,
.textarea:focus {
  border-color: rgba(255, 212, 0, 0.35);
  box-shadow: 0 0 0 5px rgba(255, 212, 0, 0.08);
  transform: translateY(-1px);
}

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

.field-wrap label,
.form-block label {
  display: block;
  margin-bottom: 9px;
  font-weight: 700;
}

.contact-card a,
.location-card a,
.footer-links a,
.footer-contact a {
  color: white;
}

.contact-card a:hover,
.location-card a:hover,
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.map-frame {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  padding: 70px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr;
  gap: 24px;
}

.footer .brand img {
  height: 74px;
}

.footer-copy {
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  max-width: 34rem;
}

.footer h3 {
  margin: 0 0 16px;
  font-size: 1.08rem;
  color: var(--gold);
}

.footer-links,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.72);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.56);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #24d366, #1da851);
  color: white;
  box-shadow: 0 18px 40px rgba(29, 168, 81, 0.35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 50px rgba(29, 168, 81, 0.42);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(17,17,17,.95);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  font-weight: 700;
  font-size: .9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  transform: translateY(-50%) translateX(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

.note {
  color: rgba(255,255,255,0.54);
  font-size: .95rem;
}

@keyframes glowFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-34px) scale(1.04); }
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes bob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

@keyframes pulseLine {
  0%, 100% { opacity: .45; transform: scaleX(.92); }
  50% { opacity: 1; transform: scaleX(1); }
}

@media (max-width: 1120px) {
  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .visual-stage,
  .page-signature {
    min-height: 460px;
  }

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

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

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

@media (max-width: 860px) {
  .nav-links,
  .cta-mini {
    display: none;
  }

  .menu-toggle,
  .mobile-menu.is-open {
    display: block;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-stage,
  .visual-stage,
  .page-signature {
    min-height: 400px;
  }

  .hero-meta,
  .info-grid,
  .form-grid,
  .gallery-stack,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand img {
    height: 48px;
  }

  .footer .brand img {
    height: 62px;
  }

  .whatsapp-label {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 22px, 1000px);
    --radius: 22px;
    --radius-lg: 26px;
  }

  .nav-wrap {
    min-height: 78px;
  }

  .hero,
  .page-hero {
    padding-top: 44px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .centerpiece {
    width: 84%;
  }

  .floating-chip {
    font-size: .82rem;
    padding: 10px 12px;
  }

  .chip-a { left: 0; }
  .chip-b { right: 0; }
  .chip-c { left: 0; }
  .chip-e { right: 0; }
  .chip-f { left: 0; }

  .button,
  .button-secondary,
  .button-dark,
  .button-ghost {
    width: 100%;
  }

  .hero-actions,
  .action-row {
    flex-direction: column;
  }

  .feature-card,
  .contact-card,
  .location-card,
  .form-card,
  .cta-panel,
  .premium-panel,
  .service-card,
  .gallery-card,
  .hero-panel {
    padding: 22px;
  }
}

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

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .cursor-glow {
    display: none;
  }
}

/* ===== enhanced mobile support, image showcases, and interactions ===== */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: max-height .45s var(--ease), opacity .35s var(--ease), transform .35s var(--ease), padding .35s var(--ease);
  padding-bottom: 0;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  max-height: 460px;
  padding-bottom: 18px;
}

.hero-stage,
.page-signature {
  overflow: hidden;
}

.showcase-cluster {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.showcase-cluster .centerpiece {
  width: 78%;
  max-width: 430px;
  aspect-ratio: 1.12 / 1;
  border-radius: 30px;
}

.showcase-vehicle,
.showcase-tech,
.showcase-detail {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-width: 520px;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.46));
  animation: drift 7s ease-in-out infinite;
}

.showcase-tech {
  max-width: 500px;
}

.showcase-detail {
  max-width: 500px;
}

.showcase-logo-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  padding: 12px;
  background: rgba(10,10,10,0.8);
  border: 1px solid rgba(255, 212, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
}

.showcase-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: none;
}

.hero-stage::after,
.page-signature::after {
  content: "";
  position: absolute;
  inset: auto 8% 4% 8%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,212,0,0.18) 0%, rgba(255,212,0,0.08) 28%, transparent 74%);
  filter: blur(30px);
  pointer-events: none;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 212, 0, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.image-frame:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 212, 0, 0.28);
  box-shadow: 0 34px 90px rgba(0,0,0,0.55);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 212, 0, 0.16), transparent 36%);
  pointer-events: none;
  opacity: .95;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.image-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8,8,8,.74);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.image-caption strong {
  display: block;
  color: white;
  margin-bottom: 4px;
}

.image-caption span {
  color: rgba(255,255,255,0.66);
  font-size: .95rem;
}

.premium-panel,
.feature-card,
.service-card,
.gallery-card,
.contact-card,
.location-card,
.form-card,
.image-frame {
  --spot-x: 50%;
  --spot-y: 50%;
}

.premium-panel::before,
.feature-card::before,
.service-card::before,
.gallery-card::before,
.contact-card::before,
.location-card::before,
.form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255,212,0,.12), transparent 32%);
  opacity: .95;
  pointer-events: none;
}

.hero .meta-card,
.premium-panel,
.feature-card,
.contact-card,
.location-card,
.form-card,
.gallery-card,
.service-card,
.image-frame {
  transform: translateZ(0);
}

.service-card h3,
.gallery-card h3 {
  position: relative;
  z-index: 2;
}

.service-card p,
.gallery-card p {
  position: relative;
  z-index: 2;
}

.service-card .icon-badge,
.gallery-card .service-index {
  position: relative;
  z-index: 2;
}

.gallery-card .gallery-visual {
  min-height: 164px;
}

.gallery-card .gallery-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-chip {
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.floating-chip:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: rgba(255, 212, 0, 0.28);
  box-shadow: 0 24px 56px rgba(0,0,0,.32);
}

[data-parallax] {
  will-change: transform;
  transition: transform .2s linear;
}

.soft-glow-title {
  text-shadow: 0 0 38px rgba(255, 212, 0, 0.18);
}

.detail-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  margin-top: 20px;
}

.detail-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.detail-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  font-weight: 700;
  color: rgba(255,255,255,0.86);
}

.detail-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
}

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

.spec-card {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}

.spec-card strong {
  display: block;
  color: white;
  margin-bottom: 6px;
}

.spec-card span {
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 1120px) {
  .image-grid,
  .detail-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .detail-band,
  .contact-grid,
  .footer-grid,
  .gallery-stack,
  .image-grid,
  .service-grid,
  .info-grid,
  .hero-meta,
  .form-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .page-signature {
    min-height: 360px;
  }

  .showcase-cluster .centerpiece {
    width: min(100%, 430px);
  }

  .showcase-logo-badge {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    right: 14px;
    bottom: 14px;
  }

  .chip-e,
  .chip-f {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-stage,
  .page-signature {
    min-height: 320px;
  }

  .showcase-cluster .centerpiece {
    width: 90%;
    border-radius: 24px;
  }

  .showcase-vehicle,
  .showcase-tech,
  .showcase-detail {
    max-width: 100%;
  }

  .floating-chip {
    font-size: .78rem;
    padding: 8px 11px;
    backdrop-filter: blur(8px);
  }

  .chip-b { top: 12%; }
  .chip-c { bottom: 14%; }
  .chip-d { bottom: 1%; }

  .chip-a,
  .chip-b,
  .chip-c,
  .chip-d {
    max-width: calc(100% - 20px);
  }

  .image-frame,
  .image-frame img {
    min-height: 220px;
  }

  .gallery-card {
    min-height: 250px;
  }

  .gallery-card .gallery-visual {
    min-height: 138px;
  }
}
