/* Detail Central by Mr H — premium cinematic rebuild */

:root {
  --carbon: #06080c;
  --panel: #0e1218;
  --elev: #141a24;
  --edge: rgba(255, 255, 255, 0.08);
  --edge-strong: rgba(255, 255, 255, 0.14);
  --cyan: #2ad9e6;
  --cyan-deep: #12a8b8;
  --volt: #c6ff3d;
  --silver: #e8eef5;
  --muted: #93a0b0;
  --dim: #64707f;
  --glow: rgba(42, 217, 230, 0.4);
  --radius: 18px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Outfit", "Inter", system-ui, sans-serif;
  --container: 1140px;
  --header-h: 70px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sticky: 68px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 52px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--silver);
  background: var(--carbon);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: var(--sticky);
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 0.45em;
}

h1 { font-size: clamp(2.4rem, 6.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; }

em {
  font-style: normal;
  background: linear-gradient(120deg, var(--cyan), #7aeeff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 2000;
  background: linear-gradient(90deg, var(--cyan), var(--volt));
  box-shadow: 0 0 12px var(--glow);
}

/* Banners */
.owner-preview {
  background: #0a1a12;
  color: #b8e6c8;
  font-size: 0.78rem;
  padding: 0.55rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(143, 209, 79, 0.25);
  line-height: 1.5;
}
.owner-preview strong { color: #d4f5c8; }
.owner-preview a {
  color: var(--cyan);
  margin-left: 0.4rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.demo-ribbon {
  background: #1a1408;
  color: #f0c878;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-bottom: 1px solid rgba(240, 200, 120, 0.2);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 8, 12, 0.82);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--edge);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.15), transparent 50%),
    linear-gradient(135deg, #1a2430, #0a0e14);
  border: 1px solid var(--edge-strong);
  box-shadow: 0 0 20px var(--glow), inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative;
  flex-shrink: 0;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
  box-shadow: 0 0 12px var(--glow);
}

.logo-mark.sm { width: 32px; height: 32px; }
.logo-mark.sm::after { inset: 8px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
}
.logo-text em {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  -webkit-text-fill-color: var(--muted);
  background: none;
  color: var(--muted);
}

.nav-desktop { display: none; gap: 1.35rem; }
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--silver); }

.header-call { display: none; }

.nav-toggle {
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--edge);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.5rem 1rem 1.2rem;
  border-top: 1px solid var(--edge);
  background: rgba(6, 8, 12, 0.98);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a {
  padding: 0.75rem 0.5rem;
  color: var(--muted);
  font-weight: 500;
  border-radius: 8px;
}
.nav-mobile a:hover {
  color: var(--silver);
  background: rgba(42, 217, 230, 0.08);
}
.nav-mobile .btn { margin-top: 0.4rem; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .header-call { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 1rem 1.55rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
  color: #041016;
  box-shadow: 0 8px 28px var(--glow);
}
.btn-cyan:hover { box-shadow: 0 14px 36px rgba(42, 217, 230, 0.5); }

.btn-volt {
  background: linear-gradient(135deg, var(--volt), #9ed420);
  color: #0a1000;
  box-shadow: 0 8px 28px rgba(198, 255, 61, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--edge-strong);
  color: var(--silver);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  background: rgba(42, 217, 230, 0.08);
}

.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #041016;
  animation: pulse 1.8s ease infinite;
}
.sticky-call .pulse,
.btn-cyan .pulse {
  background: #041016;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(4, 16, 22, 0.5); }
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.play-icon {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(42, 217, 230, 0.2);
  font-size: 0.65rem;
  color: var(--cyan);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  padding: 3rem 0 4.5rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fallback {
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-video {
  z-index: 1;
  filter: saturate(0.9) contrast(1.05) brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(6, 8, 12, 0.94) 0%, rgba(6, 8, 12, 0.78) 45%, rgba(6, 8, 12, 0.45) 100%),
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(42, 217, 230, 0.12), transparent 60%);
}

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

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 1rem;
}

.eyebrow .dot,
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--glow);
  animation: pulseCyan 2s ease infinite;
}

@keyframes pulseCyan {
  0% { box-shadow: 0 0 0 0 rgba(42, 217, 230, 0.55); }
  70% { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.gradient-text {
  display: block;
  background: linear-gradient(100deg, #7aeeff, var(--cyan) 40%, #9ff0a0 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 6s ease infinite;
}

@keyframes gradShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  color: var(--muted);
  max-width: 34em;
  margin-bottom: 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.trust-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-pills li {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--edge);
  background: rgba(255, 255, 255, 0.03);
}

.hero-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--edge-strong);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(42, 217, 230, 0.06);
  animation: floatIn 0.9s 0.2s var(--ease) both;
}

.hero-card-photo {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.hero-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.hero-card:hover .hero-card-photo img {
  transform: scale(1.05);
}

.badge-float {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(6, 8, 12, 0.75);
  border: 1px solid rgba(42, 217, 230, 0.4);
  color: var(--cyan);
  backdrop-filter: blur(8px);
}

.hero-card-body { padding: 1.25rem 1.35rem 1.5rem; }

.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.mini-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1.15;
}

.mini-stats span {
  font-size: 0.75rem;
  color: var(--dim);
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* Marquee */
.marquee {
  border-block: 1px solid var(--edge);
  background: rgba(20, 26, 36, 0.6);
  overflow: hidden;
  padding: 0.9rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-track span:nth-child(odd) { color: var(--cyan); }

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

/* Sections */
.section { padding: 5rem 0; }

.section-alt {
  background: linear-gradient(180deg, #0a0d12 0%, var(--carbon) 100%);
  border-block: 1px solid var(--edge);
}

.section-head {
  max-width: 620px;
  margin-bottom: 2.75rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* Packages */
.pkg-grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 900px) {
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
}

.pkg {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}

.pkg:hover {
  transform: translateY(-6px);
  border-color: rgba(42, 217, 230, 0.35);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(42, 217, 230, 0.08);
}

.pkg-hot {
  border-color: rgba(42, 217, 230, 0.4);
  box-shadow: 0 0 0 1px rgba(42, 217, 230, 0.12), 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pkg-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--volt), #9ed420);
  color: #0a1000;
}

.pkg-media {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.pkg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: saturate(0.95) contrast(1.05);
}

.pkg:hover .pkg-media img { transform: scale(1.06); }

.pkg-body {
  padding: 1.35rem 1.3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.pkg-body h3 { margin: 0; }

.pkg-price {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
  margin: 0;
}

.pkg-price small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--dim);
}

.pkg-body > p:not(.pkg-price) {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.pkg-body ul {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 auto;
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pkg-body ul li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.pkg-body ul li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--glow);
  flex-shrink: 0;
}

.pkg-body .btn { margin-top: 0.75rem; }

/* Reel */
.section-reel {
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(42, 217, 230, 0.08), transparent 55%),
    var(--carbon);
}

.reel-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .reel-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: var(--muted);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.check-list li::before {
  content: "✓";
  color: var(--volt);
  font-weight: 800;
  flex-shrink: 0;
}

.reel-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--edge-strong);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  background: #000;
}

