:root {
  --bg-1: #080f2f;
  --bg-2: #25105a;
  --bg-3: #121a47;
  --card: rgba(245, 248, 255, 0.9);
  --card-soft: rgba(255, 255, 255, 0.14);
  --text-main: #0f172f;
  --text-light: #eef2ff;
  --text-muted: #a8b2d7;
  --accent-start: #2ec5ff;
  --accent-end: #34e5b7;
  --shadow: 0 18px 48px rgba(13, 19, 44, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text-main);
  background: linear-gradient(160deg, var(--bg-1), var(--bg-2));
  min-height: 100%;
  overflow-x: hidden;
}

.site-glow {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  animation: drift 12s ease-in-out infinite;
}

.site-glow-left {
  background: #3f5bff;
  left: -180px;
  top: 200px;
}

.site-glow-right {
  background: #20d8c0;
  right: -180px;
  top: 120px;
  animation-delay: -5s;
}

.site-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, #2f54ff66, transparent 35%),
    radial-gradient(circle at 80% 20%, #3cd5f266, transparent 30%),
    radial-gradient(circle at 70% 80%, #6640ff80, transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.topbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: linear-gradient(
    180deg,
    rgba(8, 15, 47, 0.92),
    rgba(8, 15, 47, 0.66)
  );
  border-bottom: 1px solid rgba(219, 226, 255, 0.14);
}

.topbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  min-height: 70px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar .btn-ghost {
  font-size: 0.72rem;
  line-height: 1.2;
  padding: 8px 12px;
  white-space: normal;
  text-align: center;
  max-width: 46%;
  flex-shrink: 1;
  color: #1c1304;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid #ffd978;
  background: linear-gradient(155deg, #fff2a8 0%, #ffc93d 42%, #ff9a1a 100%);
  box-shadow: 0 0 0 1px rgba(255, 200, 90, 0.45), 0 6px 22px rgba(255, 120, 0, 0.42);
}

.topbar .btn-ghost:hover {
  color: #120c02;
  border-color: #fff3c4;
  filter: brightness(1.06);
  box-shadow: 0 0 0 1px rgba(255, 235, 170, 0.65), 0 8px 28px rgba(255, 100, 0, 0.5);
}

.topbar .btn-ghost:active {
  filter: brightness(0.97);
}

.topbar .btn-ghost:focus-visible {
  outline: 2px solid #fff8dc;
  outline-offset: 2px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ecf0ff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
}

.logo-text {
  line-height: 1;
}

.topnav {
  display: none;
  gap: 20px;
}

.topnav a {
  color: #d2dbff;
  text-decoration: none;
  font-size: 0.94rem;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 22px 14px 112px;
}

.topbar ~ .page {
  padding-top: calc(70px + 22px);
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.glass {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.08)
  );
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

.hero {
  padding: 24px;
}

.hero-grid {
  display: grid;
  gap: 20px;
}

.hero .brand {
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #d2ddff;
}

h1 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.1;
}

