/* ==========================================================================
   SparkElectric — stylesheet
   Single file, no build step, mobile-first. Organised top-to-bottom:
   tokens → base → layout → components → header → hero → sections → footer
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens — brand colours sampled from the Neon Palm logo
   -------------------------------------------------------------------------- */
:root {
  --night-950: #0b0922;      /* top bar, footer, skyline ground */
  --night-900: #110e2e;
  --night-850: #17133f;      /* Night — header, dark sections, icon tiles */
  --night-800: #1f1a52;
  --night-700: #2c2566;
  --lavender: #b8b2e6;       /* meta text on dark (9:1 on Night) */

  --flamingo: #ff4f7b;       /* Flamingo — script, trunk, stars */
  --flamingo-lit: #ff6a98;   /* lit script on dark */
  --flamingo-600: #d92d63;   /* buttons (4.7:1 with white text) */
  --flamingo-700: #bd2255;
  --aqua: #3df2f0;           /* Neon Aqua — tubes and accents on dark */
  --aqua-500: #12b7c9;       /* fronds on light */
  --lagoon: #0e97a8;         /* Lagoon — icons on light */
  --lagoon-700: #0b7a89;     /* text links on light (5:1 on white) */
  --blush: #fff1ee;          /* Blush — light sections */
  --blush-200: #f8ddd7;

  --ink: #17133f;
  --text: #3f3a5c;
  --muted: #625d7d;          /* 6.2:1 on white */
  --line: #ece6ee;
  --error: #c4203b;

  --glow-pink: 0 0 1px #fff, 0 0 6px rgba(255, 79, 123, .9), 0 0 18px rgba(255, 79, 123, .65), 0 0 44px rgba(255, 79, 123, .45);
  --glow-aqua: 0 0 1px #fff, 0 0 6px rgba(61, 242, 240, .85), 0 0 18px rgba(61, 242, 240, .55), 0 0 44px rgba(61, 242, 240, .35);
  --glow-off: 0 0 0 transparent, 0 0 0 transparent, 0 0 0 transparent, 0 0 0 transparent;
  --tube-off: rgba(255, 255, 255, .13);

  --font-display: "Tilt Neon", "Trebuchet MS", sans-serif;
  --font-script: "Sacramento", "Segoe Script", cursive;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(4rem, 8vw, 7rem);
  --header-h: 68px;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(23, 19, 63, .06), 0 4px 12px rgba(23, 19, 63, .06);
  --shadow: 0 8px 20px rgba(23, 19, 63, .08), 0 20px 44px rgba(23, 19, 63, .1);
  --shadow-lg: 0 14px 34px rgba(11, 9, 34, .3), 0 34px 80px rgba(11, 9, 34, .35);

  --ease: cubic-bezier(.2, .7, .2, 1);
  --transition: 200ms var(--ease);
}

@media (min-width: 900px) {
  :root { --header-h: 80px; }
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--lagoon-700); text-underline-offset: .18em; }

h1, h2, h3 {
  margin: 0 0 .5em;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.005em;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.nowrap { white-space: nowrap; }

::selection { background: var(--flamingo); color: #fff; }
:focus-visible { outline: 3px solid var(--flamingo); outline-offset: 3px; }

.skip-link {
  position: absolute;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .6rem 1rem;
  border-radius: 8px;
  background: var(--flamingo-600);
  color: #fff;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--transition);
}
.skip-link:focus { transform: none; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--star { width: .8em; height: .8em; fill: var(--flamingo); stroke: none; }

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: calc(820px + 2 * var(--gutter)); }

.section { padding-block: var(--section-y); }
.section--blush { background: var(--blush); }

.section-head {
  max-width: 46rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.section-head p:last-child { margin: 0; font-size: 1.0625rem; color: var(--muted); }

/* Eyebrow: the logo's lightning trunk as a bullet */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .9rem;
  font: 700 .8125rem/1.2 var(--font-sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lagoon-700);
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 12px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24' fill='none' stroke='%23ff4f7b' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 2 5 12h6L4 22'/%3E%3C/svg%3E") center / contain no-repeat;
}
.eyebrow--light { color: var(--aqua); }

.section h2,
.cta h2 { font-size: clamp(2.15rem, 1.35rem + 3vw, 3.6rem); }

/* Script accent: Sacramento, thickened into a neon tube with a same-colour stroke */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.45em;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--flamingo);
  -webkit-text-stroke: .024em currentColor;
  paint-order: stroke fill;
}