.reel-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}

.reel-caption {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--dim);
  background: var(--panel);
  border-top: 1px solid var(--edge);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }
  .gal-lg {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gal-wide {
    grid-column: span 2;
  }
}

.gal {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--edge);
  cursor: zoom-in;
  min-height: 160px;
}

.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.3s;
  filter: saturate(0.92) contrast(1.05);
}

.gal:hover img {
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.08);
}

.gal figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 0.9rem 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

/* Before/After */
.ba {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  height: clamp(280px, 48vw, 460px);
  user-select: none;
  touch-action: none;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(42, 217, 230, 0.15);
}

.ba-layer {
  position: absolute;
  inset: 0;
}

.ba-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before img {
  filter: grayscale(0.35) contrast(0.9) brightness(0.85);
}

.ba-after {
  width: 52%;
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
}

.ba-after img {
  width: 100vw;
  max-width: 900px;
  height: 100%;
  object-fit: cover;
}

.ba-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  color: #ddd;
}

.ba-tag.after {
  left: auto;
  right: 1rem;
  background: rgba(42, 217, 230, 0.2);
  color: var(--cyan);
  border: 1px solid rgba(42, 217, 230, 0.4);
}

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 52%;
  width: 0;
  z-index: 4;
  pointer-events: none;
}

