/* ===========================================================
   AdTech Prime — marketing site
   Brand: deep navy + purple→magenta gradient + white
   =========================================================== */

:root {
  --bg:        #0A0E24;
  --bg-2:      #0E1430;
  --surface:   #121A3A;
  --surface-2: #18224A;
  --line:      rgba(255, 255, 255, 0.08);
  --line-2:    rgba(255, 255, 255, 0.14);

  --purple:    #6D1B5E;
  --magenta:   #C41E6B;
  --accent:    #FF3D8B;
  --accent-2:  #B026FF;

  --text:      #EEF0FA;
  --muted:     #9AA3C9;
  --muted-2:   #6E769C;

  --grad: linear-gradient(135deg, #3D0F4E 0%, #8E1B5E 45%, #C71E63 100%);
  --grad-soft: linear-gradient(135deg, rgba(176,38,255,0.18), rgba(196,30,107,0.18));

  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 24px 60px -20px rgba(0, 0, 0, 0.6);
  --maxw:      1160px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ambient gradient glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 80% -5%, rgba(196, 30, 107, 0.22), transparent 60%),
    radial-gradient(50% 45% at 0% 10%, rgba(176, 38, 255, 0.16), transparent 55%),
    radial-gradient(60% 60% at 50% 110%, rgba(109, 27, 94, 0.18), transparent 60%);
  pointer-events: none;
}

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; }

.gradient-text {
  background: linear-gradient(120deg, #fff 0%, #ffc9e3 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #7A1A5C 0%, #B01E64 50%, #D62370 100%);
  color: #fff;
  box-shadow: 0 16px 24px -24px rgba(196, 30, 107, 0.85);
}
.btn-primary:hover { box-shadow: 0 22px 30px -24px rgba(196, 30, 107, 0.95); }
.btn-whatsapp {
  background: linear-gradient(135deg, #2BD566 0%, #12A45B 100%);
  color: #fff;
  box-shadow: 0 16px 24px -24px rgba(37, 211, 102, 0.8);
}
.btn-whatsapp:hover { box-shadow: 0 22px 30px -24px rgba(37, 211, 102, 0.95); }
.btn-whatsapp svg { width: 18px; height: 18px; flex: none; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-2);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255,255,255,0.28); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 14, 36, 0.6);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; }
.menu-cta { display: none; }

.tag-soon {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--grad-soft);
  border: 1px solid var(--line-2);
  color: #ffd0e6;
  margin-left: 6px;
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 96px 0 70px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 22px; }
.hero p.lead { font-size: 19px; color: var(--muted); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 14px; color: var(--muted-2); display: flex; align-items: center; gap: 8px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #36e07f; box-shadow: 0 0 0 4px rgba(54,224,127,0.18); }

/* Hero visual: stacked "screen" cards */
.hero-visual { position: relative; height: 420px; }
.screen-card {
  position: absolute;
  border-radius: 16px;
  border: 1px solid var(--line-2);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.screen-card .bar { height: 26px; background: rgba(0,0,0,0.25); display: flex; align-items: center; gap: 5px; padding: 0 10px; }
.screen-card .bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.25); display: inline-block; }
.screen-card .body { padding: 16px; display: flex; flex-direction: column; gap: 9px; height: calc(100% - 26px); }
.screen-card .body .glow { flex: 1; border-radius: 10px; background: var(--grad); opacity: .9; }
.screen-card .body .line { height: 8px; border-radius: 6px; background: rgba(255,255,255,0.12); }
.screen-card .body .line.short { width: 55%; }

.card-a { width: 300px; height: 200px; top: 10px; right: 8px; transform: rotate(4deg); z-index: 3; }
.card-b { width: 260px; height: 175px; top: 150px; right: 130px; transform: rotate(-5deg); z-index: 2; opacity: .96; }
.card-c { width: 220px; height: 150px; top: 250px; right: -6px; transform: rotate(7deg); z-index: 1; opacity: .9; }

