/* ============================================================
   BETTER VIEW — Redesign 2026
   Cinematic dark theme · Clash Display + Satoshi
   ============================================================ */

:root {
  --bg: #05080a;
  --bg-2: #090e12;
  --panel: #0d141a;
  --panel-2: #111a21;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #eef4f6;
  --muted: #93a6b0;
  --faint: #5c6d76;
  --teal: #17c3cf;
  --teal-deep: #0d7377;
  --teal-glow: rgba(23, 195, 207, 0.35);
  --gold: #f0b64c;
  --grad: linear-gradient(120deg, #0fa3ad, #17c3cf 50%, #6be3ea);
  --fd: 'Clash Display', 'Arial Black', sans-serif;
  --fb: 'Satoshi', 'Inter', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 18px;
  --header-h: 76px;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--teal-deep); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1d2b33; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal-deep); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--grad); z-index: 1000;
  box-shadow: 0 0 12px var(--teal-glow);
}

/* ---------- Utilities ---------- */
.wrap { width: min(1180px, 92vw); margin: 0 auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 1.1rem;
}
.kicker::before { content: ''; width: 28px; height: 1.5px; background: var(--teal); }
.kicker.center { justify-content: center; }
.kicker.center::after { content: ''; width: 28px; height: 1.5px; background: var(--teal); }

.h2 {
  font-family: var(--fd); font-weight: 600;
  font-size: clamp(1.9rem, 1.2rem + 3vw, 3.1rem);
  letter-spacing: -0.02em; line-height: 1.08; color: #fff;
}
.sub { color: var(--muted); font-size: clamp(0.98rem, 0.9rem + 0.3vw, 1.12rem); max-width: 640px; margin-top: 1rem; }
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.9rem 1.9rem; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
  will-change: transform;
}
.btn svg { transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-solid {
  background: linear-gradient(120deg, #0d9aa4, #17c3cf 55%, #4fd9e2); color: #032023;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 8px 30px -8px var(--teal-glow);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 16px 44px -8px var(--teal-glow); }
.btn-ghost {
  border-color: var(--line-strong); color: var(--text);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.02rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  box-shadow: 0 10px 34px -14px rgba(0, 0, 0, 0.55);
  background: rgba(5, 8, 10, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { width: 42px; height: auto; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4)); }
.brand-name {
  font-family: var(--fd); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: #fff;
}
.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  position: relative; font-size: 0.88rem; font-weight: 600;
  color: rgba(255,255,255,0.72); transition: color 0.25s;
  padding: 0.4rem 0;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--teal); transition: width 0.35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.75);
  transition: color 0.25s;
}
.header-phone:hover { color: var(--teal); }
.header-cta { padding: 0.62rem 1.4rem; font-size: 0.85rem; }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 8px; z-index: 1001;
}
.burger span { width: 24px; height: 2px; background: #fff; transition: transform 0.35s var(--ease), opacity 0.25s; border-radius: 2px; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(5, 8, 10, 0.96); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--fd); font-size: 1.7rem; font-weight: 600; color: rgba(255,255,255,0.8);
  transform: translateY(16px); opacity: 0; transition: transform 0.5s var(--ease), opacity 0.5s, color 0.25s;
}
.mobile-nav.open a { transform: none; opacity: 1; }
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav a:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav a:nth-child(6) { transition-delay: 0.3s; }

