/* ============================================================
   R.BANAY PRODUCTIONS, design system
   Neon rave energy: violet + acid-cyan duotone on ink-violet base.
   Angular clipped shapes, ticket-stub cards, asymmetric type.
   ============================================================ */

:root {
  /* ink scale (cool violet-black base) */
  --ink-950: #0a0713;
  --ink-900: #120c1f;
  --ink-850: #170f28;
  --ink-800: #1d1333;
  --ink-700: #2c1c47;
  --ink-600: #453263;
  --ink-500: #6b5a8a;
  --ink-300: #a89cc4;
  --ink-100: #efe9f7;

  /* neon duo: violet + acid cyan */
  --violet: #a72bff;
  --violet-bright: #d68bff;
  --violet-dark: #6c1bb0;
  --cyan: #22e6e0;
  --cyan-bright: #8dfffa;
  --magenta: #ff2fb0;

  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  --text: #f3eefc;
  --text-muted: #b9aed4;
  --text-faint: #8779a8;

  --surface: var(--ink-850);
  --surface-raised: var(--ink-800);
  --border: rgba(167, 43, 255, 0.28);
  --border-cyan: rgba(34, 230, 224, 0.28);
  --border-soft: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 0 1px rgba(167, 43, 255, 0.25), 0 16px 44px rgba(167, 43, 255, 0.22);
  --shadow-glow-cyan: 0 0 0 1px rgba(34, 230, 224, 0.28), 0 16px 44px rgba(34, 230, 224, 0.2);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 40px;
  --space-6: 64px;
  --space-7: 100px;
  --space-8: clamp(24px, 7vh, 180px);

  --font: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1180px;

  --cut: 18px; /* signature angular corner-cut size */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  background: var(--ink-950);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  direction: rtl;
  position: relative;
}

/* subtle grain texture for tactile, non-templated feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.wrap { max-width: var(--container); margin-inline: auto; padding-inline: var(--space-4); }
section { position: relative; }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
}
h1 { font-size: clamp(42px, 8vw, 88px); }
h2 { font-size: clamp(32px, 4.8vw, 50px); margin-top: var(--space-3); margin-bottom: var(--space-4); }
h3 { font-size: clamp(20px, 2.6vw, 26px); letter-spacing: -0.01em; }

p { color: var(--text-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--cyan-bright);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  padding: 5px 14px 5px 6px;
  background: rgba(34, 230, 224, 0.08);
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--magenta);
  flex-shrink: 0;
}

.section-head { max-width: 640px; margin-bottom: var(--space-5); }
.section-head.center { max-width: 680px; margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { margin-inline: auto; }
.section-head p { font-size: 18px; }

/* ---------- buttons (clipped corner, not pill) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 30px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.btn:focus-visible { outline: 2px solid var(--cyan-bright); outline-offset: 3px; }
.btn-primary {
  background: linear-gradient(115deg, var(--violet-bright), var(--violet) 55%, var(--cyan));
  color: #0a0713;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-3px); filter: brightness(1.08); }

.btn-whatsapp { background: var(--whatsapp); color: #06170d; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35); }
.btn-whatsapp:hover { transform: translateY(-3px); background: var(--whatsapp-dark); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1.5px solid var(--border-soft);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan-bright); transform: translateY(-2px); }

.btn-sm { padding: 11px 20px; font-size: 14px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10, 7, 19, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.header-row { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 42px; width: auto; }

/* ---------- hero (asymmetric, right-heavy) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: var(--space-8);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(10,7,19,0.98) 6%, rgba(10,7,19,0.6) 42%, rgba(10,7,19,0.3) 62%, rgba(10,7,19,0.8) 100%),
    linear-gradient(95deg, rgba(10,7,19,0.65) 10%, transparent 60%),
    linear-gradient(120deg, rgba(167,43,255,0.16), transparent 45%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero h1 {
  background: linear-gradient(100deg, #fff 8%, var(--violet-bright) 48%, var(--cyan-bright) 92%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { margin-top: var(--space-3); font-size: clamp(16px, 2.2vw, 20px); color: var(--text-muted); max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: var(--space-5); }

.scroll-cue {
  position: absolute; bottom: var(--space-4); left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--text-faint); font-size: 11px; letter-spacing: 0.2em;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bob 2.2s ease-in-out infinite; text-transform: uppercase; font-weight: 700;
}
.scroll-cue span:first-child { width: 1px; height: 26px; background: linear-gradient(var(--cyan), transparent); }
@keyframes bob { 0%,100%{ transform: translateX(-50%) translateY(0);} 50%{ transform: translateX(-50%) translateY(8px);} }

/* diagonal accent divider between sections */
.diagonal-divider {
  height: 46px;
  background: linear-gradient(100deg, var(--violet), var(--cyan));
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  opacity: 0.12;
}