.hero h1 {
  font-size: clamp(1.32rem, 2.2vw + 0.85rem, 1.68rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

p {
  margin: 0;
  line-height: 1.45;
}

.hero-text {
  color: #d8e0ff;
  margin-bottom: 14px;
  max-width: 62ch;
}

.hero-text a {
  color: #bfe8ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.hero-text a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  color: #031a30;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.34);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(0.985);
}

.btn-ghost {
  width: auto;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #eaf0ff;
  border: 1px solid rgba(220, 228, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary {
  width: auto;
  min-height: 52px;
  padding: 0 22px;
  color: #eaf0ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(231, 238, 255, 0.26);
}

.btn-outline {
  width: auto;
  min-height: 48px;
  padding: 0 22px;
  color: #1e3a8a;
  background: #eef3ff;
  border: 1px solid #b8c8f0;
  box-shadow: none;
}

.btn-outline:hover {
  background: #e2e9ff;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chips {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips li {
  font-size: 0.78rem;
  border: 1px solid rgba(225, 234, 255, 0.3);
  color: #e4eaff;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chips li span {
  font-size: 0.9rem;
}

.hero-panel {
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.08)
  );
  border: 1px solid rgba(242, 246, 255, 0.22);
  border-radius: 18px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.hero-visual {
  height: 160px;
  border-radius: 14px;
  margin-bottom: 14px;
  background: radial-gradient(circle at 35% 35%, #35f0d144, transparent 40%),
    radial-gradient(circle at 70% 60%, #4f6aff44, transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(235, 241, 255, 0.24);
  display: grid;
  place-items: center;
  position: relative;
}

.orb,
.signal {
  position: absolute;
  border-radius: 50%;
}

.orb {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(222, 233, 255, 0.28);
  animation: spin 18s linear infinite;
}

.orb-2 {
  width: 120px;
  height: 120px;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 12s;
}

.brand-mark {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(235, 241, 255, 0.35);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(8, 15, 47, 0.35);
  z-index: 2;
}

.brand-mark .logo-mark {
  width: 44px;
  height: 44px;
}

.signal {
  border: 1px solid rgba(208, 220, 255, 0.35);
  animation: pulse 3.4s ease-out infinite;
}

.signal-1 {
  width: 90px;
  height: 90px;
}

.signal-2 {
  width: 130px;
  height: 130px;
  animation-delay: 1.1s;
}

.hero-panel h2 {
  font-size: 1.06rem;
  margin-bottom: 9px;
}

.hero-panel ul {
  margin: 0;
  padding-left: 18px;
  color: #dae3ff;
  display: grid;
  gap: 6px;
}

.hero-rating {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(228, 236, 255, 0.28);
}

.hero-rating p {
  color: #d7e0ff;
  margin-bottom: 4px;
}

.hero-rating strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.1;
}

.hero-rating span {
  color: #cad5ff;
  font-size: 0.82rem;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stats article {
  background: #f3f6ff;
  border: 1px solid #e0e7ff;
  border-radius: 14px;
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.stats article::after {
  content: "";
  position: absolute;
  inset: auto -20px -35px auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, #d6e6ff, transparent 65%);
}

.stats strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0;
}

.stat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.stat-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e7efff;
  font-size: 1rem;
}

.stats p {
  color: #4b5883;
  font-size: 0.86rem;
}

.features {
  display: grid;
  gap: 0;
}

.features-lead {
  margin: 0 0 16px;
  padding-bottom: 4px;
  color: #3a4670;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 72ch;
}

.feature-item + .feature-item {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #dae2ff;
}

.feature-item p {
  color: #3f4d78;
}

.feature-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-head h2 {
  margin: 0;
}

.icon-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e8f0ff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.trust ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.trust li {
  color: #344268;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.list-icon {
  flex-shrink: 0;
}

.steps ol {
  margin: 0;
  padding-left: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.steps li {
  position: relative;
  padding-left: 46px;
}

.step-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(120deg, #5c7dff, #3fd3d9);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.steps p {
  color: #41507c;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.platform {
  background: #f2f5ff;
  border: 1px solid #dde5ff;
  border-radius: 14px;
  padding: 12px;
}

.platform p {
  color: #44507a;
  font-size: 0.9rem;
}

.platform-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e6eeff;
  display: grid;
  place-items: center;
}

.reviews-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}

.review-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #d7e1ff;
  background: #f6f9ff;
  color: #31416a;
  font-size: 1.1rem;
  cursor: pointer;
}

.reviews-carousel {
  margin-top: 4px;
}

.review-carousel-track {
  display: flex;
  gap: 10px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.review {
  background: #f6f8ff;
  border: 1px solid #e2e8ff;
  border-radius: 14px;
  padding: 14px;
  min-width: 82%;
  flex: 0 0 82%;
  position: relative;
}

.review-carousel-item {
  min-width: 100%;
  flex: 0 0 100%;
}

.review p {
  color: #2f3f67;
  margin-bottom: 10px;
}

.review span {
  color: #59689b;
  font-size: 0.86rem;
  font-weight: 600;
}

.review::before {
  content: "★ ★ ★ ★ ★";
  display: block;
  color: #f4b400;
  font-size: 0.78rem;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.cases-grid {
  display: grid;
  gap: 10px;
}

.cases-grid article {
  border: 1px solid #e2e8ff;
  border-radius: 14px;
  padding: 14px;
  background: #f7f9ff;
}

.cases-grid p {
  color: #495881;
}

.case-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e7eeff;
  display: grid;
  place-items: center;
}

.item-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.item-head h3 {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 8px;
}

details {
  border: 1px solid #dde5ff;
  border-radius: 12px;
  background: #f8faff;
  padding: 10px 12px;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin-top: 9px;
  color: #495780;
}

.final-cta p {
  margin-bottom: 12px;
  color: #d8e0ff;
}

.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 20;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

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

.footer {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  color: #c3cbee;
  padding: 8px 16px 24px;
  font-size: 0.82rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.footer a {
  color: #d8e0ff;
  text-decoration: none;
}

.legal-page {
  max-width: 860px;
}

.legal-card h1,
.legal-card h2 {
  margin-bottom: 10px;
}

.legal-card p {
  color: #30406a;
}

.legal-card a {
  color: #2f5cff;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-weight: 600;
  color: #23335f;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d5dfff;
  background: #f8faff;
  padding: 11px 12px;
  font: inherit;
  color: #1e2d58;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #a9bfff;
  outline-offset: 1px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 1.2em;
  font-size: 0.92rem;
  color: #2f5cff;
}

.form-status.error {
  color: #c62828;
}

.breadcrumb {
  font-size: 0.88rem;
  color: #5a6a94;
  margin-bottom: 14px;
}

.breadcrumb a {
  color: #2f5cff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.articles-intro {
  color: #41507c;
  margin: 0 0 14px;
}

.article-list {
  display: grid;
  gap: 12px;
}

.article-list--compact {
  margin-bottom: 4px;
}

.article-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #dde5ff;
  background: #f7f9ff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  border-color: #a8bfff;
  box-shadow: 0 8px 22px rgba(47, 92, 255, 0.12);
}

.article-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: #15254a;
}

.article-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5883;
  line-height: 1.4;
}

.article-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #e7eeff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.articles-more {
  margin: 14px 0 0;
}