.float-pill {
  position: absolute;
  z-index: 4;
  display: flex; align-items: center; gap: 9px;
  background: rgba(18, 26, 58, 0.92);
  border: 1px solid var(--line-2);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.float-pill .ic { width: 22px; height: 22px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-size: 11px; }
.pill-1 { top: 0; left: 0; }
.pill-2 { bottom: 8px; left: 40px; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  margin-top: 10px;
}
.stat .num { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; }
.stat .num span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--muted); font-size: 14px; margin-top: 2px; }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 96px 0; }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 18px; }

/* ---------- Network / locations ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.loc-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  background: var(--surface);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.loc-card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--surface-2); }
.loc-card .kicker { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.loc-card h4 { font-size: 19px; margin: 8px 0 6px; font-weight: 700; }
.loc-card p { color: var(--muted); font-size: 14.5px; }

/* ---------- Two paths ---------- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.path-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.path-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad);
  opacity: .9;
}
.path-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.path-card h3 { font-size: 25px; margin-bottom: 12px; }
.path-card p { color: var(--muted); margin-bottom: 22px; }
.path-list { list-style: none; margin: 0 0 28px; display: flex; flex-direction: column; gap: 11px; }
.path-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--text); }
.path-list li svg { flex: none; margin-top: 3px; color: var(--accent); }
.path-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- App coming soon band ---------- */
.app-band {
  position: relative;
  border-radius: 28px;
  padding: 64px;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(196,30,107,0.35), transparent 60%),
    radial-gradient(80% 120% at 0% 100%, rgba(176,38,255,0.28), transparent 60%),
    var(--bg-2);
  border: 1px solid var(--line-2);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.app-band h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.app-band p { color: var(--muted); font-size: 18px; margin-bottom: 28px; max-width: 460px; }
