/* ============ base ============ */
:root {
  --bg: #05070f;
  --bg-soft: #0b101f;
  --ink: #eef2ff;
  --ink-soft: #9aa5c4;
  --glass: rgba(255, 255, 255, .045);
  --glass-border: rgba(255, 255, 255, .09);
  --blue: #3b82f6;
  --violet: #8b5cf6;
  --cyan: #22d3ee;
  --green: #34d399;
  --grad: linear-gradient(90deg, #22d3ee, #3b82f6 45%, #a78bfa);
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .45);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, .logo, .price-range, .stat strong { font-family: var(--font-display); }

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

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; }
.center { text-align: center; margin-top: 44px; }

.gradient-text {
  background: var(--grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}

/* inline svg icons */
.icon {
  width: 1.1em;
  height: 1.1em;
  vertical-align: -.18em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============ ambient background fx ============ */
.bg-fx { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .5; will-change: transform; }
.orb-1 { width: 560px; height: 560px; top: -180px; left: -120px; background: #1d4ed8; animation: drift 22s ease-in-out infinite alternate; }
.orb-2 { width: 460px; height: 460px; top: 30%; right: -160px; background: #7c3aed; animation: drift 26s ease-in-out infinite alternate-reverse; }
.orb-3 { width: 420px; height: 420px; bottom: -160px; left: 30%; background: #0e7490; animation: drift 30s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(70px, 50px) scale(1.15); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 40%, transparent 100%);
}

/* ============ buttons ============ */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  color: #fff;
}
.btn-glow { box-shadow: 0 8px 30px rgba(59, 130, 246, .45), 0 2px 10px rgba(124, 58, 237, .35); }
.btn-glow:hover { box-shadow: 0 12px 40px rgba(59, 130, 246, .6), 0 4px 14px rgba(124, 58, 237, .5); }
.btn-ghost { border-color: var(--glass-border); color: var(--ink); background: var(--glass); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: rgba(255,255,255,.25); }
.btn-phone { background: linear-gradient(90deg, #059669, #10b981); color: #fff; white-space: nowrap; box-shadow: 0 6px 20px rgba(16, 185, 129, .35); }
.btn-lg { padding: 16px 32px; font-size: 1.06rem; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn[disabled] { opacity: .6; cursor: wait; transform: none; }

/* ============ header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 15, .7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.5px;
}
.logo span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo em { font-style: normal; color: var(--ink-soft); font-weight: 500; font-size: .85em; }
.header-nav { display: flex; align-items: center; gap: 26px; }
.nav-link { color: var(--ink-soft); text-decoration: none; font-weight: 500; font-size: .95rem; }
.nav-link:hover { color: #fff; }

/* ============ hero ============ */
.hero { position: relative; padding: 90px 0 70px; }
.hero::before {
  content: "";
  position: absolute;
  inset: -12% -8% 20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(42% 44% at 16% 18%, rgba(59, 130, 246, .32), transparent 68%),
    radial-gradient(36% 38% at 85% 10%, rgba(139, 92, 246, .28), transparent 68%),
    radial-gradient(30% 32% at 62% 52%, rgba(34, 211, 238, .16), transparent 68%);
  filter: blur(2px);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, .6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 800;
  margin-bottom: 22px;
}
.hero .lead {
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero .lead strong { color: var(--ink); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-points {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  list-style: none;
  color: var(--ink-soft);
  font-size: .93rem;
}
.hero-points li::before { content: "\2713\00a0"; color: var(--green); font-weight: 700; }
.hero-points em { font-style: normal; color: var(--ink); }

/* hero visual */
.hero-visual { position: relative; }
.browser-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--bg-soft);
  box-shadow: var(--shadow), 0 0 80px rgba(59, 130, 246, .18);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform .5s ease;
}
.browser-frame:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(0deg); }
.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid var(--glass-border);
}
.browser-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.r { background: #f87171; } .dot.y { background: #fbbf24; } .dot.g { background: #34d399; }
.browser-url {
  margin-left: 12px;
  font-size: .78rem;
  color: var(--ink-soft);
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  padding: 3px 14px;
}
.browser-frame img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(11, 16, 31, .85);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 12px 18px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  animation: floaty 5s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 1.02rem; line-height: 1.2; }
.float-card small { color: var(--ink-soft); font-size: .78rem; }
.float-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
}
.float-icon .icon { width: 22px; height: 22px; }
.float-icon-green { background: rgba(52, 211, 153, .15); color: var(--green); }
.float-icon-gold { background: rgba(251, 191, 36, .15); color: #fbbf24; }
.float-icon-gold .icon { fill: currentColor; stroke: none; }
.float-card-1 { top: -24px; right: -14px; }
.float-card-2 { bottom: -20px; left: -18px; animation-delay: 2.5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============ stats strip ============ */
.stats-strip {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(6px);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { color: var(--ink-soft); font-size: .9rem; }

/* ============ sections ============ */
.section { padding: 100px 0; }
.kicker {
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  text-align: center;
  letter-spacing: -1px;
  font-weight: 800;
  margin-bottom: 14px;
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 auto 56px;
  font-size: 1.1rem;
}

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

/* ============ feature cards ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, .45);
  box-shadow: 0 24px 60px rgba(59, 130, 246, .15);
}
.feature-img { overflow: hidden; }
.feature-img img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  transition: transform .6s ease;
}
.feature-card:hover .feature-img img { transform: scale(1.06); }
.feature-card h3 { padding: 22px 26px 0; font-size: 1.25rem; letter-spacing: -.3px; }
.feature-card p { padding: 10px 26px 26px; color: var(--ink-soft); font-size: .98rem; }

/* ============ steps ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  transition: transform .3s ease, border-color .3s ease;
}
.step:hover { transform: translateY(-6px); border-color: rgba(139, 92, 246, .45); }
.step-num {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(99, 102, 241, .4);
}
.step h3 { margin-bottom: 10px; font-size: 1.2rem; letter-spacing: -.3px; }
.step p { color: var(--ink-soft); font-size: .98rem; }

/* ============ qualifications ============ */
.quals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.qual {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform .3s ease, border-color .3s ease;
}
.qual:hover { transform: translateY(-6px); border-color: rgba(34, 211, 238, .45); }
.qual-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 18px;
  background: rgba(59, 130, 246, .12);
  border: 1px solid rgba(59, 130, 246, .3);
  color: #7dd3fc;
}
.qual-icon .icon { width: 30px; height: 30px; }
.qual h3 { font-size: 1.15rem; margin-bottom: 10px; letter-spacing: -.3px; }
.qual p { color: var(--ink-soft); font-size: .96rem; }

/* ============ pricing ============ */
.pricing-card {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--bg-soft), var(--bg-soft)) padding-box,
    var(--grad) border-box;
  border-radius: var(--radius);
  padding: 50px 42px;
  text-align: center;
  box-shadow: var(--shadow), 0 0 90px rgba(99, 102, 241, .28);
}
.price-range {
  font-size: clamp(2.4rem, 5vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
}
.price-note { color: var(--ink-soft); margin: 8px 0 28px; }
.price-includes {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 0 auto 34px;
}
.price-includes li { padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,.1); }
.price-includes li:last-child { border-bottom: none; }
.price-includes li::before { content: "\2713\00a0\00a0"; color: var(--green); font-weight: 700; }
.price-includes em { font-style: normal; color: var(--cyan); }

/* ============ CTA band ============ */
.cta-band {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5,7,15,.9), rgba(29,78,216,.35));
}
.cta-inner { position: relative; text-align: center; }
.cta-inner h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  letter-spacing: -1px;
  font-weight: 800;
  margin-bottom: 32px;
}