@media (max-width: 900px) {
  .main-nav, .header-phone { display: none; }
  .burger { display: flex; }
}
@media (max-width: 560px) {
  .header-cta { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: -4%;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.8s ease;
  transform: scale(1);
}
.hero-slide.active {
  opacity: 1;
  animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 1.4s ease;
}
.hero.video-on .hero-video { opacity: 1; }
.hero.video-on .hero-slides,
.hero.video-on .hero-dots { opacity: 0; transition: opacity 1.4s ease; }
.hero.video-on .hero-dots { pointer-events: none; }

.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(140% 110% at 50% 50%, transparent 52%, rgba(5,8,10,0.5) 100%),
    radial-gradient(120% 90% at 50% 105%, rgba(5,8,10,0.94) 0%, rgba(5,8,10,0.38) 45%, transparent 70%),
    linear-gradient(180deg, rgba(5,8,10,0.66) 0%, rgba(5,8,10,0.2) 35%, rgba(5,8,10,0.78) 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

/* HUD corners */
.hud { position: absolute; inset: clamp(84px, 10vh, 110px) clamp(18px, 4vw, 48px) clamp(24px, 5vh, 48px); pointer-events: none; z-index: 3; }
.hud-corner { position: absolute; width: 26px; height: 26px; border: 1.5px solid rgba(255,255,255,0.35); }
.hud-corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hud-corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hud-corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hud-corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.hud-meta {
  position: absolute; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 600;
}
.hud-meta.tl { top: 8px; left: 40px; }
.hud-meta.tr { top: 8px; right: 40px; }
.hud-meta.bl { bottom: 8px; left: 40px; }
.hud-meta.br { bottom: 8px; right: 40px; }
.hud-rec::before {
  content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #ff5a5a; margin-right: 7px; animation: blink 1.6s infinite;
}
@keyframes blink { 0%, 60% { opacity: 1; } 61%, 100% { opacity: 0.15; } }
@media (max-width: 720px) { .hud-meta.bl, .hud-meta.tr { display: none; } }

.hero-content { position: relative; z-index: 4; text-align: center; padding: 7rem 1.2rem 5rem; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 0.45rem 1.1rem; margin-bottom: 1.6rem;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(5,8,10,0.35); backdrop-filter: blur(10px);
}
.hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px var(--teal); }
.hero h1 {
  font-family: var(--fd); font-weight: 600;
  font-size: clamp(2.7rem, 1.4rem + 7vw, 6rem);
  line-height: 1.02; letter-spacing: -0.025em; color: #fff;
  text-wrap: balance;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: block; transform: translateY(110%); animation: riseIn 1.1s var(--ease) forwards; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.12s; }
.hero h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
@keyframes riseIn { to { transform: none; } }
.hero-sub {
  margin: 1.4rem auto 2.4rem; max-width: 560px;
  color: rgba(255,255,255,0.78); font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem); font-weight: 400;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.45s forwards;
}
.hero-ctas { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s var(--ease) 0.6s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.hero-dots { position: absolute; bottom: clamp(70px, 9vh, 92px); left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.hero-dot {
  width: 26px; height: 3px; border-radius: 2px; border: 0;
  background: rgba(255,255,255,0.25); transition: background 0.3s;
  position: relative; overflow: hidden;
}
.hero-dot.active::after {
  content: ''; position: absolute; inset: 0; background: var(--teal);
  transform-origin: left; animation: dotFill 9s linear forwards;
}
@keyframes dotFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.scroll-cue {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 5;
  color: rgba(255,255,255,0.55); animation: cueFloat 2.4s ease-in-out infinite;
}
@keyframes cueFloat { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden; padding: 1.05rem 0;
  position: relative; z-index: 5;
}
.marquee-track { display: flex; gap: 3.2rem; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 3.2rem; white-space: nowrap;
  font-family: var(--fd); font-weight: 500; font-size: 0.92rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.marquee-item svg { color: var(--teal); flex-shrink: 0; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { padding: clamp(3rem, 6vw, 4.5rem) 0; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: -0.75rem; top: 15%; bottom: 15%; width: 1px; background: var(--line);
}
.stat-value {
  font-family: var(--fd); font-weight: 600; color: #fff;
  font-size: clamp(1.7rem, 1.1rem + 2.4vw, 2.7rem); letter-spacing: -0.02em; line-height: 1.1;
}
.stat-value .accent { color: var(--teal); }
.stat-label { margin-top: 0.35rem; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat + .stat::before { display: none; }
  .stats-grid .stat:nth-child(5) { grid-column: 1 / -1; }
}

/* ============================================================
   SERVICES / PRICING BUILDER
   ============================================================ */
.svc-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
  margin: 2.6rem 0 2.2rem;
}
.svc-tab {
  padding: 0.68rem 1.35rem; border-radius: 999px;
  border: 1px solid var(--line); background: transparent;
  color: var(--muted); font-weight: 600; font-size: 0.88rem;
  transition: all 0.3s var(--ease);
}
.svc-tab:hover { color: #fff; border-color: var(--line-strong); }
.svc-tab.active {
  background: rgba(23, 195, 207, 0.1); border-color: var(--teal);
  color: var(--teal); box-shadow: 0 0 24px -8px var(--teal-glow);
}

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
@media (max-width: 940px) { .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

.pkg-card {
  position: relative;
  background: linear-gradient(165deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem 1.8rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  transition: transform 0.45s var(--ease), border-color 0.3s, box-shadow 0.45s var(--ease);
  animation: cardIn 0.55s var(--ease) backwards;
}
.pkg-card:nth-child(2) { animation-delay: 0.08s; }
.pkg-card:nth-child(3) { animation-delay: 0.16s; }
@keyframes cardIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.pkg-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 24px 50px -22px rgba(0,0,0,0.7); }
.pkg-card.popular { border-color: rgba(23, 195, 207, 0.45); }
.pkg-card.popular::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none;
  background: radial-gradient(90% 60% at 50% 0%, rgba(23,195,207,0.12), transparent 70%);
}
.pkg-card.selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), 0 20px 48px -20px var(--teal-glow);
}
.pkg-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #04262a;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.32rem 0.9rem; border-radius: 999px; white-space: nowrap;
}
.pkg-tier { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.pkg-price { font-family: var(--fd); font-weight: 600; font-size: 2.6rem; letter-spacing: -0.02em; color: #fff; line-height: 1; }
.pkg-price small { font-size: 1rem; color: var(--muted); font-weight: 500; }
.pkg-feats { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.pkg-feats li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: var(--muted); }
.pkg-feats svg { flex-shrink: 0; color: var(--teal); margin-top: 3px; }
.pkg-btn {
  width: 100%; padding: 0.85rem; border-radius: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-strong);
  color: #fff; font-weight: 700; font-size: 0.92rem;
  transition: all 0.3s var(--ease);
}
.pkg-btn:hover { border-color: var(--teal); color: var(--teal); }
.pkg-card.selected .pkg-btn { background: var(--grad); border-color: transparent; color: #04262a; }

/* Add-ons */
.addons { margin-top: 2.6rem; }
.addons-title {
  text-align: center; font-family: var(--fd); font-weight: 600; font-size: 1.15rem; color: #fff;
  margin-bottom: 1.2rem;
}
.addons-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem; }
.addon-chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.62rem 1.15rem; cursor: pointer; user-select: none;
  font-size: 0.87rem; color: var(--muted); font-weight: 600;
  transition: all 0.3s var(--ease); background: transparent;
}
.addon-chip:hover { border-color: var(--line-strong); color: #fff; }
.addon-chip input { display: none; }
.addon-chip .plus {
  width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid currentColor;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem; line-height: 1; transition: transform 0.3s var(--ease);
}
.addon-chip .price { color: var(--teal); font-weight: 700; }
.addon-chip.on {
  border-color: var(--teal); background: rgba(23, 195, 207, 0.1); color: #fff;
  box-shadow: 0 0 18px -8px var(--teal-glow);
}
.addon-chip.on .plus { transform: rotate(45deg); color: var(--teal); }

/* Order bar */
.order-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
  transform: translateY(110%); transition: transform 0.55s var(--ease);
  padding: 0.9rem clamp(1rem, 4vw, 2rem);
  background: rgba(9, 14, 18, 0.85); backdrop-filter: blur(20px);
  border-top: 1px solid var(--line-strong);
}
.order-bar.show { transform: none; }
.order-inner {
  width: min(1180px, 100%); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
}
.order-info { min-width: 0; }
.order-pkg { font-weight: 700; color: #fff; font-size: 0.98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-addons { font-size: 0.78rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-right { display: flex; align-items: center; gap: 1.3rem; flex-shrink: 0; }
.order-total-label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); font-weight: 700; }
.order-total { font-family: var(--fd); font-weight: 600; font-size: 1.7rem; color: #fff; line-height: 1; }
.order-cta { padding: 0.8rem 1.7rem; font-size: 0.92rem; }
@media (max-width: 640px) {
  .order-addons { display: none; }
  .order-cta { padding: 0.75rem 1.2rem; font-size: 0.85rem; }
  .order-total { font-size: 1.35rem; }
}

/* ============================================================
   WHY / ABOUT — bento
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.2rem; margin-top: 2.8rem; }
.bento-card {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem;
  transition: transform 0.45s var(--ease), border-color 0.3s;
}
.bento-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.bento-card h3 { font-family: var(--fd); font-weight: 600; font-size: 1.3rem; color: #fff; margin-bottom: 0.7rem; }
.bento-card p { color: var(--muted); font-size: 0.95rem; }
.bento-icon {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 1.2rem;
  background: rgba(23, 195, 207, 0.1); border: 1px solid rgba(23, 195, 207, 0.25);
  display: flex; align-items: center; justify-content: center; color: var(--teal);
}
.b-5 { grid-column: span 5; }
.b-7 { grid-column: span 7; }
.b-4 { grid-column: span 4; }
.bento-img { position: absolute; inset: 0; }
.bento-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); filter: saturate(1.07) contrast(1.05) brightness(0.98); }
.bento-card:hover .bento-img img { transform: scale(1.06); }
.bento-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5,8,10,0.9) 85%);
}
.bento-overlay-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; min-height: 300px; }
.equip-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.equip-tag {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em;
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.35rem 0.85rem;
  color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.04);
}
@media (max-width: 900px) {
  .b-5, .b-7, .b-4 { grid-column: span 12; }
  .bento-overlay-content { min-height: 240px; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--bg-2); border-block: 1px solid var(--line); overflow: hidden; }
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.gbadge {
  display: inline-flex; align-items: center; gap: 0.9rem;
  border: 1px solid var(--line-strong); border-radius: 14px;
  padding: 0.8rem 1.3rem; background: var(--panel);
}
.gbadge .score { font-family: var(--fd); font-weight: 600; font-size: 1.7rem; color: #fff; line-height: 1; }
.gbadge .stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; }
.gbadge .count { font-size: 0.78rem; color: var(--muted); }
.reviews-marquee { margin-top: 2.6rem; position: relative; }
.reviews-marquee::before, .reviews-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: clamp(40px, 9vw, 140px); z-index: 2; pointer-events: none;
}
.reviews-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.reviews-marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }
.reviews-track { display: flex; gap: 1.2rem; width: max-content; animation: marquee 48s linear infinite; }
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.review-card {
  position: relative;
  width: clamp(280px, 30vw, 380px); flex-shrink: 0;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; display: flex; flex-direction: column; gap: 0.9rem;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: var(--line-strong); }
.review-card::before {
  content: '\201C'; position: absolute; top: 0.4rem; right: 1.1rem;
  font-family: var(--fd); font-size: 3.4rem; line-height: 1;
  color: rgba(23, 195, 207, 0.16); pointer-events: none;
}
.review-top { display: flex; align-items: center; gap: 0.85rem; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 1.02rem;
}
.review-name { font-weight: 700; font-size: 0.94rem; color: #fff; }
.review-stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 1.5px; }
.review-text { color: var(--muted); font-size: 0.93rem; line-height: 1.6; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.gallery {
  display: flex; gap: 1.1rem; overflow-x: auto; padding: 2.4rem 4vw 1.2rem;
  scroll-snap-type: x mandatory; scrollbar-width: none;
  margin: 0 calc(50% - 50vw); width: 100vw;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery-item {
  position: relative; flex-shrink: 0; scroll-snap-align: center;
  width: clamp(280px, 46vw, 560px); aspect-ratio: 16 / 10;
  border-radius: var(--radius); overflow: hidden; cursor: zoom-in;
  border: 1px solid var(--line);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); filter: saturate(1.07) contrast(1.05) brightness(0.98); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.2rem 1.3rem 1.1rem;
  background: linear-gradient(transparent, rgba(5,8,10,0.85));
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  opacity: 0; transform: translateY(8px); transition: opacity 0.4s, transform 0.4s var(--ease);
}
.gallery-item:hover .cap { opacity: 1; transform: none; }
.gallery-nav { display: flex; justify-content: center; gap: 0.7rem; margin-top: 0.6rem; }
.gallery-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,0.03);
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.gallery-arrow:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 990;
  background: rgba(3, 5, 6, 0.94); backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92vw; max-height: 86vh; border-radius: 12px;
  box-shadow: 0 40px 120px -30px rgba(0,0,0,0.9);
  transform: scale(0.94); transition: transform 0.4s var(--ease);
}
.lightbox.open img { transform: none; }
.lightbox-close {
  position: absolute; top: 22px; right: 26px;
  background: none; border: 0; color: rgba(255,255,255,0.7); font-size: 2rem; line-height: 1;
  transition: color 0.2s, transform 0.3s;
}
.lightbox-close:hover { color: #fff; transform: rotate(90deg); }

/* Videos */
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 2.4rem; }
@media (max-width: 900px) { .videos-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
.video-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.45s var(--ease), border-color 0.3s;
}
.video-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-info { padding: 1.2rem 1.4rem 1.4rem; }
.video-info h4 { font-family: var(--fd); font-weight: 600; font-size: 1.05rem; color: #fff; }
.video-info p { font-size: 0.86rem; color: var(--muted); margin-top: 0.2rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 2.6rem auto 0; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--panel); overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(23, 195, 207, 0.4); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; text-align: left;
  padding: 1.2rem 1.5rem; color: #fff; font-weight: 700; font-size: 0.99rem; font-family: var(--fb);
}
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--line-strong); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease), border-color 0.3s, color 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--teal); color: var(--teal); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 1.5rem 1.3rem; color: var(--muted); font-size: 0.94rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { position: relative; overflow: hidden; text-align: center; padding: clamp(5rem, 10vw, 8.5rem) 0; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.cta-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,8,10,0.88), rgba(6,20,22,0.82)); }
.cta-banner .wrap { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: var(--fd); font-weight: 600;
  font-size: clamp(2rem, 1.2rem + 3.6vw, 3.6rem); letter-spacing: -0.02em; color: #fff; line-height: 1.06;
}
.cta-banner p { color: rgba(255,255,255,0.75); margin: 1rem 0 2.2rem; font-size: 1.08rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 3.5rem; margin-top: 2.8rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2.4rem; } }
.contact-items { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  border: 1px solid var(--line); border-radius: 14px; padding: 1.15rem 1.3rem;
  background: var(--panel); transition: border-color 0.3s, transform 0.35s var(--ease);
}
.contact-item:hover { border-color: var(--line-strong); transform: translateX(4px); }
.contact-item .ic {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: rgba(23,195,207,0.1); border: 1px solid rgba(23,195,207,0.25);
  display: flex; align-items: center; justify-content: center; color: var(--teal);
}
.contact-item h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.15rem; }
.contact-item a, .contact-item p { font-weight: 600; color: #fff; font-size: 0.98rem; }
.contact-item a:hover { color: var(--teal); }

.contact-form {
  background: linear-gradient(165deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.fg { display: flex; flex-direction: column; gap: 0.4rem; }
.fg label { font-size: 0.8rem; font-weight: 700; color: var(--muted); }
.fg input, .fg select, .fg textarea {
  padding: 0.85rem 1.05rem; border-radius: 11px;
  background: rgba(255,255,255,0.035); border: 1px solid var(--line);
  color: var(--text); font-family: var(--fb); font-size: 0.97rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--faint); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(23,195,207,0.14); background: rgba(255,255,255,0.05);
}
.fg select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2393a6b0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.6rem;
}
.fg select option { background: var(--panel); color: var(--text); }
.fg textarea { resize: vertical; min-height: 110px; }
.fg input[type="date"] { color-scheme: dark; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--faint); }
.form-success { text-align: center; padding: 2.5rem 1rem; }
.form-success .ok {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 1.3rem;
  background: rgba(23,195,207,0.12); border: 1px solid rgba(23,195,207,0.4);
  display: flex; align-items: center; justify-content: center; color: var(--teal);
}
.form-success h3 { font-family: var(--fd); font-size: 1.4rem; color: #fff; margin-bottom: 0.6rem; }
.form-success p { color: var(--muted); max-width: 400px; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); background: #040608; padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 1rem; max-width: 300px; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-strong); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { color: var(--teal); border-color: var(--teal); transform: translateY(-3px); }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 1.1rem;
}
.footer-col a { display: block; color: var(--muted); font-size: 0.92rem; padding: 0.3rem 0; transition: color 0.25s, transform 0.3s var(--ease); }
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom {
  margin-top: 3.2rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--faint);
}
.footer-wordmark {
  font-family: var(--fd); font-weight: 700; text-align: center;
  font-size: clamp(3.4rem, 12vw, 10rem); line-height: 0.95; letter-spacing: -0.03em;
  margin-top: 3.5rem; user-select: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.015));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  white-space: nowrap;
}

