:root {
  --bg: #0b0d12;
  --bg-alt: #11141b;
  --card: #171b25;
  --card-2: #1c2130;
  --text: #eef1f7;
  --muted: #9aa4b8;
  --accent: #4f9cf9;     /* accent = CTA ONLY (color does one job) */
  --accent-strong: #7db4ff;
  --accent-soft: rgba(79,156,249,.14);
  --border: #232a38;
  --danger: #ff7a7a;
  --success: #53d28b;
  --radius: 16px;
  --max: 1080px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent-soft); color: var(--accent-strong); }

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

/* accessible focus indicators for keyboard users (award-winning usability criterion) */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* skip link: visible only when focused */
.skip-link {
  position: absolute; left: -999px; top: -999px; z-index: 100;
  background: var(--accent); color: #0b1220; font-weight: 700;
  padding: 12px 18px; border-radius: 10px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* anchor targets clear the sticky nav */
section[id], article[id] { scroll-margin-top: 84px; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.accent { color: var(--accent-strong); }
.dot { color: var(--accent); }
a { color: inherit; text-decoration: none; }

/* =========================== NAV =========================== */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(11,13,18,.78); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); transition: box-shadow .3s; }
.nav--scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.35); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav__brand { font-weight: 800; font-size: 1.3rem; letter-spacing: -.5px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: .93rem; position: relative; transition: color .2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0; background: var(--accent); border-radius: 2px; transition: width .25s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

/* =========================== BUTTONS =========================== */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px; font-weight: 700;
  font-size: .96rem; cursor: pointer; border: none; line-height: 1;
  transition: transform .12s var(--ease), box-shadow .2s, filter .2s, border-color .2s, color .2s, background .2s;
  will-change: transform;
}
/* micro-interaction: press feedback (120ms scale) */
.btn:active { transform: scale(.96); }
.btn--solid { background: var(--accent); color: #0b1220; box-shadow: 0 6px 20px rgba(79,156,249,.35); }
.btn--solid:hover { filter: brightness(1.12); box-shadow: 0 10px 26px rgba(79,156,249,.45); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-strong); transform: translateY(-2px); }
.btn--small { padding: 10px 18px; font-size: .9rem; }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--full { display: block; width: 100%; text-align: center; margin-top: 20px; }