/* --------------------------------------------------------------------------
   4. Components
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 48px;
  padding: .75rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font: 700 .9375rem/1.2 var(--font-sans);
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition),
    border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn .icon { width: 1.2em; height: 1.2em; stroke-width: 2.2; }

.btn--primary {
  background: var(--flamingo-600);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 106, 152, .35), 0 10px 26px -10px rgba(255, 79, 123, .9);
}
.btn--primary:hover {
  background: var(--flamingo-700);
  box-shadow: 0 0 0 1px rgba(255, 106, 152, .6), 0 0 22px rgba(255, 79, 123, .55), 0 12px 28px -10px rgba(255, 79, 123, .9);
}
.btn--ghost { border-color: rgba(61, 242, 240, .55); color: #fff; background: transparent; }
.btn--ghost:hover { border-color: var(--aqua); background: rgba(61, 242, 240, .1); box-shadow: 0 0 18px rgba(61, 242, 240, .3); }
.btn--dark { background: var(--night-850); color: #fff; }
.btn--dark:hover { background: var(--night-950); box-shadow: 0 0 0 1px rgba(61, 242, 240, .4), 0 0 18px rgba(61, 242, 240, .25); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--blush); }

.btn--lg { min-height: 56px; padding: .9rem 1.6rem; font-size: 1rem; }
.btn--xl { min-height: 64px; padding: 1rem 2rem; font-size: 1.25rem; }
.btn--block { width: 100%; }

/* Long labels may wrap on narrow phones instead of pushing the layout wider */
@media (max-width: 479px) {
  .btn { white-space: normal; text-align: center; }
  .btn--lg { padding-inline: 1.2rem; }
}

.pulse {
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 8px var(--aqua);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 8px var(--aqua), 0 0 0 0 rgba(61, 242, 240, .55); }
  70%, 100% { box-shadow: 0 0 8px var(--aqua), 0 0 0 9px rgba(61, 242, 240, 0); }
}

.stars { width: 110px; height: 22px; fill: var(--flamingo); }

/* Neon text: lit by default. With JS, it waits dark until its sign is switched on, then flickers up. */
.neon-text { --on: var(--aqua); --glow: var(--glow-aqua); color: var(--on); text-shadow: var(--glow); }
.neon-text--pink { --on: var(--flamingo-lit); --glow: var(--glow-pink); }

.js [data-hero]:not(.is-lit) .neon-text,
.js [data-neon]:not(.is-lit) .neon-text { color: var(--tube-off); text-shadow: var(--glow-off); }
.js .is-lit .neon-text { animation: neon-text-on 1.5s var(--d, 0s) both; }

@keyframes neon-text-on {
  0%, 7%, 12%, 19%, 27% { color: var(--tube-off); text-shadow: var(--glow-off); }
  4%, 10%, 15%, 23%, 32%, 100% { color: var(--on); text-shadow: var(--glow); }
}
@keyframes neon-on {
  0%, 7%, 12%, 19%, 27% { opacity: 0; }
  4%, 10%, 15%, 23%, 32%, 100% { opacity: 1; }
}

/* --------------------------------------------------------------------------
   5. Top bar + header
   -------------------------------------------------------------------------- */
.topbar { display: none; background: var(--night-950); color: rgba(232, 228, 255, .72); font-size: .8125rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar__item, .topbar__list li { display: inline-flex; align-items: center; gap: .5rem; margin: 0; }
.topbar__list { display: flex; gap: 1.75rem; }
.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar .icon { width: 15px; height: 15px; color: var(--flamingo-lit); }

@media (min-width: 900px) {
  .topbar { display: block; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 19, 63, .97);
  border-bottom: 1px solid rgba(61, 242, 240, .12);
  transition: box-shadow var(--transition), background-color var(--transition);
}
@supports (backdrop-filter: blur(10px)) {
  .header { background: rgba(23, 19, 63, .84); backdrop-filter: saturate(1.4) blur(14px); }
}
.header.is-scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, .35); }