/* ============================================================
   DELIGHT LAYER — drone companion, waypoints, altimeter,
   cursor glow, tilt glare, word reveals
   ============================================================ */

/* ---------- Ambient orbs + film grain ---------- */
.orb {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(110px); will-change: transform;
}
.orb-1 {
  width: 540px; height: 540px; top: -180px; left: -140px;
  background: rgba(23, 195, 207, 0.07);
  animation: orbDrift1 28s ease-in-out infinite alternate;
}
.orb-2 {
  width: 640px; height: 640px; bottom: -240px; right: -180px;
  background: rgba(64, 120, 255, 0.05);
  animation: orbDrift2 34s ease-in-out infinite alternate;
}
@keyframes orbDrift1 { to { transform: translate(140px, 100px) scale(1.18); } }
@keyframes orbDrift2 { to { transform: translate(-120px, -140px) scale(1.12); } }

.grain {
  position: fixed; inset: 0; z-index: 998; pointer-events: none; opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Scroll-flying drone ---------- */
.drone {
  position: fixed; top: 0; left: 0; z-index: 860;
  width: 76px; height: 76px; margin: -38px 0 0 -38px;
  will-change: transform; cursor: pointer;
  filter: drop-shadow(0 26px 20px rgba(0, 0, 0, 0.32));
  -webkit-tap-highlight-color: transparent;
}
.drone-bob { width: 100%; height: 100%; animation: droneBob 4.4s ease-in-out infinite; }
@keyframes droneBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.drone-flip { width: 100%; height: 100%; }
.drone.flip .drone-flip { animation: barrelRoll 0.85s var(--ease); }
@keyframes barrelRoll {
  0% { transform: rotate(0) scale(1); }
  45% { transform: rotate(200deg) scale(1.25); }
  100% { transform: rotate(360deg) scale(1); }
}
.drone svg { width: 100%; height: 100%; overflow: visible; }
.drone .prop {
  transform-origin: center; transform-box: fill-box;
  animation: propSpin 0.09s linear infinite;
}
.drone .prop.ccw { animation-direction: reverse; }
@keyframes propSpin { to { transform: rotate(360deg); } }
.drone .led-f { animation: blink 1.1s infinite; }
.drone .led-r { animation: blink 1.1s 0.55s infinite; }
.drone-trail i {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  background: var(--teal); pointer-events: none; z-index: 855;
  will-change: transform, opacity;
}
.drone-trail i:nth-child(1) { width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; opacity: 0.22; }
.drone-trail i:nth-child(2) { width: 4px; height: 4px; margin: -2px 0 0 -2px; opacity: 0.13; }
.drone-trail i:nth-child(3) { width: 3px; height: 3px; margin: -1.5px 0 0 -1.5px; opacity: 0.07; }
@media (max-width: 720px) {
  .drone { width: 52px; height: 52px; margin: -26px 0 0 -26px; }
}

/* ---------- Waypoint flight-path nav ---------- */
.waypoints {
  position: fixed; right: 20px; top: 50%; transform: translateY(-50%);
  z-index: 870; display: flex; flex-direction: column; align-items: center;
}
.waypoints::before {
  content: ''; position: absolute; top: 12px; bottom: 12px; left: 50%;
  border-left: 1px dashed rgba(255, 255, 255, 0.18);
}
.wp {
  position: relative; width: 30px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 0; padding: 0;
}
.wp i {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transition: all 0.3s var(--ease); display: block;
}
.wp:hover i { background: #fff; transform: scale(1.35); }
.wp.active i {
  background: var(--teal); transform: scale(1.5);
  box-shadow: 0 0 14px var(--teal-glow), 0 0 0 4px rgba(23, 195, 207, 0.15);
}
.wp-label {
  position: absolute; right: 36px; top: 50%;
  transform: translateY(-50%) translateX(8px);
  font-size: 0.64rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9); white-space: nowrap;
  background: rgba(9, 14, 18, 0.88); border: 1px solid var(--line-strong);
  padding: 0.32rem 0.75rem; border-radius: 999px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.wp:hover .wp-label, .wp.active .wp-label { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 1100px) { .waypoints { display: none; } }

/* ---------- Altimeter ---------- */
.altimeter {
  position: fixed; left: 20px; bottom: 20px; z-index: 870;
  display: flex; align-items: flex-end; gap: 0.65rem;
  transition: bottom 0.4s var(--ease);
}
body.orderbar-visible .altimeter { bottom: 96px; }
.alt-bar {
  width: 3px; height: 56px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.12); position: relative; overflow: hidden;
}
.alt-fill { position: absolute; bottom: 0; left: 0; right: 0; height: 0%; background: var(--grad); }
.alt-read {
  font-size: 0.64rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.55); line-height: 1.5;
}
.alt-read strong { display: block; color: var(--teal); font-size: 0.82rem; letter-spacing: 0.12em; }
@media (max-width: 900px) { .altimeter { display: none; } }

