:root {
  --blue: #0070F8;
  --blue-2: #4F68F8;
  --blue-deep: #0058C8;
  --teal: #60B0A8;
  --teal-ink: #2A6F69;
  --ink: #0C1220;
  --muted: #5B6578;
  --line: #E7EBF3;
  --soft: #F4F7FF;
  --soft-2: #EAF0FF;
  --white: #FFFFFF;
  --ok: #178A68;
  --header: 68px;
  --bar: 42px;
  --max: 1180px;
  --shadow: 0 12px 40px rgba(0, 88, 200, .10);
  --shadow-sm: 0 4px 16px rgba(16, 24, 40, .06);
  --font: "Plus Jakarta Sans", Inter, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }
button, input, select { font: inherit; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.skip { position: absolute; left: 12px; top: -40px; background: var(--ink); color: #fff; padding: 8px 12px; z-index: 80; }
.skip:focus { top: 10px; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.bar {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(90deg, #0058C8 0%, #0070F8 55%, #4F68F8 100%);
  color: #fff; min-height: var(--bar); font-size: 13px; font-weight: 600;
}
.bar[hidden] { display: none; }
.bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: var(--bar); }
.bar-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bar .short { display: none; }
.ticks { display: flex; gap: 5px; font-variant-numeric: tabular-nums; }
.tick {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: 3px 8px; min-width: 44px; text-align: center; line-height: 1.1;
}
.tick b { display: block; font-size: 13px; letter-spacing: -.02em; }
.tick span { font-size: 8px; letter-spacing: .08em; text-transform: uppercase; opacity: .75; }
.bar a { color: #fff; text-underline-offset: 3px; }
.x { background: 0; border: 0; color: #fff; font-size: 20px; cursor: pointer; padding: 4px 6px; opacity: .8; }
.x:hover { opacity: 1; }

.site-header {
  position: sticky; top: var(--bar); z-index: 40;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230,234,242,.9);
}
body.bar-off .site-header { top: 0; }
body.scrolled .site-header { box-shadow: 0 8px 24px rgba(16, 24, 40, .06); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header); gap: 16px; }
.brand { display: flex; align-items: center; }
.brand img { height: 38px; width: auto; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav > a, .drop > summary {
  color: #2A3344; font-size: 14px; font-weight: 560; padding: 8px 13px; border-radius: 9px;
  list-style: none; cursor: pointer;
}
.nav > a:hover, .drop > summary:hover { background: var(--soft); color: var(--blue); }
.drop { position: relative; }
.drop summary { display: flex; align-items: center; gap: 5px; }
.drop summary::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.drop summary::-webkit-details-marker { display: none; }
.drop-panel {
  position: absolute; top: calc(100% + 10px); left: 0; width: 320px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 8px; display: none; z-index: 20;
}
.drop[open] .drop-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.drop-panel a { display: block; padding: 9px 10px; border-radius: 10px; color: var(--ink); font-size: 13px; font-weight: 600; }
.drop-panel a:hover { background: var(--soft); color: var(--blue); }
.drop-panel a span { display: block; color: var(--muted); font-size: 11.5px; font-weight: 450; margin-top: 1px; }
.nav-cta { display: flex; gap: 8px; align-items: center; }
.menu-btn { display: none; background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 8px 10px; cursor: pointer; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 11px; padding: 12px 18px;
  font-weight: 680; font-size: 14px; line-height: 1.2; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .15s, color .15s, border-color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(0,112,248,.28); }
.btn-blue:hover { background: var(--blue-deep); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--blue-2); color: var(--blue); }
.btn-sm { padding: 8px 13px; font-size: 13px; box-shadow: none; }
.btn-block { width: 100%; }

.hero {
  position: relative; overflow: hidden;
  padding: 56px 0 36px;
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(0,112,248,.10), transparent 55%),
    radial-gradient(700px 360px at -10% 110%, rgba(96,176,168,.10), transparent 50%),
    #fff;
}
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: start; }
.old-only { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue); border: 1px solid #D4E3FF;
  font-size: 12.5px; font-weight: 680; padding: 6px 12px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.chip i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,112,248,.16); animation: pulse 1.8s ease infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(0,112,248,0); } }
h1 { font-size: clamp(2.15rem, 4.8vw, 3.4rem); font-weight: 780; letter-spacing: -.04em; line-height: 1.08; }
h2 { font-size: clamp(1.5rem, 2.7vw, 2.1rem); font-weight: 740; letter-spacing: -.032em; line-height: 1.18; }
h3 { font-size: 1.06rem; font-weight: 700; letter-spacing: -.015em; }
.lede { color: var(--muted); font-size: 17px; max-width: 40ch; margin: 16px 0 24px; line-height: 1.55; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.mini-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; color: var(--muted); font-size: 13px; }
.mini-trust b { color: var(--ink); }

