@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@700;800;900&family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #ffffff;
  --soft-bg: #f6f9ff;
  --ink: #0f172a;
  --muted: #53637d;
  --line: #dfe7f2;
  --blue: #0b63ff;
  --blue-2: #18baff;
  --blue-soft: #eef6ff;
  --green: #6fcf3c;
  --orange: #ffb020;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Sora", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.72;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: #050505;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 16px;
}

.topbar-links {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 172px;
}

.brand img {
  width: 176px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  transition: color 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 14px 30px rgba(11, 99, 255, 0.24);
}

.btn-outline {
  color: #111827;
  border-color: var(--line);
  background: #fff;
}

.btn-dark {
  color: #fff;
  background: #111827;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  font-size: clamp(44px, 5.7vw, 78px);
  font-weight: 900;
}

.hero-title {
  max-width: 650px;
  min-height: 3.12em;
  font-family: "DM Sans", "Sora", Arial, sans-serif;
  font-size: clamp(46px, 4.75vw, 64px);
  font-weight: 900;
  line-height: 1.04;
}

.product-title {
  max-width: 690px;
  min-height: 0;
  font-size: clamp(42px, 4.4vw, 62px);
}

.hero-title .typing-text {
  background: linear-gradient(100deg, #0f172a 0%, #0b63ff 58%, #14a7e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.typing-cursor {
  display: inline-block;
  width: 0.08em;
  height: 0.86em;
  margin-left: 8px;
  border-radius: 999px;
  background: #0b63ff;
  vertical-align: -0.08em;
  animation: cursorBlink 0.85s steps(2, start) infinite;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
}

h3 {
  font-size: 23px;
  font-weight: 900;
}

.gradient-text {
  background: linear-gradient(110deg, var(--blue), var(--blue-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f0e9ff;
  color: #6236ff;
  font-size: 12px;
  font-weight: 900;
}

.eyebrow::before {
  content: "✦";
  color: var(--blue);
}

.hero {
  padding: 42px 0 22px;
  background:
    radial-gradient(circle at 78% 28%, rgba(11, 99, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fff 78%, #f8fbff 100%);
}

.product-hero {
  padding: 56px 0 34px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: center;
}

.hero-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.product-hero .hero-copy p {
  max-width: 610px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #25324a;
  font-size: 14px;
}

.hero-benefits li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--blue);
  font-weight: 900;
}

.price-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.price-line span {
  color: var(--muted);
  font-size: 13px;
}

.price-line strong {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.save-pill {
  padding: 5px 10px;
  border-radius: 999px;
  background: #eaf8df;
  color: #3b8b16;
  font-size: 11px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.review-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.review-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.review-mini strong {
  display: block;
  line-height: 1.1;
  font-size: 15px;
  font-weight: 900;
}

.review-copy {
  min-width: 0;
}

.review-copy span {
  color: var(--muted);
  font-size: 12px;
}

.review-badge {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(15, 23, 42, 0.1));
}

.review-stars {
  width: 82px;
  height: auto;
  margin: 4px 0 1px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.product-visual {
  min-height: 500px;
}

.hero-photo-card {
  position: absolute;
  inset: -44px -96px 4px -18px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-visual .hero-photo-card {
  inset: -34px -88px 2px -18px;
}

.hero-photo-card::before {
  content: none;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 42px rgba(15, 23, 42, 0.08));
  transform: translateY(6px) scale(1.035);
  transform-origin: center bottom;
}

.product-review-row .review-mini {
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
  min-height: 68px;
}

.product-review-row .review-mini strong {
  font-size: 16px;
}

.product-review-row .review-mini span {
  color: var(--muted);
  font-size: 12px;
}

.hero-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.ai-card {
  left: 2%;
  top: 34%;
  width: 255px;
  padding: 18px;
}

.ai-card strong,
.rating-card strong {
  display: block;
  font-size: 15px;
}

.ai-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  background: #f7f9ff;
  color: #9aa7bc;
  font-size: 12px;
}

.rating-card {
  right: 0;
  top: 12%;
  width: 220px;
  padding: 18px;
}

.stars {
  color: var(--orange);
  letter-spacing: 2px;
}

.compare-card {
  right: 3%;
  bottom: 4%;
  width: 240px;
  padding: 16px;
}

.compare-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #edf1f7;
  color: var(--muted);
  font-size: 13px;
}

.compare-row:first-child {
  color: var(--ink);
  font-weight: 900;
}

.brand-strip {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.brand-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brandScroll 32s linear infinite;
  will-change: transform;
}

.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 76px;
  padding-right: 76px;
  flex: 0 0 auto;
}

.brand-group img {
  width: auto;
  max-width: 140px;
  max-height: 27px;
  object-fit: contain;
  opacity: 0.62;
  filter: grayscale(1) saturate(0.2);
}

@keyframes cursorBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@keyframes brandScroll {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: var(--soft-bg);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head p {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.why-choose-section {
  background: #fff;
}

.why-head {
  max-width: 980px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}

.why-copy > p {
  margin: 0 0 24px;
  color: #40516e;
  font-size: 15px;
  line-height: 1.9;
}

.why-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  color: #162033;
  font-size: 13px;
  font-weight: 800;
}

.why-feature span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--blue);
  font-size: 16px;
  flex: 0 0 auto;
}

.why-image-wrap {
  display: flex;
  justify-content: center;
}

.why-image-wrap img {
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 22px 45px rgba(15, 23, 42, 0.08));
}