.ba-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 20px var(--glow);
}

.ba-handle span::before {
  content: "⟷";
  font-size: 1.15rem;
  color: #0a1520;
  font-weight: 900;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}

/* Process */
.process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .process { grid-template-columns: repeat(4, 1fr); }
}

.process li {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.process li:hover {
  border-color: rgba(42, 217, 230, 0.3);
  transform: translateY(-4px);
}

.step-num {
  display: block;
  padding: 1rem 1.15rem 0;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.step-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin: 0.75rem 0;
}

.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.process li:hover .step-media img { transform: scale(1.05); }

.process h3,
.process p {
  padding: 0 1.15rem;
}

.process p {
  padding-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Why + ROI */
.why-roi {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .why-roi {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.why-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

@media (min-width: 520px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

.why-grid article {
  padding: 1.2rem;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--edge);
  transition: border-color 0.25s;
}

.why-grid article:hover {
  border-color: rgba(42, 217, 230, 0.3);
}

.why-grid h3 { margin-bottom: 0.35rem; font-size: 1.05rem; }
.why-grid p { color: var(--muted); font-size: 0.9rem; margin: 0; }

.roi-card {
  padding: 1.6rem;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(42, 217, 230, 0.1), transparent 50%),
    var(--elev);
  border: 1px solid rgba(42, 217, 230, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.roi-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.roi-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.roi-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--edge);
  font-size: 0.92rem;
}

.roi-list li strong { color: var(--muted); font-weight: 500; }
.roi-list li span { font-weight: 700; color: var(--silver); }
.roi-list li.highlight span { color: var(--volt); }

.fine {
  font-size: 0.8rem;
  color: var(--dim);
  margin-bottom: 0.85rem;
}

.owner-link {
  display: inline-block;
  font-weight: 700;
  color: var(--cyan);
  font-size: 0.92rem;
}
.owner-link:hover { text-decoration: underline; }

/* Quote */
.quote-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .quote-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
  }
}

.contact-card {
  margin: 1.5rem 0;
  padding: 1.35rem;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid rgba(42, 217, 230, 0.25);
}

.big-phone {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.big-phone:hover { text-decoration: underline; }

.contact-card a:not(.big-phone) {
  color: var(--muted);
  font-size: 0.92rem;
}
.contact-card p {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--dim);
}

.quote-photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--edge);
  aspect-ratio: 16/9;
}

.quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-form {
  background: var(--panel);
  border: 1px solid var(--edge-strong);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

@media (min-width: 640px) {
  .quote-form { padding: 2rem; }
}

.field { margin-bottom: 1rem; }
.field-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 520px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--edge-strong);
  background: var(--carbon);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%2393a0b0' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--dim); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(42, 217, 230, 0.12);
}

.field input.is-invalid { border-color: #e86a6a; }
.field textarea { resize: vertical; min-height: 88px; }

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: var(--dim);
  text-align: center;
}

.form-success {
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 12px;
  background: rgba(42, 217, 230, 0.1);
  border: 1px solid rgba(42, 217, 230, 0.35);
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}
.form-success a { color: #9ff0ff; text-decoration: underline; }

/* CTA finale */
.cta-finale {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.85);
  transform: scale(1.05);
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 12, 0.7), rgba(6, 8, 12, 0.85));
}

.cta-inner { position: relative; z-index: 1; }
.cta-inner p { color: var(--muted); margin-bottom: 1.5rem; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--edge);
  background: #04060a;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .footer-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
}

.footer-brand p {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: var(--dim);
}

.footer-meta a { color: var(--cyan); font-weight: 700; }
.footer-meta p {
  margin: 0.3rem 0 0;
  font-size: 0.75rem;
  color: var(--dim);
}
.footer-meta p a { font-weight: 500; font-size: inherit; }

/* Sticky */
.sticky-call {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent, rgba(6, 8, 12, 0.95) 28%);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

.sticky-call a {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #041016;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
  box-shadow: 0 8px 32px var(--glow);
}

.sticky-call.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(110%);
}

@media (min-width: 900px) {
  .sticky-call { display: none; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.92);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  cursor: zoom-out;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lb-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px; height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero-card, .marquee-track, .gradient-text {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-video { display: none; }
}