/* ---------- Cursor spotlight ---------- */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 560px; height: 560px;
  margin: -280px 0 0 -280px; border-radius: 50%;
  pointer-events: none; z-index: 2; opacity: 0;
  background: radial-gradient(circle, rgba(23, 195, 207, 0.075), transparent 62%);
  mix-blend-mode: screen; transition: opacity 0.5s;
  will-change: transform;
}
body.glow-on .cursor-glow { opacity: 1; }
@media (pointer: coarse) { .cursor-glow { display: none; } }

/* ---------- 3D tilt glare ---------- */
.tilt-glare::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; opacity: 0; transition: opacity 0.35s;
  background: radial-gradient(460px circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, 0.09), transparent 46%);
}
.tilt-glare:hover::after { opacity: 1; }

/* ---------- Word-by-word title reveal ---------- */
.h2 .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.h2 .w > span {
  display: inline-block; transform: translateY(112%);
  transition: transform 0.85s var(--ease);
  transition-delay: calc(var(--wi, 0) * 65ms);
}
.h2.words-in .w > span { transform: none; }

/* ---------- Rotating hero word ---------- */
.rot { display: inline-block; overflow: hidden; vertical-align: bottom; }
#rotWord {
  display: inline-block; color: #fff; font-weight: 600;
  border-bottom: 1px solid rgba(23, 195, 207, 0.55);
  transition: transform 0.4s var(--ease), opacity 0.4s;
}
#rotWord.out { transform: translateY(-105%); opacity: 0; }
#rotWord.pre { transform: translateY(105%); opacity: 0; transition: none; }