.hosting-includes-section {
  background: linear-gradient(180deg, #f5f9ff 0%, #eef6ff 100%);
}

.tool-matrix-section,
.service-choice-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.includes-head {
  max-width: 920px;
}

.includes-head h2 span {
  color: var(--blue);
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.includes-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.includes-list li {
  position: relative;
  min-height: 38px;
  padding: 9px 0 9px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.34);
  color: #44546c;
  font-size: 15px;
  line-height: 1.35;
}

.includes-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 99, 255, 0.1);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.tool-card {
  display: grid;
  place-items: center;
  min-height: 166px;
  padding: 24px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.tool-card:nth-child(4n) {
  border-right: 0;
}

.tool-card:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.tool-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(11, 99, 255, 0.1), rgba(24, 186, 255, 0.16));
  color: var(--blue);
  font-size: 31px;
  box-shadow: inset 0 0 0 1px rgba(11, 99, 255, 0.11);
}

.tool-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.tool-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: 20px;
}

.service-choice-section {
  background: #fff;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.choice-card {
  padding: 30px 26px;
  text-align: center;
}

.choice-icon {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b63ff, #1726a6);
  color: #fff;
  font-size: 46px;
  box-shadow: 0 20px 42px rgba(11, 99, 255, 0.18);
}

.choice-icon img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(15, 23, 42, 0.16));
}

.choice-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.choice-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.glass-card,
.plan-card,
.faq-item,
.testimonial-card,
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.service-card {
  padding: 28px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 22px;
}

.service-card p,
.plan-card p,
.testimonial-card p {
  color: var(--muted);
}

.service-price {
  display: block;
  margin: 20px 0 16px;
  font-size: 22px;
  font-weight: 900;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.plan-card.featured {
  border-color: #9ec3ff;
  box-shadow: 0 22px 60px rgba(11, 99, 255, 0.14);
}

.plan-card.featured::before {
  content: "Save 40%";
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eaf8df;
  color: #3b8b16;
  font-size: 11px;
  font-weight: 900;
}

.old-price {
  margin-top: 18px;
  color: #98a3b5;
  font-size: 13px;
  text-decoration: line-through;
}

.price {
  margin: 3px 0 8px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-family: "Sora", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  color: #25324a;
  font-size: 13px;
}

.feature-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
}

.plan-card .btn {
  margin-top: auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  padding: 24px;
}

.testimonial-card .stars {
  margin-bottom: 14px;
  font-size: 18px;
}