.article-prose {
  max-width: 72ch;
}

.article-prose h1 {
  margin: 0 0 8px;
  font-size: 1.75rem;
  color: #0f172f;
}

.article-prose .article-meta {
  font-size: 0.86rem;
  color: #5a6a94;
  margin-bottom: 18px;
}

.article-prose h2 {
  margin: 1.35em 0 0.5em;
  font-size: 1.2rem;
  color: #15254a;
}

.article-prose p,
.article-prose li {
  color: #30406a;
  margin: 0 0 0.85em;
  line-height: 1.55;
}

.article-prose ul,
.article-prose ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.article-prose .article-cta {
  margin-top: 1.5em;
}

.article-prose code {
  font-size: 0.9em;
  background: #e8eefc;
  padding: 0.12em 0.4em;
  border-radius: 6px;
  word-break: break-all;
}

.glossary-toc {
  margin: 1.25rem 0 1.75rem;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #d4def8;
  background: linear-gradient(165deg, #f7f9ff, #eef3ff);
}

.glossary-toc-title {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #3d4d7a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.glossary-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.glossary-toc-list a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e4b8a;
  text-decoration: none;
  border-bottom: 1px dashed rgba(30, 75, 138, 0.35);
}

.glossary-toc-list a:hover {
  color: #0f2f63;
  border-bottom-color: #0f2f63;
}

.glossary-term h2 {
  scroll-margin-top: 96px;
}

.error-page {
  text-align: center;
  padding: 28px 22px 32px;
  max-width: 520px;
  margin: 0 auto;
}

.error-code {
  margin: 0 0 8px;
  font-size: clamp(3.2rem, 12vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #41cfff, #5e68ff, #34e5b7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.error-page h1 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  color: #f2f6ff;
}

.error-lead {
  margin: 0 0 22px;
  font-size: 0.95rem;
  color: #c8d4f5;
  line-height: 1.5;
}

.error-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.error-actions .btn {
  width: 100%;
}

.error-bot {
  margin: 22px 0 0;
  font-size: 0.9rem;
  color: #aeb9e6;
}

.error-bot-link {
  color: #bfe8ff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.error-bot-link:hover {
  color: #fff;
}

@media (min-width: 520px) {
  .error-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .error-actions .btn {
    width: auto;
    min-width: 160px;
  }
}

.cta-strip {
  padding: 16px 18px;
}

.cta-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.cta-strip-title {
  display: block;
  font-size: 1.05rem;
  color: #f0f4ff;
  margin-bottom: 6px;
}

.cta-strip-text {
  margin: 0;
  font-size: 0.92rem;
  color: #c8d4f5;
  line-height: 1.45;
}

.cta-strip-btn {
  width: 100%;
}

.random-articles-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.random-articles-list a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #dde5ff;
  background: #f7f9ff;
  text-decoration: none;
  color: #15254a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.random-articles-list a:hover {
  border-color: #a8bfff;
  box-shadow: 0 8px 22px rgba(47, 92, 255, 0.1);
}

.random-articles-list strong {
  font-size: 1.02rem;
}

.random-articles-list span {
  font-size: 0.88rem;
  color: #4b5883;
  line-height: 1.35;
}

@media (min-width: 720px) {
  .page {
    padding: 26px 20px 120px;
  }

  .topbar ~ .page {
    padding-top: calc(70px + 26px);
  }

  .topbar .btn-ghost {
    font-size: 0.82rem;
    max-width: none;
    white-space: nowrap;
  }

  .topnav {
    display: flex;
  }

  h1 {
    font-size: 2.3rem;
  }

  .hero h1 {
    font-size: clamp(1.42rem, 0.75rem + 1.4vw, 1.78rem);
    letter-spacing: -0.025em;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions .btn-primary {
    width: auto;
    min-width: 230px;
    padding: 0 24px;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .review {
    min-width: calc(50% - 5px);
    flex: 0 0 calc(50% - 5px);
  }

  .review-carousel-item {
    min-width: calc(50% - 5px);
    flex: 0 0 calc(50% - 5px);
  }

  .cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .article-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-list--compact {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-strip-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .cta-strip-btn {
    width: auto;
    min-width: 220px;
    flex-shrink: 0;
  }

  .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer nav {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 24px;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .features-lead {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }

  .feature-item + .feature-item {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .feature-item {
    border: 1px solid #dde5ff;
    border-radius: 14px;
    background: #f5f8ff;
    padding: 14px;
  }

  .review,
  .review-carousel-item {
    min-width: calc(33.333% - 7px);
    flex: 0 0 calc(33.333% - 7px);
  }

  .sticky-cta {
    display: none;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.55;
  }
  70% {
    opacity: 0;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, -18px);
  }
}