/* ---------- stats ticker (marquee) ---------- */
.stats-band {
  overflow: hidden;
  border-block: 1px solid var(--border-soft);
  background: linear-gradient(100deg, rgba(167,43,255,0.07), rgba(34,230,224,0.05));
  padding-block: var(--space-4);
  direction: ltr; text-align: left;
}
.stats-track {
  display: flex;
  direction: ltr;
  gap: 64px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.stat { display: flex; align-items: baseline; gap: 10px; white-space: nowrap; }
.stat .num {
  font-size: clamp(24px, 3.2vw, 34px); font-weight: 900;
  background: linear-gradient(120deg, var(--violet-bright), var(--cyan-bright));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .lbl { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.stat .sep { color: var(--text-faint); font-size: 18px; }
@media (prefers-reduced-motion: reduce) { .stats-track { animation: none; flex-wrap: wrap; } }

/* ---------- showreel ---------- */
.showreel-frame {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--border);
  aspect-ratio: 9/16;
  max-width: 420px;
  margin-inline: auto;
  background: var(--ink-900);
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
}
.showreel-frame video, .showreel-frame img { width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  background: rgba(10,7,19,0.28);
  transition: background 0.25s ease;
}
.video-play:hover { background: rgba(10,7,19,0.12); }
.video-play::before {
  content: '';
  position: absolute;
  width: 88px; height: 88px;
  border: 2px solid rgba(167,43,255,0.55);
  animation: pulse-ring 2.4s ease-out infinite;
}
.video-play-icon {
  position: relative;
  width: 74px; height: 74px;
  background: linear-gradient(120deg, var(--violet-bright), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(167,43,255,0.4);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.video-play-icon svg { width: 26px; height: 26px; fill: var(--ink-950); margin-inline-start: 4px; }
@keyframes pulse-ring { 0% { transform: scale(0.85); opacity: 0.9; } 100% { transform: scale(1.35); opacity: 0; } }
.is-playing .video-play { display: none; }

/* ---------- packages: ticket-stub cards ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.pkg-card {
  position: relative;
  background: linear-gradient(165deg, var(--surface-raised), var(--ink-900));
  border: 1px solid var(--border-soft);
  padding: var(--space-4);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}
.pkg-card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: var(--shadow-glow); }
.pkg-card.featured { border-color: var(--border-cyan); background: linear-gradient(165deg, #241c3a, var(--ink-900)); box-shadow: var(--shadow-glow-cyan); }
.pkg-badge {
  position: absolute; top: -13px; right: var(--space-4);
  background: linear-gradient(115deg, var(--violet-bright), var(--cyan));
  color: var(--ink-950); font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
  padding: 5px 14px;
  clip-path: polygon(6px 0, 100% 0, 100% 100%, 0 100%, 0 6px);
}
.pkg-icon { font-size: 30px; margin-bottom: var(--space-2); }
.pkg-card h3 { margin-bottom: 4px; }
.pkg-desc { font-size: 13px; color: var(--text-faint); margin-bottom: var(--space-2); }
.pkg-price { font-size: 28px; font-weight: 900; color: var(--cyan-bright); margin-top: var(--space-2); }
.pkg-price small { font-size: 13px; font-weight: 500; color: var(--text-faint); }
.pkg-tear {
  margin-block: var(--space-3);
  border-top: 2px dashed var(--border-soft);
  position: relative;
}
.pkg-tear::before, .pkg-tear::after {
  content: ''; position: absolute; top: -7px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--ink-950);
}
.pkg-tear::before { right: -22px; }
.pkg-tear::after { left: -22px; }
.pkg-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pkg-card li { font-size: 14px; color: var(--text-muted); padding-right: 20px; position: relative; }
.pkg-card li::before { content: '✓'; position: absolute; right: 0; color: var(--cyan); font-weight: 700; }
.pkg-note { text-align: center; color: var(--text-faint); font-size: 14px; margin-top: var(--space-5); }
.pkg-small-events { margin-top: var(--space-5); text-align: center; }
.pkg-small-events-label { font-size: 14px; color: var(--text-faint); margin-bottom: var(--space-3); }
.pkg-chip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-2); }
.pkg-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border-soft);
  padding: 10px 18px;
  clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.pkg-chip:hover { border-color: var(--border-cyan); transform: translateY(-2px); }
.pkg-chip-name { font-size: 13px; font-weight: 700; color: var(--text); }
.pkg-chip-price { font-size: 13px; font-weight: 800; color: var(--cyan-bright); }
.pkg-more { margin-top: var(--space-6); border-top: 1px solid var(--border-soft); padding-top: var(--space-5); }
.pkg-more-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }

/* ---------- add-ons ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-3); }
.addon-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  padding: var(--space-3);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
}
.addon-card:hover { transform: translateY(-4px); border-color: var(--border-cyan); }
.addon-icon { font-size: 26px; margin-bottom: 8px; }
.addon-card .name { font-size: 14px; font-weight: 700; }
.addon-card .price { font-size: 13px; color: var(--cyan-bright); margin-top: 4px; }
.addon-note { text-align: center; color: var(--text-faint); font-size: 13px; margin-top: var(--space-4); }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: var(--space-4); align-items: center; }
.team-card {
  background: linear-gradient(165deg, var(--surface-raised), var(--ink-900));
  border: 1px solid var(--border-soft);
  padding: var(--space-4);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%, 0 22px);
}
.team-card:hover { transform: translateY(-6px); border-color: var(--border); }
.team-card.lead {
  padding: var(--space-5) var(--space-4);
  border-color: var(--border-cyan);
  box-shadow: var(--shadow-glow-cyan);
  background: linear-gradient(165deg, #241c3a, var(--ink-900));
}
.team-photo {
  width: 100%; aspect-ratio: 3/4;
  overflow: hidden; margin-bottom: var(--space-3);
  background: var(--ink-900);
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.team-card.lead .team-photo { aspect-ratio: 4/5; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.05); }
.team-photo.placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 54px; font-weight: 900; color: var(--violet-bright);
  background: radial-gradient(circle at 50% 30%, rgba(167,43,255,0.16), transparent 60%), var(--ink-900);
}
.team-card h3 { margin-bottom: 2px; }
.team-role { color: var(--cyan-bright); font-size: 13px; letter-spacing: 0.05em; margin-bottom: var(--space-2); }
.team-card p { font-size: 14px; }
.team-badge {
  display: inline-block; margin-top: var(--space-2); font-size: 11px; color: var(--text-faint);
  border: 1px solid var(--border-soft); padding: 3px 12px;
  clip-path: polygon(6px 0, 100% 0, 100% 100%, 0 100%, 0 6px);
}

/* ---------- gallery (masonry rhythm via spans) ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-flow: dense; gap: var(--space-2); }
.g-item { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.g-item.g-wide { grid-column: span 2; aspect-ratio: 2/1; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.4s ease; filter: saturate(1.1); }
.g-item:hover img { transform: scale(1.08); }
.g-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(167,43,255,0.22), rgba(34,230,224,0.14));
  opacity: 0; transition: opacity 0.35s ease;
  mix-blend-mode: color;
}
.g-item:hover::after { opacity: 1; }
.g-item.g-proof {
  cursor: default;
  background: var(--surface);
  border-right: 3px solid var(--cyan);
}
.g-proof-inner { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: var(--space-3); }
.g-proof-stars { color: var(--violet-bright); letter-spacing: 2px; font-size: 13px; margin-bottom: 8px; }
.g-proof-inner p { font-size: 13px; color: var(--text); line-height: 1.5; }
.g-proof-who { margin-top: 8px; font-size: 12px; color: var(--cyan-bright); font-weight: 600; }

.lightbox { display: none; position: fixed; inset: 0; background: rgba(6,4,12,0.95); z-index: 200; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; box-shadow: var(--shadow-md); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; color: #fff; width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 22px; transition: background 0.2s ease;
  clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(167,43,255,0.3); }
.lb-close { top: 22px; left: 22px; }
.lb-prev { top: 50%; transform: translateY(-50%); right: 22px; }
.lb-next { top: 50%; transform: translateY(-50%); left: 22px; }
.lb-counter { position: absolute; bottom: 22px; color: var(--text-faint); font-size: 13px; }

/* ---------- video gallery ---------- */
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.video-card {
  position: relative; aspect-ratio: 9/16;
  overflow: hidden; background: var(--ink-900);
  border: 1px solid var(--border-soft);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.video-card video, .video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-card .video-play-icon { width: 56px; height: 56px; }
.video-card .video-play-icon svg { width: 20px; height: 20px; }
.video-card .video-play::before { width: 66px; height: 66px; }

/* ---------- reviews ---------- */
.review-tabs { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; margin-bottom: var(--space-5); border: 1px solid var(--border-soft); width: fit-content; margin-inline: auto; }
.review-tab {
  padding: 11px 26px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 1px solid var(--border-soft);
}
.review-tab:last-child { border-left: none; }
.review-tab.active { color: var(--ink-950); background: linear-gradient(115deg, var(--violet-bright), var(--cyan)); }
.review-tab:not(.active):hover { color: var(--cyan-bright); }
.review-panel { display: none; }
.review-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.review-card {
  background: var(--surface);
  border-right: 3px solid var(--cyan);
  padding: var(--space-4);
}
.review-stars { color: var(--violet-bright); letter-spacing: 2px; margin-bottom: var(--space-2); font-size: 15px; }
.review-card p { font-size: 15px; color: var(--text); }
.review-who { margin-top: var(--space-2); font-size: 13px; color: var(--cyan-bright); font-weight: 600; }
.reviews-cta { text-align: center; margin-top: var(--space-5); }

/* ---------- quick proof strip (near the top, on purpose) ---------- */
.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.proof-chip {
  background: var(--surface);
  border-right: 3px solid var(--cyan);
  padding: var(--space-3) var(--space-4);
}
.proof-stars { color: var(--violet-bright); letter-spacing: 2px; font-size: 13px; margin-bottom: 6px; }
.proof-chip p { font-size: 14px; color: var(--text); }
.proof-who { margin-top: 6px; font-size: 12px; color: var(--cyan-bright); font-weight: 600; }

/* ---------- forms ---------- */
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.form-field input, .form-field select {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border-soft);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--cyan); }
.form-field select option { color: #1a1420; background: #fff; }
.form-field.error input { border-color: var(--magenta); }
.form-error { font-size: 12px; color: var(--magenta); min-height: 16px; }
.lead-form .btn { grid-column: 1 / -1; justify-content: center; margin-top: var(--space-2); }

/* ---------- final cta ---------- */
.final-cta {
  text-align: center;
  background: linear-gradient(160deg, var(--ink-900), #1a1030 145%);
  border: 1px solid var(--border);
  padding: var(--space-6) var(--space-4);
  position: relative;
  overflow: hidden;
  clip-path: polygon(32px 0, 100% 0, 100% calc(100% - 32px), calc(100% - 32px) 100%, 0 100%, 0 32px);
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(167,43,255,0.18), transparent 60%), radial-gradient(circle at 100% 100%, rgba(34,230,224,0.12), transparent 55%);
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta > .final-cta-canvas { position: absolute; inset: 0; z-index: 0; opacity: 0.8; pointer-events: none; }
.final-cta h2 { margin-bottom: var(--space-2); }
.final-cta p { max-width: 480px; margin-inline: auto; margin-bottom: var(--space-4); }
.final-form { max-width: 560px; margin: var(--space-5) auto 0; text-align: right; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border-soft); padding-block: var(--space-6) var(--space-4); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-4); flex-wrap: wrap; padding-bottom: var(--space-5); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 40px; }
.footer-brand p { font-size: 13px; color: var(--text-faint); margin-top: 4px; }
.footer-links { display: flex; align-items: center; gap: 12px; }
.footer-icon-link {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border-soft);
  background: rgba(255,255,255,0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
}
.footer-icon-link:hover { transform: translateY(-3px); border-color: var(--cyan); background: rgba(34,230,224,0.1); }
.footer-icon-link svg { width: 19px; height: 19px; fill: var(--text); }
.footer-phone { font-size: 14px; color: var(--text-muted); }
.footer-legal { border-top: 1px solid var(--border-soft); padding-top: var(--space-4); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); }
.footer-legal-links { display: flex; gap: var(--space-3); font-size: 13px; color: var(--text-faint); }
.footer-legal p { font-size: 12px; color: var(--text-faint); }
.footer-copyright a { color: var(--text); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.footer-copyright a:hover { color: var(--violet-bright); }

/* ---------- floating WA (the single, persistent contact button, paired
   with the UserWay widget so both stay together while scrolling) ---------- */
.float-wa {
  position: fixed; bottom: 24px; left: 24px;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  z-index: 90;
  animation: wa-pulse 2.6s infinite;
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
}
.float-wa svg { width: 30px; height: 30px; fill: #06170d; }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- reveal / motion ---------- */
/* ---------- spotlight-follows-cursor hover (desktop only, see JS) ---------- */
.pkg-card::before, .addon-card::before, .team-card::before {
  content: ''; position: absolute; inset: 0; z-index: 5;
  pointer-events: none; opacity: 0; transition: opacity 0.3s ease;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(34,230,224,0.22), transparent 70%);
}
.pkg-card:hover::before, .addon-card:hover::before, .team-card:hover::before { opacity: 1; }
.addon-card, .team-card { position: relative; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }

.legal-page { padding-block: var(--space-6); }
.legal-page .wrap { max-width: 760px; }
.legal-page h1 { font-size: clamp(28px, 5vw, 40px); margin-bottom: var(--space-2); }
.legal-page .updated { color: var(--text-faint); font-size: 13px; margin-bottom: var(--space-6); }
.legal-page section { margin-bottom: var(--space-5); }
.legal-page h2 { font-size: 20px; margin-top: 0; margin-bottom: var(--space-2); }
.legal-page p, .legal-page li { font-size: 15px; color: var(--text-muted); }
.legal-page ul { padding-right: 20px; margin-top: var(--space-2); }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--cyan-bright); font-size: 14px; font-weight: 600;
  margin-bottom: var(--space-5);
  border: 1px solid var(--border-soft); padding: 8px 18px;
  clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
}
.back-link:hover { border-color: var(--cyan); }

.skip-link {
  position: absolute; right: -9999px; top: 0;
  background: var(--cyan-bright); color: var(--ink-950);
  padding: 12px 20px; z-index: 999; font-weight: 700;
}
.skip-link:focus { right: var(--space-3); top: var(--space-3); }

:focus-visible { outline: 2px solid var(--cyan-bright); outline-offset: 3px; }

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

/* ============ responsive ============ */
@media (max-width: 1024px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-more-grid { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .team-card.lead { order: -1; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .g-item.g-wide { grid-column: span 2; }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .review-panel.active { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --space-7: 72px; --space-8: 96px; --cut: 14px; }
  .lead-form { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero { min-height: 82vh; }
  .header-row .btn-sm { padding: 9px 16px; font-size: 13px; }
  .pkg-grid { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: 1fr; }
  .pkg-more-grid { grid-template-columns: 1fr 1fr; }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item.g-wide { grid-column: span 2; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .review-panel.active { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; }
  .stats-track { gap: 36px; }
}