.notify-form { display: flex; gap: 10px; flex-wrap: wrap; max-width: 460px; }
.notify-form input {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 13px 20px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s ease;
}
.notify-form input:focus { border-color: var(--accent); }
.notify-form input::placeholder { color: var(--muted-2); }
.form-msg { margin-top: 12px; font-size: 14px; color: #36e07f; min-height: 18px; }

/* phone mockup */
.phone {
  justify-self: center;
  width: 230px; height: 460px;
  border-radius: 36px;
  border: 8px solid #1c2452;
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.phone::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 110px; height: 22px; background: #1c2452;
  border-radius: 0 0 14px 14px; z-index: 2;
}
.phone .scr { position: absolute; inset: 0; padding: 34px 14px 12px; display: flex; flex-direction: column; gap: 11px; }
/* app preview UI */
.app-top { display: flex; align-items: center; gap: 9px; }
.app-ava { width: 26px; height: 26px; border-radius: 50%; background: var(--grad); flex: none; }
.app-top-t { flex: 1; line-height: 1.15; }
.app-top-t strong { display: block; color: #fff; font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }
.app-top-t span { color: var(--muted-2); font-size: 9px; }
.app-bell { width: 24px; height: 24px; border-radius: 8px; background: rgba(255,255,255,0.06); display: grid; place-items: center; font-size: 11px; flex: none; }
.app-hero {
  position: relative; border-radius: 14px; padding: 12px;
  background: linear-gradient(135deg, #7A1A5C 0%, #C71E63 100%);
  min-height: 98px; display: flex; flex-direction: column; gap: 6px; overflow: hidden;
}
.app-live { align-self: flex-start; display: inline-flex; align-items: center; gap: 5px; font-size: 8.5px; font-weight: 800; letter-spacing: .12em; color: #fff; background: rgba(0,0,0,0.32); padding: 3px 8px; border-radius: 999px; }
.app-live i { width: 5px; height: 5px; border-radius: 50%; background: #36e07f; box-shadow: 0 0 0 2px rgba(54,224,127,0.3); }
.app-hero-t { margin-top: auto; }
.app-hero-t strong { display: block; color: #fff; font-size: 13.5px; font-weight: 700; }
.app-hero-t span { color: rgba(255,255,255,0.82); font-size: 9.5px; }
.app-bars { display: flex; align-items: flex-end; gap: 3px; height: 16px; }
.app-bars i { flex: 1; background: rgba(255,255,255,0.5); border-radius: 2px; }
.app-bars i:nth-child(1){height:35%} .app-bars i:nth-child(2){height:60%} .app-bars i:nth-child(3){height:45%}
.app-bars i:nth-child(4){height:85%} .app-bars i:nth-child(5){height:55%} .app-bars i:nth-child(6){height:70%}
.app-bars i:nth-child(7){height:40%} .app-bars i:nth-child(8){height:90%}
.app-stats { display: flex; gap: 9px; }
.app-stat { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--line); border-radius: 11px; padding: 9px 10px; }
.app-stat strong { display: block; color: #fff; font-size: 16px; font-weight: 800; letter-spacing: -0.02em; }
.app-stat span { color: var(--muted); font-size: 8.5px; }
.app-label { color: var(--muted-2); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.app-rows { display: flex; flex-direction: column; gap: 7px; }
.app-row { display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.04); border-radius: 11px; padding: 7px 9px; }
.app-thumb { width: 24px; height: 24px; border-radius: 7px; flex: none; background: linear-gradient(135deg, #3a2f6e, #5e3f96); }
.app-thumb.t2 { background: linear-gradient(135deg, #234a6e, #2f7aa0); }
.app-row-t { flex: 1; line-height: 1.2; }
.app-row-t strong { display: block; color: #fff; font-size: 10.5px; font-weight: 600; }
.app-row-t span { color: var(--muted); font-size: 8.5px; }
.app-on { width: 7px; height: 7px; border-radius: 50%; background: #36e07f; box-shadow: 0 0 0 3px rgba(54,224,127,0.15); flex: none; }
.app-nav { margin-top: auto; display: flex; justify-content: space-around; align-items: center; padding-top: 9px; border-top: 1px solid var(--line); }
.app-nav svg { width: 17px; height: 17px; color: var(--muted-2); }
.app-nav svg.on { color: var(--accent); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 28px; background: var(--surface); }
.step .n { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: .1em; }
.step h4 { font-size: 19px; margin: 12px 0 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- CTA / contact ---------- */
.cta {
  text-align: center;
  border-radius: 28px;
  padding: 72px 32px;
  background:
    radial-gradient(70% 140% at 50% 0%, rgba(196,30,107,0.30), transparent 60%),
    var(--bg-2);
  border: 1px solid var(--line-2);
}
.cta h2 { font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 16px; }
.cta p { color: var(--muted); font-size: 18px; max-width: 520px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 56px 0 40px; margin-top: 40px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand img { height: 28px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 280px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); font-size: 15px; margin-bottom: 9px; transition: color .15s ease; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted-2); font-size: 14px;
}

/* ---------- Coming-soon (app.html) ---------- */
.cs-page { min-height: 100vh; display: flex; flex-direction: column; }
.cs-main { flex: 1; display: grid; place-items: center; text-align: center; padding: 60px 24px; }
.cs-inner { max-width: 620px; }
.cs-mark { height: 44px; width: auto; margin: 0 auto 32px; }

/* ---------- Locations (named venues) ---------- */
.venue-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.venue {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  background: var(--surface);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.venue:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--surface-2); }
.venue .pin {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--grad-soft); border: 1px solid var(--line-2);
  display: grid; place-items: center; margin-bottom: 14px; font-size: 18px;
}
.venue h4 { font-size: 17px; margin-bottom: 4px; font-weight: 700; }
.venue span { color: var(--muted); font-size: 13.5px; }

/* ---------- Clients / trusted by ---------- */
.client-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.client {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0));
  min-height: 100px;
  display: grid; place-items: center;
  text-align: center; padding: 18px;
  font-weight: 600; font-size: 16px; color: var(--text);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.client:hover { border-color: var(--line-2); background: rgba(255,255,255,0.06); transform: translateY(-3px); }
.client small { display: block; color: var(--muted); font-weight: 500; font-size: 12px; margin-top: 4px; }

/* clients coming-soon state */
.clients-soon {
  text-align: center;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  padding: 48px 32px;
  background: var(--grad-soft);
  max-width: 640px; margin: 0 auto;
}
.clients-soon p { color: var(--muted); margin: 16px auto 22px; max-width: 460px; }
.badge-soon {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #ffd0e6; background: rgba(0,0,0,0.3); border: 1px solid var(--line-2);
  padding: 6px 16px; border-radius: 999px;
}

/* ---------- Featured Ad ---------- */
.featured-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 52px; align-items: center; }
.featured-grid h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.featured-grid > div > p { color: var(--muted); font-size: 18px; margin-bottom: 24px; max-width: 480px; }
.ad-screen {
  position: relative;
  border-radius: 18px;
  border: 10px solid #131a3e;
  background: #05070f;
  box-shadow: var(--shadow);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.ad-screen img, .ad-screen video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(1.06) contrast(1.04) brightness(1.02);
}
.ad-screen video.ad-video { display: none; }
.ad-screen::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 90px rgba(0,0,0,0.55);
  pointer-events: none;
}
.now-playing {
  position: absolute; z-index: 2; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.55); border: 1px solid var(--line-2);
  color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .04em;
  padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.now-playing .lp {
  width: 8px; height: 8px; border-radius: 50%;
  background: #36e07f; box-shadow: 0 0 0 4px rgba(54,224,127,0.2);
}
.ad-caption { text-align: center; margin-top: 16px; color: var(--muted-2); font-size: 13.5px; }
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* clients logo marquee */
.logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: marquee 55s linear infinite;
}
.logo-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  width: 94px; height: 94px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.05);
  flex: none;
  transition: transform .2s ease, border-color .2s ease;
}
.marquee-track img:hover { transform: scale(1.08); border-color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 540px) {
  .marquee-track img { width: 72px; height: 72px; }
  .marquee-track { gap: 20px; }
}

/* contact details row */
.contact-details {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px;
  margin-top: 28px; color: var(--muted); font-size: 15px;
}
.contact-details a { color: var(--muted); transition: color .15s ease; }
.contact-details a:hover { color: var(--text); }
.cs-inner h1 { font-size: clamp(36px, 7vw, 64px); margin-bottom: 20px; }
.cs-inner p { color: var(--muted); font-size: 19px; margin-bottom: 36px; }
.cs-back { margin-top: 30px; font-size: 15px; color: var(--muted); }
.cs-back a { color: var(--accent); font-weight: 600; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 340px; margin: 0 auto; max-width: 420px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .loc-grid, .steps, .venue-grid, .client-wall { grid-template-columns: 1fr 1fr; }
  .paths { grid-template-columns: 1fr; }
  .app-band { grid-template-columns: 1fr; padding: 44px; text-align: center; }
  .app-band p, .notify-form { margin-left: auto; margin-right: auto; }
  .phone { order: -1; }
}
/* Nav collapses to the menu before the full horizontal nav would get cramped (~1190px needed) */
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 16px;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 24px;
  }
  .nav-links.open .menu-cta {
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 4px; padding: 13px 20px; border-radius: 999px;
    font-weight: 600; font-size: 15px;
    background: linear-gradient(135deg, #7A1A5C 0%, #D62370 100%);
    color: #fff;
  }
  .nav-links.open .menu-cta-ghost {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line-2);
    color: var(--text);
  }
}
@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .app-band, .cta { padding: 40px 24px; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 16px; padding: 22px; }
  .loc-grid, .steps { grid-template-columns: 1fr; }
  .nav .btn-ghost { display: none; }
}