/* ---------- CTA radar pulse ---------- */
.cta-banner .btn-solid { position: relative; }
.cta-banner .btn-solid::before {
  content: ''; position: absolute; inset: -2px; border-radius: inherit;
  border: 1px solid rgba(23, 195, 207, 0.6); pointer-events: none;
  animation: ringPulse 2.8s ease-out infinite;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70%, 100% { transform: scale(1.28, 1.75); opacity: 0; }
}

/* ---------- Trust row (contact form) ---------- */
.form-trust {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem 1.4rem;
  margin-top: 0.2rem;
}
.form-trust span {
  display: inline-flex; align-items: center; gap: 0.42rem;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--faint);
}
.form-trust svg { color: var(--teal); flex-shrink: 0; }

/* ---------- Parallax helpers ---------- */
.cta-bg, .bento-img img, .hero-slides { will-change: transform; }
.hero-content { will-change: transform, opacity; }
.gallery-item img { will-change: transform; }
.gallery.dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery { cursor: grab; user-select: none; }
.gallery-item img { -webkit-user-drag: none; user-drag: none; }
.scroll-cue { cursor: pointer; border: 0; background: none; padding: 8px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 1100;
  background: var(--teal); color: #04262a; font-weight: 700;
  padding: 0.6rem 1.2rem; border-radius: 8px;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Honeypot (hidden from humans) ---------- */
.botcheck { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ---------- Google badge as link ---------- */
a.gbadge { transition: border-color 0.3s, transform 0.35s var(--ease); }
a.gbadge:hover { border-color: var(--teal); transform: translateY(-3px); }

/* ---------- Mobile quick-contact bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 790;
  display: none; grid-template-columns: 1fr 1fr 1.4fr; gap: 0.5rem;
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(9, 14, 18, 0.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--line-strong);
  transition: transform 0.45s var(--ease);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.7rem 0.5rem; border-radius: 11px;
  font-size: 0.88rem; font-weight: 700; color: var(--text);
  border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.04);
}
.mobile-bar a svg { color: var(--teal); }
.mobile-bar .mb-quote {
  background: linear-gradient(120deg, #0d9aa4, #17c3cf 55%, #4fd9e2);
  color: #032023; border-color: transparent;
}
body.orderbar-visible .mobile-bar { transform: translateY(110%); }
@media (max-width: 699px) {
  .mobile-bar { display: grid; }
  .site-footer { padding-bottom: calc(6rem + env(safe-area-inset-bottom)); }
  .to-top { bottom: calc(74px + env(safe-area-inset-bottom)); }
  body.orderbar-visible .to-top { bottom: 96px; }
}

/* Back to top */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 850;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--panel-2); border: 1px solid var(--line-strong); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: all 0.4s var(--ease);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-3px); }
body.orderbar-visible .to-top { bottom: 96px; }