.header__inner { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.brand { flex: none; margin-left: -6px; }
/* logo-light.svg carries padding for its glow, so the lit artwork is ~86% of this height */
.brand img { width: auto; height: 46px; }
.header__actions { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
.header__cta { display: none; }
.header__phone { display: none; }

@media (min-width: 480px) {
  .brand img { height: 50px; }
  .header__cta { display: inline-flex; }
}
@media (min-width: 900px) {
  .brand img { height: 58px; }
}

/* Mobile menu panel */
.nav-toggle {
  display: inline-grid;
  place-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(61, 242, 240, .28);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2.5px; border-radius: 2px; background: #fff; transition: transform var(--transition), opacity var(--transition); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  padding: .5rem var(--gutter) 1.5rem;
  background:
    radial-gradient(60% 40% at 100% 100%, rgba(255, 79, 123, .18), transparent 70%),
    var(--night-850);
  border-top: 1px solid rgba(61, 242, 240, .12);
  box-shadow: 0 24px 40px rgba(0, 0, 0, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-open .nav { opacity: 1; visibility: visible; transform: none; }
.nav-open { overflow: hidden; }

.nav__list a {
  display: block;
  padding: .95rem .25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font: 400 1.6rem/1.1 var(--font-display);
  color: #fff;
  text-decoration: none;
}
.nav__list a:hover { color: var(--aqua); text-shadow: 0 0 14px rgba(61, 242, 240, .6); }
.nav__cta { display: grid; gap: .75rem; margin-top: 1.25rem; }

@media (min-width: 1080px) {
  .nav-toggle, .nav__cta { display: none; }
  .nav {
    position: static;
    height: auto;
    overflow: visible;
    margin-left: auto;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  .nav__list { display: flex; gap: 1.2rem; }
  .nav__list a {
    position: relative;
    padding: .5rem 0;
    white-space: nowrap;
    border: 0;
    font: 600 .9375rem var(--font-sans);
    color: rgba(255, 255, 255, .8);
  }
  .nav__list a:hover { color: #fff; text-shadow: none; }
  .nav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .05rem;
    height: 2px;
    border-radius: 2px;
    background: var(--flamingo-lit);
    box-shadow: 0 0 8px var(--flamingo);
    transform: scaleX(0);
    transition: transform var(--transition);
  }
  .nav__list a:hover::after,
  .nav__list a.is-active::after { transform: scaleX(1); }
  .nav__list a.is-active { color: #fff; }
  .header__actions { margin-left: 1.25rem; }
}

@media (min-width: 1280px) {
  .header__phone {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: #fff;
    font: 400 1.3rem/1.1 var(--font-display);
    text-decoration: none;
    white-space: nowrap;
  }
  .header__phone small { display: block; font: 600 .6875rem var(--font-sans); letter-spacing: .1em; text-transform: uppercase; color: var(--lavender); }
  .header__phone-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(61, 242, 240, .45);
    color: var(--aqua);
    box-shadow: 0 0 14px rgba(61, 242, 240, .25), inset 0 0 8px rgba(61, 242, 240, .15);
  }
}

/* --------------------------------------------------------------------------
   6. Hero — Miami Deco night, a neon sign that flickers on, lit skyline
   -------------------------------------------------------------------------- */
.hero {
  --skyline-h: clamp(120px, 12.5vw, 240px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(1.75rem, 4.5vw, 3.75rem);
  padding-bottom: calc(var(--skyline-h) + .75rem);
  color: rgba(232, 228, 255, .8);
  background:
    radial-gradient(70% 42% at 50% 100%, rgba(255, 79, 123, .34), transparent 70%),
    radial-gradient(38% 34% at 84% 26%, rgba(61, 242, 240, .1), transparent 70%),
    radial-gradient(40% 30% at 10% 8%, rgba(120, 90, 255, .14), transparent 70%),
    linear-gradient(180deg, #0b0922 0%, #141040 40%, #28195c 74%, #4b2173 100%);
}

/* Stars: a few pin-points in the upper sky, one layer gently twinkles */
.hero__sky { position: absolute; z-index: -1; inset: 0 0 30% 0; pointer-events: none; }
.hero__sky::before,
.hero__sky::after { content: ""; position: absolute; inset: 0; }
.hero__sky::before {
  opacity: .75;
  background:
    radial-gradient(1.2px 1.2px at 6% 14%, #fff 50%, transparent 55%),
    radial-gradient(1px 1px at 17% 42%, #fff 50%, transparent 55%),
    radial-gradient(1.4px 1.4px at 29% 9%, #fff 50%, transparent 55%),
    radial-gradient(1px 1px at 38% 31%, #fff 50%, transparent 55%),
    radial-gradient(1.2px 1.2px at 47% 6%, #fff 50%, transparent 55%),
    radial-gradient(1px 1px at 58% 22%, #fff 50%, transparent 55%),
    radial-gradient(1.3px 1.3px at 66% 48%, #fff 50%, transparent 55%),
    radial-gradient(1px 1px at 74% 12%, #fff 50%, transparent 55%),
    radial-gradient(1.2px 1.2px at 86% 36%, #fff 50%, transparent 55%),
    radial-gradient(1px 1px at 94% 8%, #fff 50%, transparent 55%);
}
.hero__sky::after {
  background:
    radial-gradient(1.6px 1.6px at 11% 27%, #fff 50%, transparent 55%),
    radial-gradient(1.4px 1.4px at 33% 52%, #fff 50%, transparent 55%),
    radial-gradient(1.6px 1.6px at 52% 38%, #fff 50%, transparent 55%),
    radial-gradient(1.4px 1.4px at 79% 55%, #fff 50%, transparent 55%),
    radial-gradient(1.6px 1.6px at 97% 24%, #fff 50%, transparent 55%);
  animation: twinkle 5s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: .2; } to { opacity: .9; } }

.hero__grid { display: grid; gap: 1.75rem; align-items: center; }
.hero__visual { order: -1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1.25rem;
  padding: .45rem .95rem;
  border: 1px solid rgba(61, 242, 240, .35);
  border-radius: 999px;
  background: rgba(61, 242, 240, .07);
  color: #fff;
  font-size: .8125rem;
  font-weight: 600;
}

.hero__title {
  margin: 0 0 1.35rem;
  font-size: clamp(2.6rem, 1.55rem + 4.2vw, 4.6rem);
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 24px rgba(255, 255, 255, .2);
}
/* "bright." — the neon script on its own line, slightly tucked under the first line */
.hero__script {
  display: block;
  margin: -.02em 0 .3em .45em;
  font-family: var(--font-script);
  font-size: 1.6em;
  line-height: .95;
  -webkit-text-stroke: .022em currentColor;
  paint-order: stroke fill;
}

.hero__lead { max-width: 36rem; margin-bottom: 1.9rem; font-size: clamp(1.02rem, .95rem + .35vw, 1.2rem); color: rgba(232, 228, 255, .84); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.25rem;
  margin-top: 2.1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.hero__proof li { display: grid; gap: .2rem; }
.hero__proof strong { display: flex; align-items: center; gap: .25rem; font: 400 1.75rem/1 var(--font-display); color: #fff; }
.hero__proof span { font-size: .8125rem; color: var(--lavender); }

/* Phones and tablets: the sign leads and the copy is centred beneath it */
@media (max-width: 959px) {
  .hero__copy { text-align: center; }
  .hero__script { margin-left: 0; }
  .hero__lead { margin-inline: auto; }
  .hero__ctas { justify-content: center; }
  .hero__proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; max-width: 34rem; margin-inline: auto; }
  .hero__proof strong { justify-content: center; }
}
@media (max-width: 479px) {
  .hero__ctas .btn { flex: 1 1 100%; }
  .hero__proof { gap: .5rem; }
  .hero__proof strong { font-size: 1.45rem; }
  .hero__proof span { font-size: .75rem; line-height: 1.35; }
}

@media (min-width: 960px) {
  .hero { padding-bottom: calc(var(--skyline-h) * .62); }
  .hero__grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: 3.5rem; }
  .hero__visual { order: 0; }
}

/* The sign: neon tubes mounted on a clear acrylic backer with four stand-off screws */
.sign {
  position: relative;
  width: min(66vw, 260px);
  margin-inline: auto;
  padding: 10% 9% 8%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: linear-gradient(160deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .02) 55%, rgba(255, 255, 255, .06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 30px 60px -24px rgba(0, 0, 0, .7);
}
/* Light spilling onto the acrylic once the tubes are lit */
.sign::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(55% 42% at 50% 36%, rgba(61, 242, 240, .16), transparent 70%),
    radial-gradient(45% 40% at 48% 66%, rgba(255, 79, 123, .16), transparent 70%);
  pointer-events: none;
}
.js [data-hero]:not(.is-lit) .sign::before { opacity: 0; }
.js .is-lit .sign::before { animation: neon-on 1.5s .6s both; }

.sign__screw {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #efeefe, #8e89b8 55%, #3b3668);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.sign__screw:nth-of-type(1) { top: 12px; left: 12px; }
.sign__screw:nth-of-type(2) { top: 12px; right: 12px; }
.sign__screw:nth-of-type(3) { bottom: 12px; left: 12px; }
.sign__screw:nth-of-type(4) { bottom: 12px; right: 12px; }

.sign__art { position: relative; width: 100%; height: auto; overflow: visible; }
.sign__glass { stroke: rgba(255, 255, 255, .12); }
.js [data-hero]:not(.is-lit) .tube { opacity: 0; }
.js .is-lit .tube { animation: neon-on 1.5s var(--d, 0s) both; }

/* A pulse of current runs down the lightning trunk every few seconds */
.sign__pulse {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 9 200;
  stroke-dashoffset: 9;
  opacity: 0;
  filter: url(#neon-glow);
}
.js .is-lit .sign__pulse { animation: current 6s 3.2s infinite; }
@keyframes current {
  0% { stroke-dashoffset: 9; opacity: 1; }
  16% { stroke-dashoffset: -100; opacity: 1; }
  16.1%, 100% { stroke-dashoffset: -100; opacity: 0; }
}

.sign__open {
  position: relative;
  display: flex;
  justify-content: center;
  gap: .45em;
  margin: 7% 0 0;
  font: 400 clamp(1.7rem, 1.2rem + 2vw, 3rem)/1 var(--font-display);
  letter-spacing: .09em;
  text-transform: uppercase;
}

@media (min-width: 600px) {
  .sign { width: min(48vw, 360px); }
}
@media (min-width: 960px) {
  .sign { width: min(100%, 430px); border-radius: 30px; }
}

/* Skyline: Miami Deco towers with neon trims and a few lit windows */
.hero__skyline {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: var(--skyline-h);
}
.skyline__far { fill: #261c5c; }
.skyline__near { fill: #0f0b2c; }
.skyline__lines { fill: none; stroke: #231b55; stroke-width: 3; }
.skyline__win--off { fill: #1b1646; }
.skyline__win--warm { fill: #ffd58a; opacity: .82; }
.skyline__win--pink { fill: #ff9ebb; opacity: .8; }
.skyline__win--aqua { fill: #9ff6f5; opacity: .72; }
.skyline__neon { fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.skyline__neon--aqua { stroke: var(--aqua); }
.skyline__neon--pink { stroke: var(--flamingo-lit); }
.skyline__beacon { fill: var(--flamingo-lit); animation: beacon 2.6s steps(1) infinite; }
.skyline__palms { fill: #07051a; }
@keyframes beacon { 0%, 60% { opacity: 1; } 61%, 100% { opacity: .15; } }

/* Pause the looping effects when the hero is off screen */
.hero.is-paused .pulse,
.hero.is-paused .sign__pulse,
.hero.is-paused .skyline__beacon,
.hero.is-paused .hero__sky::after { animation-play-state: paused; }

/* --------------------------------------------------------------------------
   7. Marquee — a strip of neon words
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  padding-block: 1rem;
  background: var(--night-950);
  border-top: 1px solid rgba(61, 242, 240, .2);
  border-bottom: 1px solid rgba(255, 79, 123, .2);
}
.marquee__track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee__list { display: flex; flex: none; }
.marquee__list li {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  padding-right: 1.6rem;
  font: 400 1.15rem/1 var(--font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--aqua);
  text-shadow: 0 0 10px rgba(61, 242, 240, .55);
}
.marquee__list li:nth-child(even) { color: var(--flamingo-lit); text-shadow: 0 0 10px rgba(255, 79, 123, .6); }
.marquee__list li::after {
  content: "";
  width: 12px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 24' fill='none' stroke='%23ffffff' stroke-opacity='.55' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 2 5 12h6L4 22'/%3E%3C/svg%3E") center / contain no-repeat;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   8. Trust strip
   -------------------------------------------------------------------------- */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust__grid { display: grid; gap: 1.25rem 2rem; padding-block: 1.9rem; }
.trust__item { display: flex; align-items: center; gap: .95rem; }
.trust__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: var(--night-850);
  color: var(--aqua);
  box-shadow: inset 0 0 0 1px rgba(61, 242, 240, .22);
}
.trust__icon .icon { width: 25px; height: 25px; filter: drop-shadow(0 0 3px rgba(61, 242, 240, .85)); }
.trust__item:nth-child(even) .trust__icon { color: var(--flamingo-lit); box-shadow: inset 0 0 0 1px rgba(255, 106, 152, .25); }
.trust__item:nth-child(even) .trust__icon .icon { filter: drop-shadow(0 0 3px rgba(255, 106, 152, .9)); }
.trust__item p { margin: 0; font-size: .875rem; line-height: 1.45; color: var(--muted); }
.trust__item strong { display: block; font-size: 1rem; color: var(--ink); }

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

/* --------------------------------------------------------------------------
   9. Services
   -------------------------------------------------------------------------- */
.services { display: grid; gap: 1rem; }
.service {
  padding: 1.6rem 1.5rem 1.5rem;
  border: 1px solid var(--blush-200);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 79, 123, .4);
  box-shadow: 0 0 0 1px rgba(255, 79, 123, .12), 0 18px 40px -14px rgba(255, 79, 123, .4);
}
.service__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.15rem;
  border-radius: 16px;
  background: var(--night-850);
  color: var(--aqua);
  transition: box-shadow var(--transition);
}
.service__icon .icon { width: 28px; height: 28px; stroke-width: 1.7; filter: drop-shadow(0 0 3px rgba(61, 242, 240, .9)); }
.service:nth-child(even) .service__icon { color: var(--flamingo-lit); }
.service:nth-child(even) .service__icon .icon { filter: drop-shadow(0 0 3px rgba(255, 106, 152, .95)); }
.service:hover .service__icon { box-shadow: 0 0 0 1px rgba(61, 242, 240, .35), 0 0 22px rgba(61, 242, 240, .3); }
.service:nth-child(even):hover .service__icon { box-shadow: 0 0 0 1px rgba(255, 106, 152, .4), 0 0 22px rgba(255, 79, 123, .35); }
.service h3 { margin-bottom: .45rem; font-size: 1.45rem; }
.service p { margin: 0; font-size: .95rem; color: var(--muted); }

/* Phones: icon beside the text keeps the list compact */
@media (max-width: 639px) {
  .service { display: grid; grid-template-columns: auto minmax(0, 1fr); column-gap: 1rem; padding: 1.25rem; }
  .service__icon { grid-row: span 2; width: 50px; height: 50px; margin: .1rem 0 0; }
  .service h3 { margin: .1rem 0 .3rem; font-size: 1.3rem; }
}
@media (min-width: 640px) {
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
}
@media (min-width: 1100px) {
  .services { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* --------------------------------------------------------------------------
   10. Emergency band
   -------------------------------------------------------------------------- */
.emergency {
  padding-block: clamp(3rem, 6vw, 4.5rem);
  color: rgba(232, 228, 255, .8);
  background:
    radial-gradient(45% 140% at 0% 50%, rgba(255, 79, 123, .26), transparent 70%),
    radial-gradient(35% 120% at 100% 50%, rgba(61, 242, 240, .1), transparent 70%),
    var(--night-850);
}
.emergency__inner { display: grid; gap: 1.5rem; align-items: center; }
.emergency__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--flamingo-lit);
  color: var(--flamingo-lit);
  box-shadow: 0 0 18px rgba(255, 79, 123, .55), inset 0 0 14px rgba(255, 79, 123, .35);
}
.emergency__icon .icon { width: 34px; height: 34px; filter: drop-shadow(0 0 4px var(--flamingo)); }
.emergency__kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .75rem;
  font: 700 .8125rem/1.2 var(--font-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--flamingo-lit);
}
.emergency__kicker .pulse { background: var(--flamingo-lit); box-shadow: 0 0 8px var(--flamingo); animation-name: pulse-pink; }
@keyframes pulse-pink {
  0% { box-shadow: 0 0 8px var(--flamingo), 0 0 0 0 rgba(255, 79, 123, .6); }
  70%, 100% { box-shadow: 0 0 8px var(--flamingo), 0 0 0 9px rgba(255, 79, 123, 0); }
}
.emergency h2 { margin-bottom: .6rem; font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem); color: #fff; }
.emergency p:last-child { max-width: 40rem; margin: 0; }

@media (max-width: 559px) {
  .emergency .btn--xl { width: 100%; font-size: 1.125rem; }
}
@media (min-width: 900px) {
  .emergency__inner { grid-template-columns: auto 1fr auto; gap: 2.5rem; }
  .emergency__icon { width: 88px; height: 88px; }
  .emergency__icon .icon { width: 42px; height: 42px; }
}

/* --------------------------------------------------------------------------
   11. Process
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: 1.25rem; }
.step {
  padding: 1.75rem 1.5rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
/* Step numbers as little neon rings */
.step__num {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.15rem;
  border: 2.5px solid var(--flamingo);
  border-radius: 50%;
  font: 400 1.7rem/1 var(--font-display);
  color: var(--flamingo-600);
  box-shadow: 0 0 12px rgba(255, 79, 123, .35), inset 0 0 10px rgba(255, 79, 123, .2);
}
.step:nth-child(even) .step__num { border-color: var(--aqua-500); color: var(--lagoon-700); box-shadow: 0 0 12px rgba(18, 183, 201, .35), inset 0 0 10px rgba(18, 183, 201, .2); }
.step h3 { margin-bottom: .45rem; font-size: 1.45rem; }
.step p { margin: 0; font-size: .95rem; color: var(--muted); }

@media (max-width: 699px) {
  .step { display: grid; grid-template-columns: auto minmax(0, 1fr); column-gap: 1rem; padding: 1.25rem; }
  .step__num { grid-row: span 2; width: 50px; height: 50px; margin: .1rem 0 0; font-size: 1.45rem; }
  .step h3 { margin: .1rem 0 .3rem; font-size: 1.3rem; }
}
@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* --------------------------------------------------------------------------
   12. Why us + spec card
   -------------------------------------------------------------------------- */
.why { display: grid; gap: 3rem; align-items: center; }
.why__copy > p { font-size: 1.0625rem; }
.why__copy h2 .script { display: block; margin-top: .02em; }
.ticks { display: grid; gap: 1rem; margin: 1.75rem 0 2.1rem; }
.ticks li { display: flex; align-items: flex-start; gap: .85rem; }
.ticks .icon {
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 50%;
  background: var(--night-850);
  color: var(--aqua);
  stroke-width: 2.8;
}
.ticks p { margin: 0; }
.ticks strong { color: var(--ink); }

.spec {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 26px;
  color: rgba(232, 228, 255, .82);
  background:
    radial-gradient(50% 40% at 100% 0%, rgba(255, 79, 123, .22), transparent 70%),
    radial-gradient(45% 35% at 0% 100%, rgba(61, 242, 240, .12), transparent 70%),
    linear-gradient(160deg, #221b5c, var(--night-850) 60%);
  box-shadow: 0 0 0 1px rgba(61, 242, 240, .18), var(--shadow-lg);
}
.spec__head { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.25rem; }
.spec__mark { flex: none; width: 62px; height: 62px; overflow: visible; }
.spec__head p { margin: 0 0 .2rem; font: 700 .75rem/1.2 var(--font-sans); letter-spacing: .14em; text-transform: uppercase; color: var(--aqua); }
.spec__head h3 { margin: 0; font-size: 1.75rem; color: #fff; }
.spec__list { margin: 0; }
.spec__list div { display: grid; gap: .15rem 1rem; padding: .8rem 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.spec__list dt { font: 700 .75rem/1.6 var(--font-sans); letter-spacing: .12em; text-transform: uppercase; color: var(--flamingo-lit); }
.spec__list dd { margin: 0; font-size: .95rem; color: #fff; }
.spec__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .6rem; margin-top: 1.5rem; }
.spec__stats p { margin: 0; padding: .9rem .5rem; border-radius: 14px; background: rgba(255, 255, 255, .05); text-align: center; }
.spec__stats strong { display: flex; justify-content: center; align-items: center; gap: .2rem; font: 400 1.6rem/1.1 var(--font-display); color: #fff; }
.spec__stats span { display: block; margin-top: .25rem; font-size: .75rem; line-height: 1.3; color: var(--lavender); }

@media (min-width: 480px) {
  .spec__list div { grid-template-columns: 8rem 1fr; }
}
@media (min-width: 1024px) {
  .why { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 4.5rem; }
}

/* --------------------------------------------------------------------------
   13. Reviews
   -------------------------------------------------------------------------- */
.reviews { display: grid; gap: 1.25rem; }
.review {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1.75rem;
  border: 1px solid var(--blush-200);
  border-radius: var(--radius-lg);
  background: var(--blush);
}
.review blockquote { flex: 1; margin: 1rem 0 1.5rem; }
.review blockquote p { margin: 0; font-size: 1.02rem; color: var(--text); }
.review figcaption { display: flex; align-items: center; gap: .8rem; font-size: .8125rem; color: var(--muted); }
.review figcaption strong { display: block; font-size: .95rem; color: var(--ink); }
.avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--night-850);
  color: var(--aqua);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: inset 0 0 0 1.5px rgba(61, 242, 240, .4);
}

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

/* --------------------------------------------------------------------------
   14. Quote form
   -------------------------------------------------------------------------- */
.quote {
  color: rgba(232, 228, 255, .8);
  background:
    radial-gradient(45% 55% at 100% 0%, rgba(255, 79, 123, .24), transparent 70%),
    radial-gradient(40% 55% at 0% 100%, rgba(61, 242, 240, .13), transparent 70%),
    var(--night-850);
}
.quote h2 { color: #fff; }
.quote .script { color: var(--flamingo-lit); text-shadow: 0 0 12px rgba(255, 79, 123, .6); }
.quote__inner { display: grid; gap: 2.5rem; align-items: center; }
.quote__copy > p { max-width: 34rem; font-size: 1.0625rem; }
.quote__contact { display: grid; gap: 1.1rem; margin-top: 2rem; }
.quote__contact li { display: flex; align-items: center; gap: .9rem; }
.quote__contact-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(61, 242, 240, .5);
  border-radius: 50%;
  color: var(--aqua);
  box-shadow: 0 0 14px rgba(61, 242, 240, .22);
}
.quote__contact small { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--lavender); }
.quote__contact a { color: #fff; font-size: 1.05rem; font-weight: 600; text-decoration: none; overflow-wrap: anywhere; }
.quote__contact a:hover { color: var(--aqua); }

.quote-card {
  padding: clamp(1.4rem, 4vw, 2.25rem);
  border-radius: 24px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(61, 242, 240, .35), 0 0 44px rgba(61, 242, 240, .16), 0 30px 70px rgba(0, 0, 0, .45);
}
.rating-chip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: var(--blush);
  font-size: .8125rem;
  color: var(--text);
}
.rating-chip .stars { width: 80px; height: 16px; }
.rating-chip strong { color: var(--ink); }
.quote-card__title { margin-bottom: 1.2rem; font-size: 1.9rem; }

.field { display: grid; gap: .35rem; margin-bottom: .95rem; }
.field label { font-size: .8125rem; font-weight: 700; color: var(--ink); }
.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: .7rem .9rem;
  border: 1.5px solid #dcd5e6;
  border-radius: 12px;
  background: #fff;
  font: 500 1rem var(--font-sans);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input::placeholder { color: #9993b0; }
.field select {
  appearance: none;
  padding-right: 2.6rem;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317133f' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right .9rem center / 18px no-repeat;
  cursor: pointer;
}
.field select:invalid { color: #7a7493; }
.field input:focus,
.field select:focus { outline: none; border-color: var(--flamingo); box-shadow: 0 0 0 4px rgba(255, 79, 123, .18); }
.field.is-invalid input,
.field.is-invalid select { border-color: var(--error); }
.field__error { font-size: .8rem; font-weight: 500; color: var(--error); }
.field__error:empty { display: none; }

.field-row { display: grid; gap: 0 .9rem; }
@media (min-width: 360px) {
  .field-row { grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); }
}

.check { display: flex; align-items: flex-start; gap: .6rem; margin: .15rem 0 1.15rem; font-size: .875rem; line-height: 1.45; color: var(--text); cursor: pointer; }
.check input { flex: none; width: 20px; height: 20px; margin: .05rem 0 0; accent-color: var(--flamingo-600); }
.quote-form__note { display: flex; align-items: center; justify-content: center; gap: .4rem; margin: .9rem 0 0; font-size: .8rem; color: var(--muted); }
.quote-form__note .icon { width: 15px; height: 15px; }

.quote-success { padding: 1rem 0 .5rem; text-align: center; }
.quote-success__icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--night-850);
  color: var(--aqua);
  box-shadow: 0 0 22px rgba(61, 242, 240, .35);
}
.quote-success__icon .icon { width: 30px; height: 30px; stroke-width: 2.6; }
.quote-success p { margin-bottom: 1.5rem; }

@media (min-width: 1024px) {
  .quote__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 480px); gap: 4.5rem; }
}

/* --------------------------------------------------------------------------
   15. Service area
   -------------------------------------------------------------------------- */
.areas { display: grid; gap: 2.5rem; align-items: center; }
.areas__copy > p { font-size: 1.0625rem; }
.areas__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
.areas__list li {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1rem;
  border: 1px solid var(--blush-200);
  border-radius: 14px;
  background: var(--blush);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}
.areas__list .icon { color: var(--flamingo); }

@media (max-width: 639px) {
  .areas__list li { gap: .45rem; padding: .75rem .8rem; font-size: .875rem; }
}

@media (min-width: 640px) {
  .areas__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .areas { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 4rem; }
}

/* --------------------------------------------------------------------------
   16. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: .75rem; }
.faq__item {
  border: 1px solid var(--blush-200);
  border-radius: 16px;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq__item[open] { border-color: rgba(255, 79, 123, .35); box-shadow: var(--shadow-sm); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font: 600 1.05rem/1.4 var(--font-sans);
  color: var(--ink);
  list-style: none;
  cursor: pointer;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--night-850) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233df2f0' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.faq__item[open] summary::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6a98' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E"); }
.faq__item p { margin: 0; padding: 0 1.35rem 1.35rem; }

/* --------------------------------------------------------------------------
   17. Closing CTA
   -------------------------------------------------------------------------- */
.cta { padding-bottom: var(--section-y); background: var(--blush); }
.cta__card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: 28px;
  color: rgba(232, 228, 255, .8);
  background:
    radial-gradient(45% 90% at 0% 50%, rgba(255, 79, 123, .26), transparent 70%),
    radial-gradient(40% 80% at 100% 100%, rgba(61, 242, 240, .15), transparent 70%),
    var(--night-850);
  box-shadow: var(--shadow-lg);
}
.cta__mark { width: 84px; height: 84px; overflow: visible; }
.cta h2 { margin-bottom: .5rem; font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.9rem); color: #fff; }
.cta h2 .script { font-size: 1.3em; }
.cta__copy p { margin: 0; font-size: 1.0625rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

@media (max-width: 479px) {
  .cta__actions .btn { flex: 1 1 100%; }
}
@media (min-width: 1024px) {
  .cta__card { grid-template-columns: auto minmax(0, 1fr) auto; gap: 2.5rem; }
  .cta__mark { width: 104px; height: 104px; }
  .cta__actions { flex-direction: column; }
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.footer { padding-top: clamp(3rem, 6vw, 4.5rem); font-size: .9375rem; color: rgba(232, 228, 255, .7); background: var(--night-950); }
.footer__grid { display: grid; gap: 2.25rem; padding-bottom: 2.5rem; }
.footer__brand img { width: auto; height: 62px; margin: 0 0 1rem -8px; }
.footer__brand p { max-width: 24rem; margin: 0; }
.footer h3 { margin-bottom: 1rem; font: 700 .8125rem/1.2 var(--font-sans); letter-spacing: .14em; text-transform: uppercase; color: var(--aqua); }
.footer ul { display: grid; gap: .6rem; }
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__contact li { display: flex; align-items: flex-start; gap: .6rem; }
.footer__contact .icon { margin-top: .2rem; width: 18px; height: 18px; color: var(--flamingo-lit); }
.footer__contact a { overflow-wrap: anywhere; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .8125rem;
}
.footer__bottom p { margin: 0; }

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.35fr; gap: 3rem; }
}

/* --------------------------------------------------------------------------
   19. Mobile call bar
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed;
  z-index: 40;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  padding: .65rem var(--gutter) calc(.65rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(61, 242, 240, .15);
  background: rgba(11, 9, 34, .97);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .3);
}
.mobile-bar .btn { min-height: 50px; padding-inline: .5rem; gap: .45em; font-size: .9375rem; }

@media (max-width: 767px) {
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
}
@media (min-width: 768px) {
  .mobile-bar { display: none; }
}

/* --------------------------------------------------------------------------
   20. Scroll reveal + reduced motion
   -------------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .marquee__track, .sign__pulse, .skyline__beacon, .hero__sky::after, .pulse { animation: none !important; }
  .js .is-lit .tube, .js .is-lit .neon-text, .js .is-lit .sign::before { animation: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