.client {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.client strong,
.client span {
  display: block;
}

.client span {
  color: var(--muted);
  font-size: 13px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.page-hero {
  padding: 66px 0 54px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.page-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.hosting-intro,
.metric-strip,
.compare,
.cta-band {
  display: none;
}

.cta-band-light {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0b63ff, #18baff);
  color: #fff;
  box-shadow: 0 20px 50px rgba(11, 99, 255, 0.22);
}

.cta-band-light h2,
.cta-band-light p {
  color: #fff;
}

.cta-band-light p {
  margin: 10px 0 0;
  opacity: 0.9;
}

.site-footer {
  padding-top: 64px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1fr;
  gap: 38px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  width: 210px;
  margin-bottom: 16px;
}

.footer-grid h3,
.footer-toggle {
  margin-bottom: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Sora", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-align: left;
}

.footer-toggle {
  cursor: default;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--muted);
}

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

.footer-links a:hover {
  color: var(--blue);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-badges span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: var(--blue);
  font-weight: 900;
}

.footer-bottom {
  margin-top: 52px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-mobile-links {
  display: none;
}

.footer-bottom a {
  color: inherit;
}

.footer-note {
  margin-top: 18px;
  font-size: 13px;
}

.legal-page {
  background: #fff;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.legal-nav strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
}

.legal-nav a {
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.legal-nav a:hover,
.legal-nav a.active {
  background: var(--blue-soft);
  color: var(--blue);
}

.legal-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin-top: 24px;
  font-size: 20px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-updated {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.legal-callout {
  margin: 26px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  border-radius: 14px;
  background: #f8fbff;
}

.top-link {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(11, 99, 255, 0.28);
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 14px;
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .plan-grid,
  .testimonial-grid,
  .includes-grid,
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-image-wrap {
    order: -1;
  }

  .tool-card:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .tool-card:nth-child(2n) {
    border-right: 0;
  }

  .tool-card:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .tool-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    display: none;
  }

  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 164px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links,
  .nav-actions {
    position: absolute;
    left: 14px;
    right: 14px;
    display: none;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links {
    top: 78px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 18px 18px 0 0;
  }

  .nav-links a {
    display: block;
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
  }

  .nav-actions {
    top: 309px;
    flex-direction: column;
    padding: 12px;
    border-top: 0;
    border-radius: 0 0 18px 18px;
  }

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

  .site-header.open .nav-links,
  .site-header.open .nav-actions {
    display: flex;
  }

  .hero {
    padding: 34px 0 28px;
  }

  .hero-copy {
    text-align: center;
    overflow: hidden;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-benefits,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .review-row {
    display: flex;
    width: max-content;
    min-width: 100%;
    gap: 28px;
    margin-inline: -14px;
    padding-inline: 14px;
    animation: reviewMarquee 18s linear infinite;
  }

  .review-row:hover {
    animation-play-state: paused;
  }

  .review-mini {
    flex: 0 0 auto;
    min-width: 145px;
    justify-content: center;
  }

  .hero-actions,
  .price-line {
    justify-content: center;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-photo-card {
    inset: -16px -18px 34px;
  }

  .product-visual .hero-photo-card {
    inset: -16px -18px 34px;
  }

  .ai-card,
  .rating-card,
  .compare-card {
    display: none;
  }

  .brand-group {
    gap: 48px;
    padding-right: 48px;
  }

  .brand-group img {
    max-height: 22px;
  }

  .section {
    padding: 58px 0;
  }

  .tool-matrix-section,
  .service-choice-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .cta-band-light,
  .footer-bottom .container {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    padding-top: 28px;
  }

  .footer-grid {
    gap: 0;
  }

  .footer-brand {
    max-width: none;
    padding-bottom: 16px;
  }

  .footer-logo {
    width: 150px;
    margin-bottom: 14px;
  }

  .footer-brand p,
  .footer-badges,
  .footer-note {
    display: none;
  }

  .socials {
    margin-top: 0;
  }

  .socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
  }

  .footer-section {
    border-top: 1px solid var(--line);
  }

  .footer-toggle {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 15px 0;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }

  .footer-toggle::after {
    content: "⌄";
    position: absolute;
    top: 50%;
    right: 0;
    color: var(--muted);
    transform: translateY(-50%);
    transition: transform 0.18s ease;
  }

  .footer-section.open .footer-toggle::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .footer-section .footer-links {
    display: none;
    gap: 9px;
    padding: 0 0 14px;
  }

  .footer-section.open .footer-links {
    display: grid;
  }

  .footer-mobile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 11px;
  }

  .footer-mobile-links a {
    color: var(--muted);
  }

  .footer-bottom {
    margin-top: 10px;
    padding: 14px 0;
    font-size: 11px;
  }

  .footer-bottom .container {
    gap: 8px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 34px;
  }

  .hero-title {
    max-width: 100%;
    font-size: 34px;
    min-height: 3.45em;
    line-height: 1.08;
  }

  .eyebrow {
    justify-content: center;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    font-size: 11px;
  }

  .typing-cursor {
    margin-left: 4px;
  }

  .product-title {
    min-height: 0;
  }

  h2 {
    font-size: 34px;
  }

  .cards-grid,
  .testimonial-grid,
  .includes-grid {
    grid-template-columns: 1fr;
  }

  .includes-grid {
    gap: 0;
  }

  .includes-list li {
    min-height: 34px;
    font-size: 14px;
  }

  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-card {
    min-height: 132px;
    padding: 18px 10px;
  }

  .tool-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    font-size: 25px;
  }

  .tool-icon img {
    width: 36px;
    height: 36px;
  }

  .tool-card h3 {
    font-size: 15px;
  }

  .choice-card {
    padding: 26px 18px;
  }

  .choice-icon {
    width: 92px;
    height: 92px;
    font-size: 36px;
  }

  .choice-icon img {
    width: 52px;
    height: 52px;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

  .why-copy > p {
    text-align: center;
    font-size: 14px;
  }

  .why-feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .why-feature {
    min-height: 40px;
    padding: 11px 12px;
    font-size: 12px;
  }

  .home-plan-scroll {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    margin-inline: -14px;
    padding: 0 14px 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 14px;
    -webkit-overflow-scrolling: touch;
  }

  .home-plan-scroll::-webkit-scrollbar {
    height: 0;
  }

  .home-plan-scroll .plan-card {
    flex: 0 0 min(86vw, 340px);
    scroll-snap-align: start;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 350px;
  }

  .hero-photo-card {
    inset: -10px -22px 28px;
  }

  .product-visual .hero-photo-card {
    inset: -10px -22px 28px;
  }

  .brand-group {
    gap: 34px;
    padding-right: 34px;
  }
}

@keyframes reviewMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