/* ============ form ============ */
.apply-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.req { color: #f87171; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  background: rgba(255,255,255,.05);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(154, 165, 196, .55); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, .18);
}
.form-checks {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 24px;
}
.form-checks legend { font-weight: 600; font-size: .9rem; padding: 0 8px; }
.check { display: flex; gap: 11px; align-items: flex-start; padding: 7px 0; font-size: .94rem; color: var(--ink-soft); cursor: pointer; }
.check input { margin-top: 4px; accent-color: var(--violet); }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.form-error {
  background: rgba(248, 113, 113, .1);
  border: 1px solid rgba(248, 113, 113, .35);
  color: #fca5a5;
  border-radius: 12px;
  padding: 13px 18px;
  margin-bottom: 20px;
  font-size: .95rem;
}
.form-success {
  background: rgba(52, 211, 153, .08);
  border: 1px solid rgba(52, 211, 153, .3);
  border-radius: var(--radius);
  padding: 32px 34px;
  margin-bottom: 30px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.form-success h3 { margin-bottom: 8px; font-size: 1.3rem; }
.icon-success { color: var(--green); width: 1.25em; height: 1.25em; }
.form-success p { color: var(--ink-soft); }
.form-success a { color: var(--green); font-weight: 700; }
.form-fineprint { text-align: center; color: var(--ink-soft); font-size: .85rem; margin-top: 16px; }

/* ============ footer ============ */
.site-footer {
  border-top: 1px solid var(--glass-border);
  background: rgba(255,255,255,.02);
  padding: 54px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-inner p { margin-top: 12px; font-size: .94rem; color: var(--ink-soft); }
.footer-contact { text-align: right; }
.footer-phone a {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-decoration: none;
}
.footer-phone a:hover {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ /qr page (kept light & print-friendly) ============ */
.qr-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #0f172a;
  padding: 30px;
}
.qr-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .12);
  padding: 48px 40px;
  text-align: center;
  max-width: 460px;
  width: 100%;
}
.qr-card .logo { color: #0f172a; }
.qr-card .logo em { color: #64748b; }
.qr-card h1 { font-size: 1.6rem; margin: 18px 0 4px; letter-spacing: -.5px; }
.qr-card > p { color: #475569; }
.qr-code {
  max-width: 300px;
  margin: 26px auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px;
}
.qr-code svg { width: 100%; height: auto; display: block; }
.qr-url { font-weight: 700; font-size: 1.15rem; letter-spacing: .5px; }
.qr-phone { color: #475569; margin: 6px 0 22px; }
.qr-phone a { color: #2563eb; font-weight: 700; text-decoration: none; }
.qr-page .btn-primary { box-shadow: none; }

@media print {
  .no-print { display: none; }
  .qr-page { background: #fff; padding: 0; }
  .qr-card { box-shadow: none; }
}

/* ============ motion preferences ============ */
@media (prefers-reduced-motion: reduce) {
  .orb, .float-card, .pulse-dot, .gradient-text { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ responsive ============ */
@media (max-width: 980px) {
  .hero { padding-top: 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { text-align: center; }
  .hero .lead { margin-bottom: 28px; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-cta { margin-bottom: 26px; }
  .hero-cta, .hero-points { justify-content: center; }
  .hero-points { gap: 12px 22px; }
  .hero-visual { margin-top: 10px; }
  .browser-frame { transform: none; }
  .browser-frame:hover { transform: none; }
  .float-card-1 { top: -18px; right: 6px; }
  .float-card-2 { bottom: -16px; left: 6px; }
  .hero::before {
    inset: -6% -20% 30%;
    background:
      radial-gradient(52% 34% at 24% 10%, rgba(59, 130, 246, .38), transparent 70%),
      radial-gradient(46% 30% at 82% 22%, rgba(139, 92, 246, .34), transparent 70%),
      radial-gradient(40% 26% at 55% 46%, rgba(34, 211, 238, .2), transparent 70%);
  }
}
@media (max-width: 860px) {
  .steps, .quals, .feature-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .nav-link { display: none; }
}
@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 60px; }
  .section { padding: 64px 0; }
  .footer-contact { text-align: left; }
  .header-inner { padding-left: 16px; padding-right: 16px; }
  .logo { font-size: 1.12rem; }
  .btn-phone { padding: 9px 14px; font-size: .88rem; }
}
