:root {
  --blue: #0b5cff;
  --blue-dark: #0644cc;
  --blue-soft: #eaf2ff;
  --blue-pale: #f5f8ff;
  --navy: #0b1529;
  --text: #344054;
  --muted: #667085;
  --line: #dfe7f3;
  --surface: #ffffff;
  --yellow: #fbbf24;
  --shadow: 0 24px 70px rgba(15, 52, 112, .14);
  --shadow-soft: 0 12px 34px rgba(15, 52, 112, .09);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; max-width: 100%; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { position: relative; padding: 108px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(223,231,243,.7);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 32px rgba(15, 52, 112, .08); }
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy); font-size: 21px; letter-spacing: -.03em; }
.brand-mark { width: 32px; height: 32px; color: var(--blue); }
.primary-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; color: #364152; }
.primary-nav > a:not(.button) { position: relative; }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--blue); transition: right .2s ease; }
.primary-nav > a:not(.button):hover::after { right: 0; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-button span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--navy); transition: .2s ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .faq-item button:focus-visible, .menu-button:focus-visible, a:focus-visible { outline: 3px solid rgba(11,92,255,.3); outline-offset: 3px; }
.button-small { min-height: 42px; padding: 11px 18px; border-radius: 10px; }
.button-dark { color: #fff; background: var(--navy); box-shadow: 0 8px 20px rgba(11,21,41,.18); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue), #2f7bff); box-shadow: 0 12px 28px rgba(11,92,255,.25); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(11,92,255,.32); }
.button-secondary { color: var(--navy); background: #fff; border-color: #cfd9e9; box-shadow: 0 8px 20px rgba(15,52,112,.05); }
.button-secondary:hover { border-color: #9fb6dd; box-shadow: var(--shadow-soft); }
.button-light { color: var(--blue-dark); background: #fff; box-shadow: 0 14px 30px rgba(6,31,84,.18); }
.button-full { width: 100%; }

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 94px;
  background: radial-gradient(circle at 78% 20%, #eef4ff 0, rgba(238,244,255,0) 38%), linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, #d7e4f8, transparent); }
.hero-grid { display: grid; grid-template-columns: 1fr .96fr; align-items: center; gap: 72px; position: relative; z-index: 2; }
.hero-copy { max-width: 620px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border-radius: 999px; color: var(--blue-dark); background: var(--blue-soft); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.eyebrow.centered { margin-inline: auto; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(11,92,255,.1); }
.hero h1 { margin: 24px 0 22px; font-size: clamp(48px, 5.4vw, 72px); line-height: 1.04; letter-spacing: -.055em; color: var(--navy); }
.hero h1 span { color: var(--blue); }
.hero-lead { max-width: 600px; margin: 0; font-size: 19px; color: var(--muted); }
.hero-points { list-style: none; padding: 0; margin: 28px 0 30px; display: grid; gap: 12px; font-size: 15px; font-weight: 650; color: #364152; }
.check { display: inline-flex; justify-content: center; align-items: center; width: 22px; height: 22px; margin-right: 10px; border-radius: 50%; color: white; background: var(--blue); font-size: 12px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.microcopy { margin: 13px 0 0; color: #758196; font-size: 12px; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 13px; }
.avatar-stack { display: flex; padding-left: 9px; }
.avatar-stack span { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; margin-left: -9px; border: 3px solid white; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #183a77, #4f8cff); font-size: 10px; font-weight: 800; }
.hero-trust .stars { font-size: 13px; }
.hero-trust p { margin: 0; color: #657185; font-size: 12px; }
.stars { color: var(--yellow); letter-spacing: 2px; }
.stars.small { font-size: 10px; }

.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 460px; height: 460px; right: -220px; top: 80px; background: rgba(64,132,255,.08); }
.hero-glow-two { width: 280px; height: 280px; left: -160px; bottom: 30px; background: rgba(11,92,255,.05); }

.hero-visual { position: relative; min-height: 580px; display: flex; align-items: center; justify-content: center; }
.visual-orbit { position: absolute; border: 1px solid rgba(11,92,255,.12); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 410px; height: 410px; border-style: dashed; animation: spin 42s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.workflow-card { position: relative; z-index: 2; width: min(100%, 510px); padding: 28px; border: 1px solid rgba(211,224,245,.95); border-radius: 28px; background: rgba(255,255,255,.92); box-shadow: 0 32px 80px rgba(29,76,150,.18); backdrop-filter: blur(18px); }
.workflow-topbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid #e8eef7; }
.workflow-label { margin: 0 0 4px; color: #718096; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.workflow-topbar h2 { margin: 0; color: var(--navy); font-size: 20px; letter-spacing: -.03em; }
.service-pill { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; padding: 7px 10px; border-radius: 999px; background: #ecfdf3; color: #137a43; font-size: 11px; font-weight: 800; }
.service-pill span { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 4px rgba(34,197,94,.12); }
.workflow-list { display: grid; gap: 10px; margin: 20px 0; }
.workflow-step { display: grid; grid-template-columns: 38px 1fr 26px; align-items: center; gap: 12px; padding: 14px; border-radius: 16px; border: 1px solid #e3eaf5; background: #fff; }
.workflow-number { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 12px; color: var(--blue); background: #edf4ff; font-size: 11px; font-weight: 800; }
.workflow-step strong { display: block; color: #1d2939; font-size: 12px; }
.workflow-step p { margin: 4px 0 0; color: #667085; font-size: 10px; line-height: 1.45; }
.workflow-check { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; color: #fff; background: var(--blue); font-size: 11px; font-weight: 800; }
.workflow-note { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 16px; background: #f5f8ff; border: 1px solid #dce7fa; }
.workflow-note > span { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 36px; height: 36px; border-radius: 11px; color: var(--blue); background: #fff; font-weight: 800; }
.workflow-note p { margin: 0; color: #667085; font-size: 10px; line-height: 1.5; }
.workflow-note strong { color: var(--navy); }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; width: 220px; padding: 14px 16px; border: 1px solid #e1e9f6; border-radius: 16px; background: rgba(255,255,255,.94); box-shadow: 0 16px 38px rgba(15,52,112,.16); animation: float 5s ease-in-out infinite; }
.floating-card strong { display: block; color: var(--navy); font-size: 11px; }
.floating-card p { margin: 2px 0 0; color: #7b8799; font-size: 9px; line-height: 1.35; }
.icon-bubble { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 34px; height: 34px; border-radius: 11px; color: #fff; background: var(--blue); font-weight: 800; }
.request-card { left: -6px; top: 112px; }
.response-card { right: -12px; bottom: 92px; animation-delay: -2.4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.industry-strip { padding: 38px 0 44px; background: #f7faff; border-top: 1px solid #edf2fa; border-bottom: 1px solid #e8eff9; }
.strip-label { margin: 0 0 25px; text-align: center; color: #7a8698; font-size: 12px; font-weight: 700; }
.industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.industry-item { display: flex; flex-direction: column; align-items: center; gap: 8px; color: #4e5d73; font-size: 12px; font-weight: 700; text-align: center; }
.industry-item span { display: flex; justify-content: center; align-items: center; width: 42px; height: 42px; border-radius: 14px; color: var(--blue); background: #fff; border: 1px solid #e3ebf7; font-size: 20px; box-shadow: 0 8px 20px rgba(15,52,112,.06); }

.section-heading { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-heading h2, .feature-copy h2, .proof-copy h2, .faq-intro h2 { margin: 20px 0 16px; color: var(--navy); font-size: clamp(35px, 4vw, 50px); line-height: 1.12; letter-spacing: -.045em; }
.section-heading p, .feature-copy > p, .proof-copy > p, .faq-intro > p { margin: 0; color: var(--muted); font-size: 17px; }
.how-section { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { position: relative; min-height: 315px; padding: 30px; border: 1px solid #e1e8f3; border-radius: var(--radius); background: #fff; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.step-card:hover { transform: translateY(-6px); border-color: #bfd1ef; box-shadow: var(--shadow-soft); }
.step-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -50px; bottom: -50px; border-radius: 50%; background: var(--blue-pale); }
.step-number { color: #9aa9bd; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.step-icon { display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; margin: 26px 0 24px; border-radius: 18px; color: var(--blue); background: var(--blue-soft); font-size: 24px; font-weight: 800; }
.step-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 20px; letter-spacing: -.025em; }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; }

.features-section { background: linear-gradient(180deg, #f7faff, #fff); }
.feature-grid { display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: 78px; }
.feature-panel { position: relative; padding: 44px; border-radius: 34px; background: linear-gradient(145deg, #dfeaff, #f7faff); }
.feature-panel::before { content: ""; position: absolute; width: 160px; height: 160px; right: -30px; top: -30px; border-radius: 50%; background: rgba(11,92,255,.08); }
.service-workflow { position: relative; padding: 28px; border-radius: 24px; background: #fff; border: 1px solid #dfe8f5; box-shadow: var(--shadow); }
.mini-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid #edf1f7; }
.mini-head span { display: block; color: #8994a5; font-size: 10px; }
.mini-head strong { color: var(--navy); font-size: 17px; }
.mini-head .service-badge { padding: 7px 10px; border-radius: 999px; color: #087443; background: #edfdf5; font-weight: 800; white-space: nowrap; }
.activity-card { display: flex; align-items: center; gap: 12px; padding: 17px 0; border-top: 1px solid #edf1f7; }
.mini-head + .activity-card { border-top: 0; }
.activity-icon { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 36px; height: 36px; border-radius: 11px; color: var(--blue); background: #edf4ff; font-weight: 800; }
.activity-card strong { display: block; color: #253249; font-size: 12px; }
.activity-card p { margin: 3px 0 0; color: #8994a5; font-size: 10px; line-height: 1.45; }
.feature-list { margin-top: 32px; display: grid; gap: 23px; }
.feature-list article { display: flex; gap: 14px; }
.feature-check { display: flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 28px; height: 28px; margin-top: 2px; border-radius: 50%; color: #fff; background: var(--blue); font-size: 13px; }
.feature-list h3 { margin: 0 0 5px; color: var(--navy); font-size: 17px; }
.feature-list p { margin: 0; color: var(--muted); font-size: 14px; }

.proof-section { background: #fff; }
.proof-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.proof-copy blockquote { margin: 30px 0; padding: 22px 0 22px 24px; border-left: 3px solid var(--blue); color: #344054; font-size: 16px; font-weight: 650; }
.text-link { display: inline-flex; gap: 8px; color: var(--blue-dark); font-weight: 800; font-size: 14px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.proof-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { padding: 24px; border-radius: 22px; border: 1px solid #e2e9f3; background: #fff; box-shadow: 0 10px 28px rgba(15,52,112,.06); }
.stat-card strong { display: block; margin: 14px 0 8px; color: var(--navy); font-size: 18px; }
.stat-card p { margin: 0; color: var(--muted); font-size: 13px; }
.stat-main { grid-column: 1 / -1; min-height: 230px; position: relative; overflow: hidden; background: linear-gradient(135deg, #0b5cff, #0643be); color: #fff; }
.stat-main .stat-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; opacity: .72; }
.stat-main strong { margin-top: 14px; color: #fff; font-size: 36px; }
.stat-main p { max-width: 390px; color: rgba(255,255,255,.78); }
.stat-icon { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 13px; color: var(--blue); background: var(--blue-soft); font-size: 19px; font-weight: 800; }
.momentum-bars { position: absolute; right: 28px; bottom: 0; display: flex; align-items: end; gap: 9px; height: 145px; }
.momentum-bars span { width: 22px; border-radius: 7px 7px 0 0; background: rgba(255,255,255,.25); border: 1px solid rgba(255,255,255,.16); }

.pricing-section { background: linear-gradient(180deg, #f7faff, #fff); }
.pricing-card { position: relative; max-width: 940px; margin: 0 auto; overflow: hidden; border: 1px solid #dce5f2; border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.price-accent { height: 6px; background: linear-gradient(90deg, var(--blue), #7aa7ff); }
.pricing-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; padding: 36px 40px 30px; border-bottom: 1px solid #e9eef6; }
.popular-pill { display: inline-flex; padding: 7px 10px; margin-bottom: 13px; border-radius: 999px; color: var(--blue-dark); background: var(--blue-soft); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.pricing-top h3 { margin: 0 0 7px; color: var(--navy); font-size: 24px; letter-spacing: -.035em; }
.pricing-top p { margin: 0; color: var(--muted); font-size: 14px; }
.price-block { text-align: right; white-space: nowrap; }
.price-block strong { color: var(--navy); font-size: 44px; letter-spacing: -.05em; }
.price-block div span { color: var(--muted); font-size: 13px; }
.price-block small { color: #8994a5; font-size: 10px; }
.pricing-body { display: grid; grid-template-columns: 1fr 360px; gap: 46px; padding: 38px 40px; }
.pricing-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 15px; }
.pricing-list li { display: flex; align-items: center; gap: 10px; color: #364152; font-size: 14px; font-weight: 650; }
.pricing-list li span { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; color: #fff; background: var(--blue); font-size: 11px; }
.checkout-box { padding: 20px; border-radius: 20px; background: #f8faff; border: 1px solid #e7edf6; }
.secure-note { margin: 8px 0 0; color: #8b96a8; font-size: 9px; text-align: center; }
.guarantee-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #e9eef6; background: #fbfcfe; }
.guarantee-row > div { padding: 25px 28px; border-right: 1px solid #e9eef6; }
.guarantee-row > div:last-child { border-right: 0; }
.guarantee-row span { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; margin-bottom: 10px; border-radius: 10px; color: var(--blue); background: var(--blue-soft); }
.guarantee-row strong { display: block; color: var(--navy); font-size: 13px; }
.guarantee-row p { margin: 5px 0 0; color: var(--muted); font-size: 10px; }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 84px; align-items: start; }
.faq-intro { position: sticky; top: 118px; }
.faq-intro .button { margin-top: 26px; }
.accordion { border-top: 1px solid #dfe6f1; }
.faq-item { border-bottom: 1px solid #dfe6f1; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; background: transparent; color: var(--navy); font-weight: 800; text-align: left; cursor: pointer; }
.faq-plus { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%; color: var(--blue); background: var(--blue-soft); font-size: 18px; }
.faq-answer { padding: 0 42px 23px 0; }
.faq-answer p { margin: 0; color: var(--muted); font-size: 14px; }

.final-cta { padding: 0 0 90px; background: #fff; }
.final-cta-inner { min-height: 285px; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 52px 60px; border-radius: 32px; color: #fff; background: radial-gradient(circle at 87% 10%, rgba(255,255,255,.18), transparent 28%), linear-gradient(135deg, #0747c9, #0b5cff 55%, #317cff); box-shadow: 0 28px 70px rgba(11,92,255,.26); }
.cta-kicker { display: block; margin-bottom: 10px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.final-cta h2 { max-width: 650px; margin: 0 0 10px; font-size: clamp(34px, 4.2vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
.final-cta p { margin: 0; color: rgba(255,255,255,.76); }
.cta-action { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cta-action span { font-size: 10px; color: rgba(255,255,255,.7); }

.site-footer { padding: 64px 0 24px; background: #071223; color: #d1d9e7; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .8fr; gap: 50px; }
.footer-brand { color: #fff; }
.footer-grid > div:first-child p { max-width: 420px; margin: 16px 0 0; color: #8997ab; font-size: 13px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; font-size: 13px; }
.footer-links a, .footer-contact a { color: #c9d4e5; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact > span { color: #708097; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: #728198; font-size: 11px; }

.toast { position: fixed; z-index: 2000; left: 50%; bottom: 24px; max-width: min(90vw, 460px); padding: 13px 18px; border-radius: 12px; color: #fff; background: var(--navy); box-shadow: 0 16px 36px rgba(0,0,0,.22); font-size: 13px; font-weight: 700; transform: translate(-50%, 130%); opacity: 0; transition: transform .25s ease, opacity .25s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .hero-grid { gap: 34px; }
  .hero h1 { font-size: 55px; }
  .hero-visual { min-height: 540px; }
  .floating-card { width: 195px; }
  .request-card { left: -18px; }
  .response-card { right: -15px; }
  .feature-grid, .proof-grid { gap: 45px; }
}

@media (max-width: 880px) {
  .section { padding: 84px 0; }
  .menu-button { display: block; z-index: 1002; }
  .primary-nav { position: fixed; inset: 0 0 auto auto; width: min(86vw, 380px); min-height: 100vh; padding: 110px 28px 34px; flex-direction: column; align-items: stretch; gap: 8px; background: #fff; box-shadow: -20px 0 50px rgba(7,18,35,.16); transform: translateX(105%); transition: transform .28s ease; }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav a { padding: 14px 10px; font-size: 16px; }
  .primary-nav .button { margin-top: 10px; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 80px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; text-align: center; margin: 0 auto; }
  .hero-copy .eyebrow { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-points { max-width: 500px; margin-inline: auto; text-align: left; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { min-height: 565px; margin-top: 10px; }
  .workflow-card { width: min(92%, 540px); }
  .request-card { left: 5%; }
  .response-card { right: 4%; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 0; }
  .feature-grid, .proof-grid, .faq-grid { grid-template-columns: 1fr; }
  .feature-grid { gap: 55px; }
  .proof-grid { gap: 42px; }
  .faq-grid { gap: 45px; }
  .faq-intro { position: static; }
  .pricing-body { grid-template-columns: 1fr; }
  .checkout-box { max-width: 500px; }
  .guarantee-row { grid-template-columns: 1fr; }
  .guarantee-row > div { border-right: 0; border-bottom: 1px solid #e9eef6; }
  .guarantee-row > div:last-child { border-bottom: 0; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-action { align-items: flex-start; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .nav-wrap { height: 70px; }
  .hero { min-height: 0; padding: 68px 0 76px; }
  .hero h1 { font-size: clamp(42px, 13vw, 56px); }
  .hero-lead { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 510px; }
  .workflow-card { width: 100%; padding: 20px; border-radius: 22px; }
  .workflow-step { grid-template-columns: 34px 1fr 24px; padding: 12px; }
  .workflow-number { width: 34px; height: 34px; }
  .workflow-topbar h2 { font-size: 16px; }
  .service-pill { display: none; }
  .floating-card { width: 185px; padding: 11px; }
  .request-card { top: 65px; left: -4px; }
  .response-card { right: -2px; bottom: 42px; }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 310px; height: 310px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .industry-item:last-child { grid-column: 1 / -1; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2, .feature-copy h2, .proof-copy h2, .faq-intro h2 { font-size: 36px; }
  .feature-panel { padding: 18px; border-radius: 24px; }
  .service-workflow { padding: 19px; }
  .proof-cards { grid-template-columns: 1fr; }
  .stat-main { grid-column: auto; }
  .momentum-bars { opacity: .55; right: 10px; }
  .pricing-top { padding: 28px 24px; flex-direction: column; }
  .price-block { text-align: left; }
  .pricing-body { padding: 28px 24px; gap: 30px; }
  .final-cta { padding-bottom: 64px; }
  .final-cta-inner { padding: 38px 27px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(11,92,255,.18);
}

.after-checkout-note {
  margin: 18px 0 0;
  padding: 14px 15px;
  border: 1px solid #dce7f8;
  border-radius: 14px;
  color: #536176;
  background: #fff;
  font-size: 11px;
  line-height: 1.55;
}
.after-checkout-note strong { color: var(--navy); }

.next-steps-section {
  background: #fff;
}
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.next-step-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #e1e8f3;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: 0 12px 32px rgba(15,52,112,.06);
}
.next-step-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--blue-pale);
}
.next-step-number {
  color: #98a5b8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.next-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 24px 0 20px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #4a8cff);
  box-shadow: 0 12px 24px rgba(11,92,255,.2);
  font-weight: 800;
}
.next-step-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 19px;
  letter-spacing: -.025em;
}
.next-step-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 880px) {
  .next-steps-grid { grid-template-columns: 1fr; }
  .next-step-card { min-height: 0; }
}



/* Toll-free SMS verification and legal pages */
.sms-section {
  background: linear-gradient(180deg, #f7faff, #fff);
  padding-top: 88px;
  padding-bottom: 88px;
}
.sms-optin-card {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 54px;
  padding: 46px 50px;
  border: 1px solid #dce5f2;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.sms-optin-copy h2 {
  margin: 18px 0 14px;
  color: var(--navy);
  font-size: clamp(30px, 3.7vw, 44px);
  line-height: 1.12;
  letter-spacing: -.04em;
}
.sms-optin-copy > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.sms-optin-copy > p + p { margin-top: 12px; }
.sms-optin-copy a { color: var(--blue-dark); font-weight: 800; }
.sms-compliance-copy { font-size: 12px !important; line-height: 1.65; }
.sms-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #8994a5;
  font-size: 12px;
}
.sms-legal-links a { text-decoration: underline; text-underline-offset: 3px; }
.sms-optin-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border: 1px solid #dbe6f7;
  border-radius: 24px;
  background: #f7faff;
  text-align: center;
}
.phone-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 15px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #4a8cff);
  box-shadow: 0 12px 24px rgba(11,92,255,.22);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}
.sms-optin-action strong {
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -.025em;
}
.sms-optin-action > span {
  margin: 2px 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.sms-optin-action small {
  max-width: 270px;
  margin-top: 12px;
  color: #8a96a8;
  font-size: 10px;
  line-height: 1.5;
}
.sms-start-link { width: 100%; }
.footer-legal-line {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.footer-legal-line p {
  margin: 0;
  color: #728198;
  font-size: 10px;
  line-height: 1.65;
}

.legal-page {
  min-height: 100vh;
  background: #f7faff;
}
.legal-header {
  border-bottom: 1px solid #e2e9f3;
  background: #fff;
}
.legal-header .nav-wrap { height: 72px; }
.legal-back {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}
.legal-main { padding: 72px 0 90px; }
.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 52px 56px;
  border: 1px solid #dce5f2;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.legal-card h1 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.legal-updated { margin: 0 0 34px; color: #8a96a8; font-size: 12px; }
.legal-card h2 {
  margin: 32px 0 10px;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -.02em;
}
.legal-card p, .legal-card li {
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
}
.legal-card ul { padding-left: 22px; }
.legal-card a { color: var(--blue-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-highlight {
  margin: 24px 0;
  padding: 20px 22px;
  border: 1px solid #cfe0fb;
  border-radius: 16px;
  background: #f5f8ff;
}
.legal-site-footer {
  padding: 28px 0;
  background: #071223;
  color: #8b98aa;
  font-size: 11px;
}
.legal-site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
}
.legal-site-footer a { color: #c9d4e5; }
.legal-site-footer nav { display: flex; flex-wrap: wrap; gap: 16px; }

@media (max-width: 880px) {
  .sms-optin-card { grid-template-columns: 1fr; padding: 34px 30px; gap: 30px; }
  .sms-optin-action { max-width: 520px; width: 100%; }
  .legal-main { padding: 48px 0 68px; }
  .legal-card { padding: 36px 28px; }
}

@media (max-width: 560px) {
  .sms-optin-card { padding: 28px 20px; }
  .sms-optin-action { padding: 24px 18px; }
  .legal-card { padding: 30px 20px; border-radius: 22px; }
  .legal-header .nav-wrap { height: auto; min-height: 68px; gap: 16px; }
}
