:root {
  --navy: #06152e;
  --navy-2: #0a2147;
  --blue: #1769ff;
  --blue-2: #41a4ff;
  --cyan: #79d7ff;
  --ink: #10203a;
  --muted: #60718c;
  --line: #dbe7f7;
  --soft: #f2f7ff;
  --white: #fff;
  --green: #10a875;
  --shadow: 0 22px 70px rgba(17, 70, 151, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip {
  position: fixed; left: 18px; top: -80px; z-index: 100;
  padding: 12px 16px; border-radius: 10px; color: #fff; background: var(--navy);
}
.skip:focus { top: 16px; }

.topbar {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(3,6,24,.96); backdrop-filter: blur(16px);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; font-size: 20px; font-weight: 850; letter-spacing: -.04em; }
.brand-mark {
  display: grid; width: 42px; height: 42px; place-items: center; overflow: hidden;
  border-radius: 13px; color: #fff; background: #fff;
  box-shadow: 0 10px 28px rgba(23,105,255,.28);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-mark svg { width: 21px; height: 21px; }
.brand em { color: var(--blue-2); font-style: normal; }
.mobile-brand { display: inline-flex; flex: 0 0 auto; font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 18px; color: #deddeb; font-size: 14px; font-weight: 650; }
.nav-links a:hover { color: #fff; }
.nav-links .nav-featured { color: #22d3ee; font-weight: 800; }
.nav-links .nav-featured:hover { color: #67e8f9; }
.nav-mobile-plan { display: none; }
.header-plan {
  display: inline-flex; min-height: 48px; flex: 0 0 auto; align-items: center; justify-content: center;
  border: 1px solid #29456f; border-radius: 15px; padding: 0 21px;
  color: #fff; background: #071229; font-size: 15px; font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.header-plan:hover { border-color: #3d68a7; background: #0b1b38; transform: translateY(-1px); }
.nav-cta, .button {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px;
  border: 0; border-radius: 13px; padding: 0 20px; cursor: pointer;
  color: #fff; background: linear-gradient(135deg, var(--blue), #0c58e7);
  font: inherit; font-size: 14px; font-weight: 800;
  box-shadow: 0 13px 28px rgba(23,105,255,.27);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.nav-cta:hover, .button:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 17px 34px rgba(23,105,255,.34); }
.button.secondary { color: var(--navy); background: #fff; box-shadow: none; }
.button.ghost { color: var(--blue); background: #edf5ff; box-shadow: none; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; color: #fff; background: transparent; font-size: 22px; }

.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(62,157,255,.28), transparent 26rem),
    linear-gradient(145deg, var(--navy), #09275a 68%, #0e4ca6);
}
.hero:after {
  content: ""; position: absolute; inset: auto -15% -135px 35%; height: 240px;
  border-radius: 50%; background: rgba(66,163,255,.08); transform: rotate(-7deg);
}
.hero-grid { position: relative; z-index: 1; min-height: 510px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 48px; padding: 48px 0 56px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px;
  color: var(--cyan); font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow:before { content: ""; width: 28px; height: 2px; border-radius: 2px; background: currentColor; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 20px;
  padding: 7px 12px; border: 1px solid rgba(147,197,253,.32); border-radius: 999px;
  color: #bfdbfe; background: rgba(219,234,254,.12); font-size: 11px; font-weight: 750;
}
.hero-badge span {
  display: grid; width: 14px; height: 14px; place-items: center;
  border: 1px solid #60a5fa; border-radius: 50%; color: #93c5fd; font-size: 8px;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 22px; font-size: clamp(42px, 5.5vw, 70px); line-height: .99; letter-spacing: -.058em; }
h1 span { color: var(--blue-2); }
.hero-copy > p { max-width: 610px; margin-bottom: 30px; color: #c9d9f1; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .button { min-width: 190px; }
.button.hero-outline {
  border: 1px solid #3b82f6; color: #1769ff; background: #fff; box-shadow: 0 13px 30px rgba(0,0,0,.12);
}
.button.hero-outline:hover { border-color: #60a5fa; background: #f8fbff; box-shadow: 0 17px 36px rgba(0,0,0,.16); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 25px; color: #bcd0ec; font-size: 13px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust i { color: #6ee7bd; font-style: normal; font-weight: 900; }
.hero-trust .trust-safe { color: #34d399; }
.hero-trust .trust-fast { color: #60a5fa; font-size: 17px; }
.hero-trust .trust-once { color: #fbbf24; font-size: 16px; }

.app-preview {
  position: relative; display: flex; max-width: 570px; min-height: 370px; margin-left: auto;
  align-items: center; justify-content: center;
}
.app-preview:before {
  content: ""; position: absolute; width: 85%; height: 70%; border-radius: 50%;
  background: rgba(65,164,255,.17); filter: blur(45px);
}
.app-preview img {
  position: relative; z-index: 1; width: 100%; height: auto; object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(0,0,0,.35));
}

.process-card {
  position: relative; max-width: 490px; margin-left: auto; padding: 20px;
  border: 1px solid rgba(255,255,255,.16); border-radius: 30px;
  background: rgba(5,20,46,.46); box-shadow: 0 30px 90px rgba(0,0,0,.3); backdrop-filter: blur(18px);
}
.process-head { display: flex; align-items: center; justify-content: space-between; padding: 5px 5px 18px; color: #d7e5f8; font-size: 13px; }
.live { display: inline-flex; align-items: center; gap: 7px; color: #6ee7bd; font-weight: 750; }
.live:before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 5px rgba(52,211,153,.12); }
.mock-screen { padding: 25px; border-radius: 22px; color: var(--ink); background: #fff; }
.mock-icon { display: grid; width: 54px; height: 54px; margin-bottom: 20px; place-items: center; border-radius: 17px; color: #fff; background: linear-gradient(145deg,var(--blue-2),var(--blue)); font-size: 22px; font-weight: 900; }
.mock-screen h2 { margin-bottom: 8px; font-size: 22px; letter-spacing: -.035em; }
.mock-screen > p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.steps { display: grid; gap: 11px; margin-top: 20px; }
.step { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 11px; padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: var(--soft); }
.step b { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 10px; color: #fff; background: var(--blue); font-size: 12px; }
.step span { font-size: 13px; font-weight: 750; }
.step small { color: var(--green); font-size: 11px; font-weight: 800; }

.proof { position: relative; z-index: 4; margin-top: -1px; border-bottom: 1px solid var(--line); background: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proof-item { padding: 24px 20px; border-right: 1px solid var(--line); text-align: center; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; margin-bottom: 4px; color: var(--blue); font-size: 18px; }
.proof-item span { color: var(--muted); font-size: 12px; font-weight: 650; }

.section { padding: 100px 0; }
.section.soft { background: var(--soft); }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { justify-content: center; color: var(--blue); }
.section-head h2 { margin-bottom: 15px; color: var(--navy); font-size: clamp(34px, 4.2vw, 52px); line-height: 1.05; letter-spacing: -.052em; }
.section-head h2 em { color: var(--blue); font-style: italic; }
.section-head p { color: var(--muted); font-size: 17px; line-height: 1.65; }
.plans { display: grid; grid-template-columns: repeat(3,1fr); align-items: stretch; gap: 22px; }
.plan {
  position: relative; display: flex; min-width: 0; flex-direction: column; padding: 30px;
  border: 1px solid var(--blue); border-radius: 25px; background: #fff; box-shadow: 0 15px 50px rgba(25,78,151,.08);
}
.plan.featured { border-color: var(--blue); box-shadow: 0 25px 70px rgba(23,105,255,.17); transform: translateY(-9px); }
.popular { position: absolute; top: -14px; left: 50%; padding: 8px 14px; border-radius: 999px; color: #fff; background: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .06em; transform: translateX(-50%); white-space: nowrap; }
.plan-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 25px; }
.plan-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; color: var(--blue); background: #eaf3ff; font-size: 19px; font-weight: 900; }
.period { padding: 7px 10px; border-radius: 999px; color: var(--blue); background: #eff6ff; font-size: 11px; font-weight: 850; }
.plan h2, .plan h3 { margin-bottom: 7px; color: var(--navy); font-size: 24px; letter-spacing: -.035em; }
.plan-sub { min-height: 44px; margin-bottom: 20px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.price { display: flex; align-items: flex-start; margin-bottom: 22px; color: var(--navy); }
.price small { padding-top: 9px; font-size: 16px; font-weight: 800; }
.price strong { font-size: 46px; line-height: 1; letter-spacing: -.06em; }
.price em { padding-top: 7px; font-style: normal; font-size: 19px; font-weight: 800; }
.plan ul { display: grid; gap: 13px; margin: 0 0 28px; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.plan li { display: flex; gap: 10px; color: #3e506c; font-size: 14px; line-height: 1.4; }
.plan li:before { content: "✓"; color: var(--green); font-weight: 900; }
.plan .button { width: 100%; margin-top: auto; }
.plan-note { margin: 12px 0 0; color: #8491a5; text-align: center; font-size: 11px; line-height: 1.45; }

.how-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 70px; }
.how-copy h2 { margin-bottom: 18px; color: var(--navy); font-size: clamp(34px,4vw,50px); line-height: 1.06; letter-spacing: -.05em; }
.how-copy > p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.how-list { display: grid; gap: 16px; }
.how-item { display: grid; grid-template-columns: 50px 1fr; gap: 17px; padding: 21px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.how-item b { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 14px; color: #fff; background: var(--blue); }
.how-item h3 { margin-bottom: 5px; color: var(--navy); font-size: 16px; }
.how-item p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.why-buy { margin-top: 88px; }
.why-buy-head { max-width: 730px; margin: 0 auto 34px; text-align: center; }
.why-badge {
  display: inline-flex; margin-bottom: 15px; padding: 7px 12px; border: 1px solid #cfe0ff;
  border-radius: 999px; color: #225fd6; background: #eaf2ff; font-size: 11px; font-weight: 750;
}
.why-buy-head h2 { margin-bottom: 13px; color: var(--navy); font-size: clamp(32px,4vw,44px); letter-spacing: -.05em; }
.why-buy-head h2 em { color: var(--blue); font-style: normal; }
.why-buy-head p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.benefit-card {
  min-width: 0; padding: 20px; border: 1px solid #cfe0fb; border-radius: 16px;
  background: #fff; box-shadow: 0 9px 28px rgba(28,82,161,.04);
}
.benefit-icon {
  position: relative; display: grid; width: 32px; height: 32px; margin-bottom: 13px;
  place-items: center; border: 1px solid #cfe2ff; border-radius: 10px;
  color: var(--blue); background: #eef6ff; font-size: 12px; font-weight: 900;
}
.benefit-icon i {
  position: absolute; right: -4px; bottom: -4px; display: grid; width: 13px; height: 13px;
  place-items: center; border: 2px solid #fff; border-radius: 50%;
  color: #fff; background: #17b86a; font-size: 7px; font-style: normal;
}
.benefit-card h3 { margin-bottom: 7px; color: #09162d; font-size: 15px; }
.benefit-card p { margin: 0; color: #5c6d88; font-size: 12px; line-height: 1.65; }
.compatibility-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 22px; padding: 27px;
  border: 1px solid #d6e3f5; border-radius: 17px; background: #fff;
}
.compatibility-box h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 11px; color: #10203a; font-size: 14px; }
.compat-dot { display: grid; width: 14px; height: 14px; place-items: center; border-radius: 50%; color: #fff; font-size: 9px; }
.compat-dot.ok { background: #16b86b; }
.compat-dot.no { background: #ef4444; }
.compat-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.compat-chip { padding: 7px 11px; border: 1px solid; border-radius: 999px; font-size: 11px; }
.compat-chip.ok { border-color: #b8e8cc; color: #08783f; background: #effcf5; }
.compat-chip.no { border-color: #ffc4c4; color: #c52222; background: #fff2f2; }

.faq { display: grid; gap: 12px; max-width: 850px; margin: 0 auto; }
details { border: 1px solid var(--line); border-radius: 17px; background: #fff; }
summary { position: relative; padding: 21px 54px 21px 22px; cursor: pointer; color: var(--navy); font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary:after { content: "+"; position: absolute; right: 22px; top: 18px; color: var(--blue); font-size: 24px; }
details[open] summary:after { content: "−"; }
details p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.7; }

.cta-band { padding: 42px 0; color: #fff; background: linear-gradient(135deg, var(--blue), #084cbf); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner h2 { margin-bottom: 6px; font-size: 28px; letter-spacing: -.04em; }
.cta-inner p { margin: 0; color: #d9e8ff; }

.footer { padding: 55px 0 28px; color: #aebfd8; background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(2, .75fr); gap: 45px; }
.footer .brand { margin-bottom: 15px; }
.footer-about { max-width: 460px; font-size: 13px; line-height: 1.7; }
.footer h3 { margin-bottom: 16px; color: #fff; font-size: 14px; }
.footer-links { display: grid; gap: 10px; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; line-height: 1.6; }

.page-hero { padding: 82px 0 74px; color: #fff; background: linear-gradient(145deg,var(--navy),#0b438f); text-align: center; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { max-width: 850px; margin: 0 auto 18px; font-size: clamp(39px,5vw,62px); }
.page-hero p { max-width: 720px; margin: 0 auto; color: #cfdef3; font-size: 17px; line-height: 1.7; }
.content { padding: 80px 0; }
.article { max-width: 820px; margin: 0 auto; }
.article h2 { margin: 42px 0 14px; color: var(--navy); font-size: 30px; letter-spacing: -.035em; }
.article h2:first-child { margin-top: 0; }
.article p, .article li { color: #52657f; font-size: 16px; line-height: 1.8; }
.article a { color: var(--blue); font-weight: 750; }
.article a.button { color: #fff; }
.article a.button.secondary { color: var(--navy); }
.article a.button.ghost,
.article a.button.hero-outline { color: var(--blue); }
.article-callout { margin: 32px 0; padding: 25px; border: 1px solid #bfd8ff; border-radius: 18px; background: #eef6ff; }
.breadcrumb { margin-bottom: 26px; color: var(--muted); font-size: 12px; }
.breadcrumb a { color: var(--blue); }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: 21px; background: #fff; box-shadow: 0 15px 44px rgba(25,78,151,.08); }
.blog-card.is-featured { grid-column: span 2; }
.blog-cover { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--navy); }
.blog-cover:after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(4,10,29,.12),transparent 58%); }
.blog-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.blog-card:hover .blog-cover img { transform: scale(1.025); }
.blog-cover span { position: absolute; left: 16px; bottom: 15px; z-index: 2; padding: 7px 10px; border: 1px solid rgba(255,255,255,.23); border-radius: 999px; color: #fff; background: rgba(8,13,39,.68); backdrop-filter: blur(8px); font-size: 10px; font-weight: 850; letter-spacing: .07em; }
.blog-card-body { padding: 21px; }
.blog-card-body > p { margin-bottom: 8px; color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.blog-card-body h2 { margin-bottom: 9px; color: var(--navy); font-size: 20px; line-height: 1.18; letter-spacing: -.035em; }
.blog-card-body > div { min-height: 43px; color: var(--muted); font-size: 13px; line-height: 1.58; }
.blog-read { display: inline-flex; margin-top: 17px; color: var(--blue); font-size: 13px; font-weight: 850; }
.tutorial-hero { position: relative; overflow: hidden; min-height: 460px; display: flex; align-items: end; color: #fff; background: var(--navy); }
.tutorial-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tutorial-hero:after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(3,8,25,.96) 0%,rgba(3,8,25,.77) 43%,rgba(3,8,25,.1) 80%); }
.tutorial-hero .shell { position: relative; z-index: 1; padding-top: 72px; padding-bottom: 64px; }
.tutorial-hero-copy { max-width: 650px; }
.tutorial-hero-copy h1 { margin-bottom: 16px; font-size: clamp(38px,5vw,62px); }
.tutorial-hero-copy p { color: #c9d9f1; font-size: 17px; line-height: 1.65; }
.tutorial-content { display: grid; grid-template-columns: minmax(0,1fr) 280px; align-items: start; gap: 52px; }
.tutorial-content .article { max-width: none; }
.tutorial-aside { position: sticky; top: 95px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--soft); }
.tutorial-aside h2 { margin-bottom: 13px; color: var(--navy); font-size: 17px; }
.tutorial-aside a { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--blue); font-size: 12px; font-weight: 750; }
.tutorial-steps { margin-bottom: 38px; }
.tutorial-steps ol { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; counter-reset: install-step; }
.tutorial-steps li {
  position: relative; min-height: 58px; padding: 17px 18px 17px 62px; border: 1px solid #cfe0fb;
  border-radius: 15px; color: #435570; background: #f7faff; line-height: 1.6; counter-increment: install-step;
}
.tutorial-steps li:before {
  content: counter(install-step); position: absolute; left: 17px; top: 14px; display: grid;
  width: 32px; height: 32px; place-items: center; border-radius: 10px; color: #fff; background: var(--blue); font-weight: 900;
}
.tutorial-video { margin: 38px 0; }
.video-frame { position: relative; overflow: hidden; margin-bottom: 13px; padding-top: 56.25%; border-radius: 18px; background: var(--navy); box-shadow: var(--shadow); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tutorial-video > a { color: var(--blue); font-size: 13px; font-weight: 850; }

@media (max-width: 1020px) {
  .mobile-brand { display: inline-flex; }
  .nav-links { display: none; position: fixed; inset: 76px 0 auto; padding: 22px; flex-direction: column; align-items: stretch; gap: 0; color: var(--navy); background: #fff; box-shadow: 0 22px 50px rgba(0,0,0,.2); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 10px; border-bottom: 1px solid var(--line); }
  .nav-links .nav-featured { color: var(--blue); }
  .nav-mobile-plan { display: flex; margin-top: 12px; justify-content: center; border: 0 !important; border-radius: 12px; color: #fff !important; background: var(--blue); }
  .menu-toggle { display: block; }
  .desktop-cta, .header-plan { display: none; }
  .hero-grid, .how-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 65px; }
  .process-card { width: 100%; max-width: 600px; margin: 0; }
  .app-preview { width: 100%; max-width: 620px; min-height: 300px; margin: 0 auto; }
  .plans { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .tutorial-content { grid-template-columns: 1fr; }
  .tutorial-aside { position: static; }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
  .plan.featured { transform: none; }
}
@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1160px); }
  .nav { min-height: 68px; }
  .nav-links { top: 68px; }
  .hero-grid { min-height: auto; gap: 28px; padding: 42px 0 46px; }
  h1 { font-size: 44px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-trust {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }
  .hero-trust span {
    min-width: 0;
    justify-content: center;
    gap: 3px;
    white-space: nowrap;
    font-size: clamp(8.5px, 2.65vw, 11px);
  }
  .hero-trust .trust-safe,
  .hero-trust .trust-fast,
  .hero-trust .trust-once {
    flex: 0 0 auto;
    font-size: 13px;
  }
  .mock-screen { padding: 20px; }
  .app-preview { min-height: 230px; }
  .step { grid-template-columns: 34px 1fr; }
  .step small { display: none; }
  .proof-grid { grid-template-columns: repeat(2,1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 36px; }
  .plan { padding: 25px; }
  .how-grid { gap: 38px; }
  .why-buy { margin-top: 64px; }
  .benefit-grid, .compatibility-box { grid-template-columns: 1fr; }
  .cta-inner { align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.is-featured { grid-column: auto; }
  .page-hero { padding: 62px 0 58px; }
  .content { padding: 58px 0; }
}
