
:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --text: #0f172a;
  --muted: #5b6476;
  --line: #dbe3f0;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-soft: rgba(37, 99, 235, 0.1);
  --dark: #0f172a;
  --dark-soft: #172338;
  --radius: 22px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 88px 0; }
.alt { background: var(--bg-soft); }
.section-dark {
  background: linear-gradient(135deg, #0f172a 0%, #13203c 100%);
  color: #fff;
}
.section-dark p, .section-dark li { color: rgba(255,255,255,.8); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219,227,240,.85);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1rem; }
.logo { font-size: 1.45rem; font-weight: 800; color: var(--primary); letter-spacing: -.03em; }
.site-nav { display: flex; align-items: center; gap: 1.2rem; }
.site-nav a:not(.btn) { color: #334155; font-weight: 600; }
.site-nav a:not(.btn):hover { color: var(--primary); }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg, .hero-bg img, .hero-overlay { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { background: linear-gradient(135deg, rgba(15,23,42,.92), rgba(15,23,42,.8), rgba(37,99,235,.45)); }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 7rem 0 6rem; color: #fff; }
.eyebrow {
  display: inline-block;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.hero h1 span { color: #8ec5ff; }
.hero p {
  width: min(780px, 100%);
  margin: 1.35rem auto 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.88);
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.35rem;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--primary);
  transition: .2s ease;
}
.btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }
.btn-sm { padding: .8rem 1rem; }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: rgba(37,99,235,.2);
}
.btn-ghost:hover { background: var(--primary-soft); color: var(--primary-dark); }
.btn-ghost.light { color: #fff; border-color: rgba(255,255,255,.26); }
.btn-ghost.light:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-block { width: 100%; }
.two-col { display: grid; grid-template-columns: 1.04fr .96fr; gap: 3.2rem; align-items: center; }
.reverse-mobile { grid-template-columns: .96fr 1.04fr; }
.section h2 { margin: 0 0 1rem; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -.03em; }
.section h3 { margin: 0 0 .65rem; font-size: 1.3rem; }
.section p { margin: 0 0 1rem; color: var(--muted); font-size: 1.05rem; }
.lead, .accent-text { color: #8ec5ff !important; font-weight: 700; font-size: 1.2rem !important; }
.accent-text { color: var(--primary) !important; }
.section-head { max-width: 780px; margin-bottom: 2.5rem; }
.section-head.center { text-align: center; margin-inline: auto; }
.feature-grid, .steps-grid, .pricing-grid, .faq-grid {
  display: grid;
  gap: 1.5rem;
}
.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card, .step-card, .pricing-card, .faq-item, .media-card, .video-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-card, .step-card, .pricing-card { padding: 1.6rem; }
.feature-card .icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary); font-weight: 800; margin-bottom: 1rem;
}
.step-card { position: relative; overflow: hidden; }
.step-number {
  position: absolute; right: 1rem; top: -.2rem; font-size: 5rem; font-weight: 800;
  color: rgba(37,99,235,.08);
}
.media-card { padding: 12px; position: relative; }
.media-card img { width: 100%; border-radius: calc(var(--radius) - 10px); }
.tilt-left::before, .tilt-right::before {
  content: ""; position: absolute; inset: 14px; border-radius: var(--radius);
  background: rgba(37,99,235,.08); z-index: -1;
}
.tilt-left::before { transform: rotate(-2.5deg) scale(1.02); }
.tilt-right::before { transform: rotate(2.5deg) scale(1.02); }
.dark-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.top-gap { margin-top: 5rem; }
.feature-stack > .two-col + .two-col { margin-top: 4rem; }
.alt-band { padding: 2rem; border-radius: 32px; background: var(--bg-soft); }
.check-list, .x-list, .price-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.check-list li, .x-list li, .price-list li {
  position: relative; padding-left: 2rem; margin-top: .85rem; color: #334155;
}
.section-dark .check-list li, .section-dark .x-list li { color: rgba(255,255,255,.82); }
.check-list li::before, .price-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 1.35rem; height: 1.35rem;
  display: grid; place-items: center; border-radius: 50%; background: var(--primary-soft); color: var(--primary); font-weight: 800;
}
.x-list li::before {
  content: "✕"; position: absolute; left: 0; top: 0; color: #f87171; font-weight: 800;
}
.compact li { margin-top: .55rem; }
.user-strip { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-top: 1.5rem; }
.user-strip span {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(37,99,235,.15); color: var(--primary); font-size: .8rem; font-weight: 800;
  margin-right: -.45rem; border: 2px solid #fff;
}
.video-shell { padding: 1rem; max-width: 920px; margin: 0 auto; }
.video-frame {
  position: relative; width: 100%; padding-top: 56.25%; overflow: hidden; border-radius: 18px;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pricing-card { display: flex; flex-direction: column; }
.pricing-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.badge {
  align-self: flex-start; margin-bottom: .9rem; padding: .45rem .75rem; border-radius: 999px;
  background: var(--primary); color: #fff; font-size: .85rem; font-weight: 800;
}
.price { display: flex; align-items: end; gap: .55rem; margin: .4rem 0 1rem; }
.price span { font-size: 3rem; line-height: 1; font-weight: 800; letter-spacing: -.04em; }
.price em { font-style: normal; color: var(--muted); }
.price-list { margin-bottom: 1.5rem; flex: 1; }
.faq-wrap { max-width: 1120px; }
.faq-search-wrap { max-width: 460px; margin: 0 auto 2rem; }
.faq-search-wrap input {
  width: 100%; border: 1px solid var(--line); border-radius: 999px; padding: .95rem 1.2rem;
  font: inherit; box-shadow: var(--shadow);
}
.faq-item { padding: 1.1rem 1.2rem; }
.faq-item summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: .9rem 0 0; font-size: .98rem; }
.small-note { margin-top: 1rem; color: var(--muted); font-size: .92rem; }
.center-text { text-align: center; }
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2rem; padding: 3.5rem 0 2rem; }
.footer-grid h4 { margin: 0 0 .7rem; }
.footer-grid a { display: block; color: var(--muted); margin-top: .55rem; }
.footer-bottom { padding: 1.25rem 0 2.5rem; border-top: 1px solid var(--line); color: var(--muted); }
.hidden { display: none !important; }

@media (max-width: 1040px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid, .pricing-grid, .faq-grid, .footer-grid, .two-col, .reverse-mobile { grid-template-columns: 1fr; }
  .alt-band { padding: 0; background: transparent; }
}
@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .site-nav {
    position: absolute; left: 1rem; right: 1rem; top: 76px; padding: 1rem; background: #fff;
    border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); display: none; flex-direction: column; align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-actions { flex-direction: column; }
  .btn, .btn-sm { width: 100%; }
  .feature-grid, .faq-grid { grid-template-columns: 1fr; }
}