/* =========================== HERO =========================== */
.hero { position: relative; padding: 92px 0 64px; }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 2.5px; font-size: .74rem; font-weight: 800;
  color: var(--accent); margin-bottom: 16px;
}
.hero__title { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.08; margin-bottom: 20px; max-width: 18ch; }
.hero__sub { color: var(--muted); font-size: 1.12rem; max-width: 54ch; margin-bottom: 30px; }
.hero__sub strong { color: var(--text); }
.center .hero__sub { margin-left: auto; margin-right: auto; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__proof { display: flex; gap: 34px; margin-top: 40px; flex-wrap: wrap; }
.proof-item { display: flex; flex-direction: column; }
.proof-item strong { font-size: 1.9rem; font-weight: 800; letter-spacing: -.5px; color: var(--accent-strong); line-height: 1; }
.proof-item span { font-size: .83rem; color: var(--muted); margin-top: 6px; }

/* Hero art */
.hero__art { position: relative; }
.art__card {
  position: relative; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.art__browser { display: flex; gap: 6px; align-items: center; border-bottom: 1px solid var(--border); padding-bottom: 14px; margin-bottom: 14px; }
.art__bar { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.art__bar:nth-child(1){background:#ff5f57}.art__bar:nth-child(2){background:#febc2e}.art__bar:nth-child(3){background:#28c840}
.art__url { margin-left: auto; font-size: .72rem; color: var(--muted); background: var(--bg); padding: 3px 12px; border-radius: 6px; }
.art__body { display: flex; flex-direction: column; gap: 10px; }
.art__line { height: 10px; border-radius: 6px; background: var(--card-2); }
.art__line--lg { width: 70%; height: 16px; }
.art__line:nth-child(2){width:92%}.art__line:nth-child(3){width:55%}
.art__cta { margin-top: 8px; align-self: flex-start; background: var(--accent); color: #0b1220; font-weight: 700; border: none; padding: 11px 20px; border-radius: 10px; font-family: inherit; }
/* gaze: face looks toward the CTA button (directs the eye) */
.art__face { position: absolute; right: -18px; bottom: -24px; width: 86px; height: 86px; }
.face { position: absolute; inset: 0; border-radius: 50%; background: linear-gradient(145deg,#2c80e0,#1f5fb0); border: 3px solid var(--bg); display:grid; place-items:center; }
.face::before { content:""; position:absolute; width:52px;height:52px;border-radius:50%;background:#1b2b42;top:14px;}
.face::after { content:""; position:absolute; width:16px;height:16px;border-radius:50%;background:#0b1220; top:33px; left:38px; box-shadow: 18px 0 0 #0b1220; }
.face-tip { position:absolute; left:30px; top:86px; width:0;height:0; border-left:7px solid transparent; border-right:7px solid transparent; border-top:12px solid #1f5fb0; }

/* ambient glows */
.glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity:.5; pointer-events:none; z-index:-1; }
.glow--1 { width:320px; height:320px; background:#1f5fb0; top:-80px; right:-60px; }
.glow--2 { width:240px; height:240px; background:#0f8a4f; left:-40px; bottom:-60px; opacity:.25; }

/* =========================== TRUST STRIP =========================== */
.trust { border-block: 1px solid var(--border); background: var(--bg-alt); padding: 22px 0; }
.trust__inner { display: flex; align-items: center; gap: 26px; justify-content: space-between; flex-wrap: wrap; }
.trust__label { font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }
.trust__logos { display: flex; gap: 18px; flex-wrap: wrap; }
.trust__logos span { color: var(--muted); font-weight: 700; font-size: .95rem; }

/* =========================== SECTIONS =========================== */
.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }
.section__title { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -.7px; margin-bottom: 14px; line-height: 1.15; }
.section__sub { color: var(--muted); font-size: clamp(1rem, 1.1vw, 1.08rem); line-height: 1.6; }
.section__head { max-width: 640px; margin-bottom: 46px; }

/* =========================== GRID / CARDS =========================== */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 44px; }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-8px); border-color: var(--accent-soft); box-shadow: 0 24px 48px rgba(0,0,0,.45); }
.card__thumb { height: 150px; position: relative; display: flex; align-items: flex-end; padding: 14px; }
.thumb--restaurant { background: linear-gradient(135deg,#6d28d9,#a855f7 45%,#f472b6); }
.thumb--auto { background: linear-gradient(135deg,#0a0a0b,#111113 45%,#2b3600); }
.thumb--medical { background: linear-gradient(135deg,#0e7490,#22d3ee 50%,#38bdf8); }
.thumb--service { background: linear-gradient(135deg,#b45309,#f59e0b 50%,#fbbf24); }
.thumb__tag { background: rgba(0,0,0,.45); color:#fff; font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; padding:5px 12px; border-radius:999px; backdrop-filter: blur(4px); }
.card__body { padding: 22px; }
.card__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.card__desc { color: var(--muted); font-size: .93rem; margin-bottom: 18px; }
.card__meta { display: flex; align-items: center; justify-content: space-between; font-size: .84rem; color: var(--muted); }
.card__link { color: var(--accent); font-weight: 700; transition: color .2s; }
.card__link:hover { color: var(--accent-strong); }

/* outcome metrics on cards (numbers grab attention) */
.card__metrics { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.card__metrics li { font-size: .78rem; font-weight: 700; color: var(--accent-strong); background: var(--accent-soft); border: 1px solid transparent; padding: 5px 11px; border-radius: 999px; }

/* =========================== STEPS =========================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-bottom: 46px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; transition: transform .25s var(--ease), border-color .25s; }
.step:hover { transform: translateY(-4px); border-color: var(--accent-soft); }
.step__num { font-size: 2.4rem; font-weight: 800; color: var(--accent-soft); letter-spacing: -1px; line-height: 1; display:block; margin-bottom: 14px; }
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .93rem; }

/* =========================== QUOTES =========================== */
.quote { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; }
.quote__stars { color: #ffcc4d; letter-spacing: 2px; margin-bottom: 12px; }
.quote__text { color: var(--muted); font-size: .95rem; flex: 1; }
.quote__author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.quote__author strong { color: var(--text); font-size: .93rem; }
.quote__author span:nth-child(2) { color: var(--muted); font-size: .85rem; display:flex; flex-direction:column; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),#7a5af8); display: grid; place-items: center; font-weight: 800; color:#0b1220; flex: none; }

/* =========================== FAQ =========================== */
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .25s; }
.faq__item:hover { border-color: var(--accent-soft); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 700; font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); transition: transform .25s var(--ease); line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 24px 22px; color: var(--muted); font-size: .95rem; max-width: 60ch; }

/* =========================== PRICING =========================== */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 26px; position: relative; display:flex; flex-direction:column; }
.price-card--featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.price-card__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #0b1220; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.price-card h3 { margin-bottom: 12px; font-size: 1.12rem; }
.price { font-size: 2.6rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; }
.price span { display: block; font-size: .84rem; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-top: 4px; }
.price-card ul { list-style: none; margin-bottom: 12px; flex: 1; }
.price-card li { padding: 9px 0 9px 26px; position: relative; color: var(--muted); font-size: .93rem; border-bottom: 1px solid var(--border); }
.price-card li:last-child { border-bottom: none; }
.price-card li::before { content: "✓"; color: var(--accent); font-weight: 800; position: absolute; left: 0; }

/* =========================== FORM =========================== */
.form { max-width: 560px; margin: 34px auto 0; text-align: left; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field input, .field textarea {
  width: 100%; background: var(--card); border: 1px solid var(--border); color: var(--text);
  padding: 14px 16px; border-radius: 12px; font-family: inherit; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field input:focus-visible, .field textarea:focus-visible { box-shadow: 0 0 0 3px var(--accent); }
.field textarea { resize: vertical; }
.field--error input, .field--error textarea { border-color: var(--danger); }
.field__error { color: var(--danger); font-size: .8rem; margin-top: 6px; display: none; }
.field--error .field__error { display: block; }
.form button { cursor: pointer; }
.form__status { margin-top: 14px; font-size: .92rem; color: var(--muted); }
.form__status.success { color: var(--success); }
.form__status.error { color: var(--danger); }
.contact__email { margin-top: 20px; color: var(--muted); }
.contact__email a { color: var(--accent); font-weight: 700; }

/* =========================== FOOTER =========================== */
.footer { border-top: 1px solid var(--border); padding: 30px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: .9rem; }

/* =========================== SCROLL REVEAL =========================== */
/* Elements start hidden only when JS adds animation support below. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s var(--ease), transform .55s var(--ease); will-change: transform, opacity; }
.js .reveal.is-inview { opacity: 1; transform: none; }
/* staggered cards */
.js .grid .reveal.is-inview:nth-child(2) { transition-delay: .08s; }
.js .grid .reveal.is-inview:nth-child(3) { transition-delay: .16s; }

/* =========================== RESPONSIVE =========================== */
@media (max-width: 880px) {
  .nav__links { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 460px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .footer__inner { flex-direction: column; gap: 14px; }
  .hero { padding: 64px 0 56px; }
}

/* =========================== REDUCED MOTION (accessibility) =========================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .btn { transition: none; }
}