:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --bg-color: #fafafc;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --accent-color: #2563eb;
  --accent-hover: #1d4ed8;
  --border-color: #e5e7eb;
  --card-bg: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --max-width: 1100px;
  --hero-max-width: 1480px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.site-wrapper {
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 80px 0;
}

.bg-light {
  background-color: #ffffff;
}

/* Header */
.site-header {
  padding: 24px 0;
  background-color: #ffffff;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  z-index: 10;
}

.main-nav a:hover {
  color: var(--text-primary);
}

.nav-cta {
  color: var(--accent-color) !important;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

.btn-secondary {
  background-color: white;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: #f9fafb;
}

.btn-disabled,
.btn-disabled:hover {
  background-color: #f9fafb;
  color: var(--text-muted);
  border-color: var(--border-color);
  cursor: not-allowed;
  pointer-events: none;
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 24px 0 0 0;
  position: relative;
  isolation: isolate;
  background: #ffffff;
  overflow: visible;
}

.hero-container {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.hero-wide-container {
  max-width: var(--hero-max-width);
}

.hero-content {
  width: 38%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-top: 92px;
  padding-bottom: 120px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-primary-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-offer {
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  max-width: 100%;
  text-align: center;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-dot {
  color: var(--border-color);
}

.hero-image-container {
  position: absolute;
  top: -72px;
  left: 560px;
  width: 956px;
  z-index: 1;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: top left;
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* Testimonials */
.testimonials {
  padding: 0 0 48px;
  margin-top: -64px;
  position: relative;
  z-index: 3;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow: hidden;
}

.testimonial-card {
  background: transparent;
  padding: 28px 32px;
  border-radius: 0;
  border: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card:last-child {
  border-right: 0;
}

.quote-icon {
  font-family: serif;
  font-size: 48px;
  color: #93C5FD;
  line-height: 1;
  position: absolute;
  top: 24px;
  left: 32px;
  opacity: 0.5;
}

.quote-text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 16px;
  margin-bottom: 22px;
  min-height: 48px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
}

.author-info strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
}

.author-info span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

/* Features */
.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 12px;
}

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

.feature-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
}

.feature-card-wide {
  grid-column: 1 / -1;
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: #f0fdf4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card:nth-child(1) .feature-icon-wrapper {
  background: #eff6ff;
}

.feature-card:nth-child(2) .feature-icon-wrapper {
  background: #eff6ff;
}

.feature-card:nth-child(3) .feature-icon-wrapper {
  background: #eff6ff;
}

.feature-card:nth-child(4) .feature-icon-wrapper {
  background: #eff6ff;
}

.feature-card:nth-child(5) .feature-icon-wrapper {
  background: #eff6ff;
}

.feature-mock-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #93c5fd;
}

.feature-mock-numbers .active {
  color: #2563eb;
}

.feature-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.shortcut-tag {
  display: inline-block;
  padding: 4px 10px;
  background: #f3f4f6;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.positioning-list {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.positioning-row {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-color);
  align-items: start;
}

.positioning-row:last-child {
  border-bottom: none;
}

.positioning-row h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.positioning-row p {
  font-size: 15px;
  color: var(--text-secondary);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 380px);
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.recommended {
  border: 2px solid var(--accent-color);
  box-shadow: var(--shadow-lg);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.price {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.price span {
  font-size: 24px;
  vertical-align: super;
  color: var(--text-secondary);
}

.billing {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.billing-compact {
  margin-bottom: 8px;
  padding-bottom: 0;
  border-bottom: 0;
}

.price-offer-note {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.card-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.card-features svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

.text-link {
  font-size: 14px;
  color: var(--text-secondary);
}

.text-link:hover {
  color: var(--text-primary);
}

/* Trust Features */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
}

.trust-item {
  display: flex;
  gap: 16px;
}

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

.trust-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust-content p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* FAQ */
.faq-list {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.faq-item {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item h3 {
  font-size: 16px;
  line-height: 1.35;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* Footer */
.common-footer {
  --footer-heading: var(--text-primary);
  --footer-link: var(--text-secondary);
  --footer-muted: var(--text-muted);
  --footer-line: var(--border-color);
  border-top: 1px solid var(--footer-line);
  padding: 36px 0 28px;
}

.common-footer-inner {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.common-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.common-footer-brand {
  display: grid;
  gap: 10px;
  align-content: start;
}

.common-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}

.common-footer-logo img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

.common-footer-copy {
  color: var(--footer-link);
  font-size: 14px;
  max-width: 220px;
}

.common-footer-group {
  display: grid;
  gap: 9px;
  align-content: start;
}

.common-footer-group h2 {
  color: var(--footer-heading);
  font-size: 13px;
  font-weight: 800;
  margin: 0;
}

.common-footer-group a {
  color: var(--footer-link);
  font-size: 14px;
}

.common-footer-group a:hover,
.common-footer-bottom a:hover {
  color: var(--accent-color);
}

.common-footer-bottom {
  border-top: 1px solid var(--footer-line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 18px;
  color: var(--footer-muted);
  font-size: 13px;
}

.common-footer-legal {
  display: flex;
  gap: 18px;
}

.common-footer-legal a {
  color: var(--footer-link);
}

.price-page .common-footer {
  --footer-heading: #f7f7f2;
  --footer-link: #aeb6c4;
  --footer-muted: #8f98a8;
  --footer-line: rgba(255, 255, 255, 0.18);
}

/* Static pages */
.site {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site .header,
.site .main {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
}

.site .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

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

.nav a {
  border-radius: 7px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 10px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-color);
}

.site .main {
  padding: 34px 0 64px;
}

.site .hero {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  padding: 0;
  background: transparent;
}

.eyebrow {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  margin: 0;
}

.site .hero h1 {
  font-size: clamp(38px, 7vw, 72px);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

.lede {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 650px;
  margin: 0;
}

.panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.section {
  padding: 24px;
}

.section + .section {
  border-top: 1px solid var(--border-color);
}

.section h2 {
  font-size: 18px;
  letter-spacing: 0;
  margin: 0 0 8px;
}

.section p,
.section li {
  color: var(--text-secondary);
  font-size: 15px;
}

.section p {
  margin: 0;
}

.section p + p,
.section ul + p,
.section p + ul {
  margin-top: 12px;
}

.section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.seo-page .main {
  max-width: 1040px;
}

.seo-hero {
  max-width: 820px;
}

.seo-hero .lede {
  max-width: 760px;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.seo-panel {
  margin-top: 36px;
}

.article-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.blog-article a {
  color: var(--accent-color);
  font-weight: 600;
}

.article-meta {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  margin: 12px 0 0;
}

.article-image {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin: 24px 0 0;
  overflow: hidden;
}

.article-image img {
  display: block;
  height: auto;
  width: 100%;
}

.article-image figcaption {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
  padding: 10px 14px;
}

.blog-list {
  display: grid;
  gap: 0;
  padding: 0;
}

.blog-list-item {
  display: grid;
  gap: 6px;
  padding: 24px;
}

.blog-list-item + .blog-list-item {
  border-top: 1px solid var(--border-color);
}

.blog-list-item span {
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-list-item h2 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0;
}

.blog-list-item p {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0;
}

.blog-list-item:hover {
  background: #f8fafc;
}

.source-list {
  margin-top: 16px;
}

.answer-block {
  background: #f8fafc;
}

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

.seo-grid > div {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 18px;
}

.seo-grid h3 {
  font-size: 16px;
  margin: 0 0 6px;
}

.seo-grid p {
  margin: 0;
}

.seo-table {
  border-collapse: collapse;
  font-size: 15px;
  margin-top: 18px;
  width: 100%;
}

.seo-table th,
.seo-table td {
  border: 1px solid var(--border-color);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.seo-table th {
  background: #f8fafc;
  color: var(--text-primary);
  font-size: 13px;
}

.seo-table td {
  color: var(--text-secondary);
}

.compare-table strong {
  color: var(--accent-color);
  font-weight: 800;
}

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

.seo-screenshot {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-top: 18px;
  overflow: hidden;
}

.seo-screenshot img {
  display: block;
  width: 100%;
}

.seo-screenshot figcaption {
  color: var(--text-secondary);
  font-size: 13px;
  padding: 12px 14px;
}

.seo-faq {
  border: 0;
  border-radius: 0;
}

/* Price page */
body.price-page {
  --price-bg: #0f1116;
  --price-panel: rgba(255, 255, 255, 0.045);
  --price-panel-strong: rgba(255, 255, 255, 0.09);
  --price-text: #f7f7f2;
  --price-muted: #b8bbc3;
  --price-dim: #767d8a;
  --price-line: rgba(255, 255, 255, 0.12);
  --price-pro: #9fb8ff;
  --price-pro-soft: rgba(159, 184, 255, 0.09);
  color: var(--price-text);
  background:
    radial-gradient(circle at 76% 8%, rgba(159, 184, 255, 0.22), transparent 26rem),
    radial-gradient(circle at 16% 26%, rgba(255, 255, 255, 0.08), transparent 22rem),
    var(--price-bg);
}

.price-header,
.price-main {
  margin: 0 auto;
  width: min(1120px, calc(100% - 48px));
}

.price-page .nav a {
  color: var(--price-muted);
}

.price-page .nav a:hover,
.price-page .nav a[aria-current="page"] {
  background: var(--price-pro-soft);
  color: var(--price-pro);
}

.price-header .brand img {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

.price-main {
  padding: 52px 0 72px;
}

.price-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 46px;
  align-items: end;
  padding-bottom: 42px;
}

.price-hero h1 {
  color: var(--price-text);
  font-size: clamp(48px, 7.2vw, 82px);
  letter-spacing: 0;
  line-height: 0.92;
  max-width: 760px;
}

.price-kicker {
  color: var(--price-pro);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.price-kicker::before {
  background: var(--price-pro);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(159, 184, 255, 0.9);
  content: "";
  display: block;
  height: 7px;
  width: 7px;
}

.price-lede {
  color: var(--price-muted);
  font-size: 17px;
  line-height: 1.6;
  margin-top: 22px;
  max-width: 590px;
}

.price-offer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  padding: 26px;
}

.price-offer-top {
  color: #c7d5ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  font-weight: 720;
}

.price-badge {
  background: #dce6ff;
  border-radius: 999px;
  color: #0f1116;
  padding: 5px 9px;
}

.price-value {
  color: var(--price-text);
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 22px;
}

.price-offer p {
  color: #aeb2bc;
  font-size: 14px;
  margin: 8px 0 0;
}

.price-offer p:last-child {
  color: #d7d9df;
  line-height: 1.5;
}

.price-store-link {
  color: #dce6ff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
}

.price-store-link:hover {
  color: #ffffff;
}

.price-divider {
  background: rgba(255, 255, 255, 0.14);
  height: 1px;
  margin: 22px 0;
}

.comparison {
  display: grid;
  gap: 22px;
}

.comparison-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.comparison-heading h2 {
  color: var(--price-text);
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
}

.comparison-heading p {
  color: var(--price-muted);
  max-width: 520px;
}

.comparison-table {
  background: var(--price-panel);
  border: 1px solid var(--price-line);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 160px 190px;
  font-size: 14px;
}

.comparison-row > div {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 17px 22px;
}

.comparison-row > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: #c9ccd4;
}

.comparison-row > div:nth-child(3) {
  background: rgba(159, 184, 255, 0.055);
  border-left-color: rgba(159, 184, 255, 0.34);
  color: var(--price-text);
  font-weight: 720;
}

.comparison-row-head {
  background: var(--price-panel-strong);
  color: #dfe2ea;
  font-size: 13px;
  font-weight: 760;
}

.comparison-row-head > div {
  border-top: 0;
}

.comparison-row-head > div:nth-child(3) {
  background: var(--price-pro-soft);
  color: #dce6ff;
}

.comparison-row .muted-cell {
  color: var(--price-dim);
}

.comparison-row .pro-cell {
  background: rgba(159, 184, 255, 0.08);
  color: #f7f9ff;
  font-weight: 760;
}

.checkout-notice {
  background: var(--price-panel-strong);
  border: 1px solid var(--price-line);
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 16px 18px;
}

.checkout-notice span {
  color: var(--price-text);
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.checkout-notice p {
  color: var(--price-muted);
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    min-height: auto;
  }

  .hero-content {
    width: 100%;
    margin-top: 40px;
    padding-bottom: 0;
  }

  .hero-image-container {
    position: relative;
    top: auto;
    left: 50%;
    right: auto;
    width: min(118vw, 760px);
    margin-top: 8px;
    transform: translateX(-50%);
  }

  .hero-description {
    margin: 0 auto 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
  }

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

  .testimonials {
    margin-top: 40px;
    padding-bottom: 64px;
  }

  .testimonial-card {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .testimonial-card:last-child {
    border-bottom: 0;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 24px;
  }

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

  .positioning-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 24px;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 24px;
  }
}

@media (max-width: 860px) {
  .price-header,
  .price-main {
    width: min(100% - 36px, 1120px);
  }

  .price-main {
    padding-top: 30px;
  }

  .price-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .price-offer {
    max-width: 420px;
  }

  .comparison-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .comparison-table {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    gap: 10px;
  }

  .comparison-row {
    background: var(--price-panel);
    border: 1px solid var(--price-line);
    border-radius: 8px;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .comparison-row > div,
  .comparison-row > div + div,
  .comparison-row > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .comparison-row > div:first-child {
    border-top: 0;
  }

  .comparison-row-head {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 12px;
  }

  .hero-container {
    gap: 24px;
  }

  .hero-content {
    margin-top: 32px;
  }

  .hero-title {
    font-size: 36px;
  }

  .main-nav {
    display: none;
    /* simple mobile nav hide for now */
  }

  .site .header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

  .site .main {
    padding-top: 18px;
  }

  .section {
    padding: 20px;
  }

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

  .seo-table {
    display: block;
    overflow-x: auto;
  }

  .common-footer {
    padding: 30px 0 24px;
  }

  .common-footer-inner {
    width: min(100% - 36px, var(--max-width));
  }

  .common-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
  }

  .common-footer-brand {
    grid-column: 1 / -1;
  }

  .common-footer-copy {
    max-width: 420px;
  }

  .common-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .common-footer-grid {
    grid-template-columns: 1fr;
  }

  .common-footer-legal {
    flex-wrap: wrap;
  }
}
