:root {
  --ink: #101827;
  --muted: #5D6678;
  --line: #E7EBF3;
  --soft: #F6F8FC;
  --white: #FFFFFF;
  --blue: #285BFF;
  --blue-dark: #183DCC;
  --violet: #7C3AED;
  --gold: #C99432;
  --success: #0E7A51;
  --shadow: 0 24px 70px rgba(16, 24, 39, .12);
  --shadow-soft: 0 16px 44px rgba(16, 24, 39, .08);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid rgba(40,91,255,.35); outline-offset: 3px; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 1000; background: var(--ink); color: var(--white); padding: .7rem 1rem; border-radius: 12px; }
.skip-link:focus { top: 1rem; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: linear-gradient(180deg, rgba(2,8,28,.97), rgba(6,13,36,.94));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 48px rgba(2,8,28,.22);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 92px; gap: 24px; }
.logo { display: inline-flex; align-items: center; min-width: 214px; }
.logo img { height: 62px; width: auto; max-width: 285px; object-fit: contain; border-radius: 12px; }
.nav-toggle { display: none; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); border-radius: 12px; padding: .75rem; color: var(--white); }
.nav-menu { display: flex; align-items: center; gap: 24px; font-weight: 700; font-size: .96rem; }
.nav-menu a { color: rgba(255,255,255,.78); }
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: #5FE9FF; }
.header-actions { display: flex; gap: 12px; align-items: center; }
.site-header .btn-secondary { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: var(--white); box-shadow: none; }
.site-header .btn-secondary:hover { background: rgba(255,255,255,.14); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px; padding: 13px 20px; font-weight: 800; border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer; font-size: .96rem;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--violet)); color: var(--white); box-shadow: 0 16px 36px rgba(40,91,255,.24); }
.btn-secondary { background: var(--white); border-color: var(--line); color: var(--ink); box-shadow: 0 12px 24px rgba(16,24,39,.05); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-text { color: var(--blue); font-weight: 800; display: inline-flex; align-items: center; gap: 8px; }
.hero { position: relative; overflow: hidden; padding: 88px 0 72px; background: radial-gradient(circle at top left, rgba(40,91,255,.13), transparent 34%), linear-gradient(180deg, #FFFFFF 0%, #F7F9FF 100%); }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 56px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 7px rgba(201,148,50,.14); }
h1, h2, h3 { line-height: 1.06; margin: 0; letter-spacing: -.04em; }
h1 { font-size: clamp(3rem, 6vw, 5.9rem); margin-top: 18px; }
h2 { font-size: clamp(2.15rem, 4vw, 3.9rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
p { margin: 0; color: var(--muted); }
.lead { font-size: clamp(1.1rem, 1.8vw, 1.32rem); margin-top: 24px; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 36px; max-width: 730px; }
.trust-card { border: 1px solid var(--line); background: rgba(255,255,255,.78); border-radius: 18px; padding: 16px; box-shadow: var(--shadow-soft); }
.trust-card strong { display: block; font-size: 1.05rem; }
.trust-card span { color: var(--muted); font-size: .92rem; }
.hero-media { position: relative; }
.hero-photo { border-radius: 34px; min-height: 600px; object-fit: cover; box-shadow: var(--shadow); border: 10px solid var(--white); }
.float-panel { position: absolute; left: -24px; bottom: 34px; width: min(335px, 78%); background: rgba(255,255,255,.92); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 24px; padding: 20px; backdrop-filter: blur(14px); }
.float-panel strong { display: block; margin-bottom: 8px; }
.progress-line { height: 10px; border-radius: 999px; background: #E9EDF7; overflow: hidden; margin-top: 14px; }
.progress-line span { display: block; width: 76%; height: 100%; background: linear-gradient(90deg, var(--blue), var(--violet)); border-radius: inherit; }
section { padding: 86px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 42px; }
.section-head p { max-width: 560px; font-size: 1.08rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft); }
.card.soft { background: linear-gradient(180deg, #FFFFFF, #F7F9FF); }
.icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(40,91,255,.13), rgba(124,58,237,.13)); color: var(--blue); font-weight: 900; margin-bottom: 22px; }
.card h3 { margin-bottom: 13px; }
.photo-card { padding: 0; overflow: hidden; }
.photo-card img { height: 265px; width: 100%; object-fit: cover; }
.photo-card .card-body { padding: 28px; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.split.reverse { grid-template-columns: 1.05fr .95fr; }
.split-photo { border-radius: 34px; min-height: 520px; width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.check-list { display: grid; gap: 15px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: #263147; font-weight: 700; }
.check-list li::before { content: "✓"; flex: 0 0 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(14,122,81,.12); color: var(--success); font-weight: 900; margin-top: 1px; }
.band { background: var(--ink); color: var(--white); border-radius: 36px; padding: 56px; overflow: hidden; position: relative; }
.band::after { content: ""; position: absolute; inset: auto -120px -200px auto; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,.35), transparent 70%); }
.band p { color: rgba(255,255,255,.74); }
.band .btn-secondary { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.22); box-shadow: none; }
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { counter-increment: step; display: grid; grid-template-columns: 72px 1fr; gap: 20px; align-items: start; background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: var(--shadow-soft); }
.step::before { content: counter(step, decimal-leading-zero); width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; background: var(--ink); color: var(--white); font-weight: 900; }
.feature-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 22px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-soft); }
.feature-table th, .feature-table td { text-align: left; padding: 18px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.feature-table th { background: #F7F9FF; font-size: .92rem; text-transform: uppercase; letter-spacing: .06em; color: #42506A; }
.feature-table tr:last-child td { border-bottom: 0; }
.page-hero { padding: 72px 0 52px; background: linear-gradient(180deg, #FFFFFF 0%, #F7F9FF 100%); border-bottom: 1px solid var(--line); }
.page-hero .lead { max-width: 760px; }
.kicker-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.kicker { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 18px; font-weight: 800; box-shadow: var(--shadow-soft); }
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.showcase-card { border-radius: 30px; overflow: hidden; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-soft); }
.showcase-card img { height: 320px; width: 100%; object-fit: cover; }
.showcase-card div { padding: 28px; }
.plan { display: flex; flex-direction: column; min-height: 100%; }
.plan .btn { margin-top: auto; }
.plan-tag { display: inline-flex; align-self: flex-start; background: rgba(40,91,255,.1); color: var(--blue); padding: 7px 12px; border-radius: 999px; font-weight: 900; font-size: .78rem; margin-bottom: 18px; }
.message-panel { display: grid; grid-template-columns: .78fr 1.22fr; gap: 28px; align-items: start; }
.form { background: var(--white); border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow); padding: 32px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: #263147; }
input, textarea, select { width: 100%; border: 1px solid #D9DFEA; border-radius: 16px; padding: 14px 15px; font: inherit; background: #FFFFFF; color: var(--ink); }
textarea { min-height: 150px; resize: vertical; }
.notice { padding: 16px 18px; border-radius: 18px; background: #F0F7FF; border: 1px solid #CFE1FF; color: #254066; margin-top: 16px; }
.footer { background: #0E1524; color: var(--white); padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 36px; }
.footer p, .footer a { color: rgba(255,255,255,.72); }
.footer h3 { font-size: 1rem; letter-spacing: 0; margin-bottom: 12px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 38px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.badge { border: 1px solid var(--line); background: var(--white); border-radius: 999px; padding: 8px 12px; color: #2B3852; font-weight: 800; font-size: .88rem; }
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu { position: absolute; inset: 92px 20px auto 20px; display: none; flex-direction: column; align-items: stretch; background: #060D24; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 18px; box-shadow: var(--shadow); }
  .nav-menu.is-open { display: flex; }
  .header-actions { display: none; }
  .logo { min-width: 180px; }
  .logo img { height: 56px; max-width: 240px; }
  .hero-grid, .split, .split.reverse, .message-panel, .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .kicker-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-photo, .split-photo { min-height: 420px; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero { padding-top: 54px; }
  .nav-wrap { min-height: 82px; }
  .logo { min-width: 160px; }
  .logo img { height: 48px; max-width: 205px; }
  .nav-menu { inset: 82px 14px auto 14px; }
  .trust-strip, .grid-3, .kicker-grid, .showcase, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 16px; }
  .band { padding: 34px 24px; border-radius: 26px; }
  .float-panel { position: static; width: 100%; margin-top: -50px; }
  .step { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