.calc-card {
  background: rgba(255,255,255,.92);
  border: 1px solid #E2E8F4; border-radius: 20px;
  padding: 22px; box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.calc-card h3 { margin-bottom: 4px; font-size: 1.15rem; }
.seg { display: flex; background: var(--soft); border-radius: 12px; padding: 4px; gap: 4px; margin-bottom: 14px; }
.seg button {
  flex: 1; border: 0; background: 0; border-radius: 9px; padding: 8px 6px;
  font-size: 13px; font-weight: 680; color: var(--muted); cursor: pointer;
}
.seg button[aria-pressed="true"] { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 10px; }
.field label { display: block; font-size: 12px; font-weight: 680; margin-bottom: 5px; color: #3A4558; }
.field input, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 11px; padding: 11px 12px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,112,248,.12); outline: 0; }
.check { display: flex; gap: 8px; align-items: flex-start; font-size: 12.5px; color: var(--muted); margin: 6px 0 12px; }
.check input { margin-top: 3px; accent-color: var(--blue); }
.old-only[hidden] { display: none; }
.result { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.rcard { border: 1px solid var(--line); border-radius: 14px; padding: 12px 13px; background: var(--soft); }
.rcard.win { border-color: #9ED9D1; background: #F0FAF8; }
.rcard .n { font-size: 10.5px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.rcard .amt { font-size: 1.55rem; font-weight: 780; letter-spacing: -.035em; margin: 3px 0; font-variant-numeric: tabular-nums; }
.save { margin: 12px 0; font-size: 13.5px; font-weight: 680; color: var(--teal-ink); }
.hint { font-size: 12px; color: var(--muted); margin-top: 8px; }

section { padding: 80px 0; scroll-margin-top: 124px; }
.band { background: var(--soft); }
.sec { margin-bottom: 28px; }
.sec p.sub { color: var(--muted); margin-top: 8px; max-width: 48ch; font-size: 16px; }

.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tile {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 14px 14px 16px; color: inherit;
  transition: transform .25s var(--ease), border-color .2s, box-shadow .25s var(--ease);
}
.tile:hover { transform: translateY(-4px); border-color: #C9D8F8; box-shadow: var(--shadow); color: inherit; }
.tile .ico {
  width: 36px; height: 36px; border-radius: 10px; background: var(--soft);
  color: var(--blue); display: grid; place-items: center; font-weight: 750; margin-bottom: 12px;
}
.tile h3 { margin: 2px 0 4px; }
.tile p { color: var(--muted); font-size: 13.5px; flex: 1; }
.tile .go {
  color: var(--blue); font-size: 13px; font-weight: 680; margin-top: 12px;
  display: inline-flex; align-items: center; gap: 4px;
}
.tile:hover .go { gap: 8px; }
.tile .pic, .art {
  border-radius: 12px; overflow: hidden; background: var(--soft);
  aspect-ratio: 4/3; margin: -2px -2px 12px;
}
.tile .pic img, .art img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.08); transition: transform .5s var(--ease);
}
.tile:hover .pic img { transform: scale(1.14); }
.hero-art {
  border-radius: 22px; overflow: hidden; aspect-ratio: 16/8.2;
  background: var(--soft); box-shadow: var(--shadow);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: -28px; position: relative; }
.kpi {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; box-shadow: var(--shadow-sm);
}
.kpi b { display: block; color: var(--blue); font-size: 12px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.prose { max-width: 72ch; color: #3A4556; }
.prose p { margin: 0 0 14px; }
.prose h2 { margin: 28px 0 10px; color: var(--ink); }
.prose h3 { margin: 20px 0 8px; }
.prose ul { padding-left: 18px; margin: 0 0 14px; }
.prose li { margin: 6px 0; }
.prose table { margin: 12px 0 18px; min-width: 0; width: 100%; }

.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-card .art { aspect-ratio: 1; max-width: 120px; margin-bottom: 14px; }
.why-card p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 20px;
}
.step b {
  display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 10px;
  background: var(--blue); color: #fff; font-size: 14px; margin-bottom: 14px;
}
.step p { color: var(--muted); font-size: 14.5px; margin-top: 6px; }

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.plan {
  border: 1px solid var(--line); border-radius: 18px; padding: 20px 18px;
  background: #fff; display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.plan.pop { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), var(--shadow); }
.plan .who { font-size: 11px; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-2); }
.plan h3 { font-size: 1.35rem; }
.plan ul { list-style: none; font-size: 13.5px; color: #3D4A5C; }
.plan li { display: flex; justify-content: space-between; gap: 8px; padding: 7px 0; border-bottom: 1px solid #F1F4F9; }
.y { color: var(--ok); font-weight: 760; }
.n { color: #C5CAD3; }
.plan .btn { margin-top: auto; }
.g-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.g { border-radius: 16px; padding: 18px 20px; background: #fff; border: 1px solid #D7E4FF; }
.g h3 { margin-bottom: 6px; }
.g p { color: var(--muted); font-size: 14px; }

.guides { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.guide {
  display: block; padding: 20px 18px; border-radius: 16px;
  background: var(--soft); border: 1px solid transparent; color: inherit;
  transition: background .2s, border-color .2s, transform .25s var(--ease);
}
.guide:hover { background: #fff; border-color: var(--line); transform: translateY(-3px); color: inherit; box-shadow: var(--shadow-sm); }
.guide h3 { margin-bottom: 6px; }
.guide p { color: var(--muted); font-size: 13.5px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14.5px; }
th { background: var(--soft); font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
td.win { font-weight: 680; color: var(--ink); background: #F6FFFC; }
tr:last-child td { border-bottom: 0; }

details.faq { border-bottom: 1px solid var(--line); }
details.faq summary {
  cursor: pointer; list-style: none; font-weight: 680; padding: 18px 32px 18px 0; position: relative;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: ""; position: absolute; right: 4px; top: 22px; width: 10px; height: 10px;
  border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
  transform: rotate(45deg); transition: transform .2s var(--ease);
}
details.faq[open] summary::after { transform: rotate(225deg); top: 26px; }
details.faq p { color: var(--muted); padding: 0 0 16px; max-width: 70ch; }

.page-hero { padding: 44px 0 12px; }
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--blue); }
.bullets { margin: 16px 0 20px; padding-left: 18px; color: var(--ink); }
.bullets li { margin: 7px 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 22px; }
.chips span { background: var(--soft); border: 1px solid #D7E4FF; color: var(--ink); font-size: 13px; padding: 6px 11px; border-radius: 999px; }

.final {
  position: relative; overflow: hidden;
  background:
    radial-gradient(600px 240px at 50% -20%, rgba(0,112,248,.16), transparent 60%),
    var(--soft);
  border-top: 1px solid var(--line);
  text-align: center; padding: 72px 0;
}
.final h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.final .lede { margin-inline: auto; }

footer { background: #fff; border-top: 1px solid var(--line); padding: 48px 0 28px; font-size: 13.5px; color: var(--muted); }
.foot-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1.1fr; gap: 28px; }
footer h3 { color: var(--ink); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
footer a { display: block; color: var(--muted); padding: 3px 0; }
footer a:hover { color: var(--blue); }
.socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.socials a {
  display: inline-flex; padding: 6px 11px; border: 1px solid var(--line);
  border-radius: 999px; color: var(--ink); font-size: 12.5px;
}
.socials a:hover { border-color: var(--blue); color: var(--blue); }
.legal { margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; font-size: 12px; }

.mobile-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.mobile-cta .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@media (max-width: 980px) {
  .hero-grid, .tiles, .steps, .g-row, .foot-grid, .split, .kpis, .why, .guides { grid-template-columns: 1fr 1fr; }
  .plans { display: flex; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .plan { min-width: 250px; scroll-snap-align: start; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px; gap: 4px;
    max-height: 70vh; overflow: auto;
  }
  .drop-panel { position: static; width: 100%; box-shadow: none; border: 0; padding: 0 0 0 8px; }
  .drop[open] .drop-panel { grid-template-columns: 1fr; }
  .menu-btn { display: inline-flex; }
  .nav-cta .btn-ghost { display: none; }
}
@media (max-width: 720px) {
  .mobile-cta { display: block; }
  .hero { padding: 28px 0 16px; }
  .brand img { height: 30px; }
  .old-only { grid-template-columns: 1fr; }
  main { min-height: 50vh; }
  .hero-grid, .tiles, .steps, .g-row, .foot-grid, .result, .split, .kpis, .why, .guides { grid-template-columns: 1fr; }
  .bar .wrap { padding: 6px 0; }
  .ticks { width: 100%; }
  .tick { flex: 1; min-width: 0; }
  .bar .long { display: none; }
  .bar .short { display: inline; }
  section { padding: 52px 0; }
  .kpis { margin-top: 14px; }
  .hero-art { aspect-ratio: 16/11; }
  h1 { font-size: 2rem; }
}
