/* ===== EPG Ads — Local SEO landing page ===== */
:root {
  --bg: #000000;
  --bg-2: #07080d;
  --bg-3: #0d0f16;
  --card: #10121b;
  --card-2: #14171f;
  --border: #1e2130;
  --border-2: #272b3d;
  --blue: #4f63f5;
  --blue-600: #3f52e0;
  --blue-light: #7c8bff;
  --white: #ffffff;
  --text: #eaecf2;
  --muted: #9ba0b0;
  --muted-2: #6d7284;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1140px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, .btn { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; letter-spacing: .1px;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), background .2s, box-shadow .2s, border-color .2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 8px 24px -8px rgba(79,99,245,.6);
}
.btn--primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(79,99,245,.7); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { border-color: var(--blue-light); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(0,0,0,.88); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.nav__logo { height: 46px; width: auto; display: block; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: #fff; }
.nav__cta { margin-left: 6px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none; flex-direction: column; gap: 4px; padding: 0 24px;
  max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), padding .35s;
  background: var(--bg-2); border-bottom: 1px solid var(--border);
}
.nav__mobile a { padding: 14px 4px; color: var(--muted); border-bottom: 1px solid var(--border); font-weight: 500; }
.nav__mobile a:last-child { border: 0; margin: 10px 0 18px; }
.nav__mobile.open { max-height: 400px; padding: 8px 24px; }

/* ===== Hero ===== */
.hero { position: relative; padding: 90px 0 70px; overflow: hidden; }
.hero__glow {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(79,99,245,.32), rgba(79,99,245,0) 62%);
  filter: blur(20px);
}
.hero__inner { position: relative; text-align: center; max-width: 900px; margin: 0 auto; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(79,99,245,.1); border: 1px solid rgba(79,99,245,.35);
  color: #c3cbff; font-size: 13.5px; font-weight: 600; letter-spacing: .3px;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 26px;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-light); box-shadow: 0 0 0 4px rgba(124,139,255,.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1 } 50%{ opacity:.4 } }
.hero__title {
  font-size: clamp(32px, 5.4vw, 60px); font-weight: 800; line-height: 1.08;
  letter-spacing: -1.2px; margin-bottom: 22px;
}
.grad { background: linear-gradient(120deg, var(--blue-light), var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(16px, 2.2vw, 19px); color: var(--muted); max-width: 640px; margin: 0 auto 34px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__trust {
  list-style: none; display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  margin-top: 40px; color: var(--muted); font-size: 14.5px;
}
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust strong { color: #fff; }
.hero__trust li::before { content: "✔"; color: var(--blue-light); font-size: 13px; }

/* ===== Hero Loom video slot ===== */
.hero__video { max-width: 720px; margin: 40px auto 0; }
.hero__video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border-2); background: var(--bg-3);
  box-shadow: 0 34px 70px -30px rgba(0,0,0,.9);
}
.hero__video-frame iframe,
.hero__video-frame video,
.hero__video-frame .video-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: radial-gradient(ellipse at center, rgba(79,99,245,.16), transparent 70%); cursor: default;
}
.video-placeholder__play {
  width: 66px; height: 66px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff; font-size: 22px; padding-left: 4px;
  box-shadow: 0 12px 30px -8px rgba(79,99,245,.75);
}
.video-placeholder__label { font-family: 'Plus Jakarta Sans'; font-weight: 700; color: #fff; font-size: 16px; }
.video-placeholder__hint { color: var(--muted-2); font-size: 13px; }

/* ===== Stat strip ===== */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.strip__item { padding: 30px 22px; text-align: center; border-right: 1px solid var(--border); }
.strip__item:last-child { border-right: 0; }
.strip__num { display: block; font-family: 'Plus Jakarta Sans'; font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -.5px; }
.strip__num { background: linear-gradient(120deg,#fff,#b9c0ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.strip__label { display: block; font-size: 13.5px; color: var(--muted-2); margin-top: 8px; line-height: 1.4; }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 2px;
  font-size: 12.5px; font-weight: 700; color: var(--blue-light); margin-bottom: 16px;
}
.eyebrow--light { color: #c3cbff; }
.section__title { font-size: clamp(26px, 3.8vw, 40px); font-weight: 800; line-height: 1.15; letter-spacing: -.8px; margin-bottom: 22px; max-width: 820px; }
.lead { font-size: 18px; color: var(--muted); margin-bottom: 18px; }
.lead em { color: var(--text); font-style: italic; }
.lead.center { text-align: center; margin: 0 auto 44px; max-width: 720px; }

/* ===== Pain grid (agitate) ===== */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.pain {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform .25s var(--ease), border-color .25s;
}
.pain:hover { transform: translateY(-4px); border-color: var(--border-2); }
.pain__icon { font-size: 30px; margin-bottom: 14px; }
.pain h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.pain p { color: var(--muted); font-size: 15.5px; }
.agitate__kicker {
  margin-top: 34px; padding: 24px 28px; border-left: 3px solid var(--blue);
  background: rgba(79,99,245,.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text); font-size: 17px; font-weight: 500;
}

/* ===== Feature grid (solution) ===== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform .25s var(--ease), border-color .25s, background .25s;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(79,99,245,.4); background: var(--card-2); }
.feature__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 16px;
  background: rgba(79,99,245,.14); color: var(--blue-light);
  font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 15px;
}
.feature h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 0; margin-top: 40px; }
.step { text-align: center; padding: 0 18px; }
.step__num {
  width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 22px; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-600));
  box-shadow: 0 10px 26px -8px rgba(79,99,245,.7);
}
.step h3 { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15.5px; }
.step__line { height: 2px; background: linear-gradient(90deg, var(--border-2), var(--blue), var(--border-2)); margin-top: 27px; min-width: 40px; }

/* ===== Trust grid ===== */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 34px; }
.trust__item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 26px; }
.trust__item h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.trust__item p { color: var(--muted); font-size: 15px; }

/* ===== FAQ ===== */
.faq { margin-top: 34px; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 4px 22px; transition: border-color .25s;
}
.faq__item[open] { border-color: rgba(79,99,245,.4); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 18px 30px 18px 0; position: relative;
  font-family: 'Plus Jakarta Sans'; font-weight: 700; font-size: 17px; color: #fff;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 24px; font-weight: 400; color: var(--blue-light); transition: transform .25s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { color: var(--muted); font-size: 15.5px; padding: 0 0 20px; }

/* ===== Final CTA ===== */
.cta { position: relative; padding: 90px 0; overflow: hidden; border-top: 1px solid var(--border); background: linear-gradient(180deg, var(--bg-2), #04050c); }
.cta__glow {
  position: absolute; bottom: -220px; left: 12%; width: 760px; height: 560px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(79,99,245,.3), rgba(79,99,245,0) 62%); filter: blur(20px);
}
.cta__inner { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.cta__title { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; line-height: 1.15; letter-spacing: -.8px; margin-bottom: 18px; }
.cta__copy p { color: var(--muted); font-size: 17px; margin-bottom: 22px; }
.cta__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cta__list li { position: relative; padding-left: 30px; color: var(--text); font-weight: 500; }
.cta__list li::before {
  content: "✔"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--blue);
  color: #fff; font-size: 11px; display: flex; align-items: center; justify-content: center;
}

/* ===== Form ===== */
.form {
  background: var(--card); border: 1px solid var(--border-2); border-radius: 22px;
  padding: 32px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.9);
}
.form__title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 20px; }
.form__row { margin-bottom: 15px; }
.form__row label { display: block; font-size: 13.5px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.form__row .opt { color: var(--muted-2); font-weight: 400; }
.form__row input {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  background: var(--bg-3); border: 1px solid var(--border-2); color: #fff; font-size: 15px;
  font-family: inherit; transition: border-color .2s, box-shadow .2s;
}
.form__row input::placeholder { color: var(--muted-2); }
.form__row input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(79,99,245,.2); }
.form__row input.invalid { border-color: #ff5c6c; box-shadow: 0 0 0 3px rgba(255,92,108,.15); }
.form button { margin-top: 8px; }
.form__note { text-align: center; font-size: 13px; color: var(--muted-2); margin-top: 14px; }
.form__success { text-align: center; font-size: 15px; color: #7ce6a0; margin-top: 16px; font-weight: 600; }

/* ===== Footer ===== */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 54px 0 30px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid var(--border); }
.footer__logo { height: 54px; width: auto; margin: 0 0 4px -2px; }
.footer__brand p { color: var(--muted); font-size: 15px; max-width: 320px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 10px 26px; align-content: flex-start; }
.footer__links a { color: var(--muted); font-size: 15px; transition: color .2s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; color: var(--muted-2); font-size: 13.5px; }

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

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .cta__inner { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .step__line { display: none; }
}
@media (max-width: 760px) {
  .section { padding: 62px 0; }
  .strip__inner { grid-template-columns: repeat(2, 1fr); }
  .strip__item:nth-child(2) { border-right: 0; }
  .strip__item:nth-child(1), .strip__item:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .pain-grid, .feature-grid, .trust-grid { grid-template-columns: 1fr; }
  .hero__trust { gap: 14px 22px; }
  .form { padding: 24px 20px; }
  .agitate__kicker { font-size: 15.5px; padding: 20px; }
}
