:root {
  --ink: #3d3d3a;
  --ink-strong: #24231f;
  --muted: #7a776c;
  --line: #dad9d4;
  --paper: #faf9f5;
  --soft: #f5f4ee;
  --wash: #e9e6dc;
  --white: #ffffff;
  --primary: #c96442;
  --primary-dark: #b55738;
  --primary-soft: #f0d8cd;
  --olive: #747b62;
  --blue-gray: #586a73;
  --shadow: 0 24px 80px rgba(43, 39, 34, 0.11);
  --shadow-tight: 0 12px 36px rgba(43, 39, 34, 0.1);
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 42%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(201, 100, 66, 0.08), transparent 36%),
    linear-gradient(245deg, rgba(116, 123, 98, 0.1), transparent 38%);
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  display: grid;
  width: min(1120px, calc(100% - 32px));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 9px 10px 9px 14px;
  color: var(--ink);
  box-shadow: 0 14px 44px rgba(43, 39, 34, 0.1);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(201, 100, 66, 0.24);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 760;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--ink-strong);
}

.nav-cta {
  border-radius: 999px;
  background: var(--ink-strong);
  color: var(--white);
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 850;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 128px 24px 70px;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero-bg {
  position: absolute;
  top: 50%;
  right: max(-80px, calc((100% - 1120px) / 2 - 120px));
  z-index: 1;
  width: min(50vw, 620px);
  height: min(45vw, 560px);
  min-height: 420px;
  object-fit: cover;
  object-position: left top;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(-46%) perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 249, 245, 0.98) 0%, rgba(250, 249, 245, 0.94) 43%, rgba(250, 249, 245, 0.38) 74%, rgba(250, 249, 245, 0.78) 100%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 54%, var(--paper) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink-strong);
  letter-spacing: 0;
}

h1 {
  width: min(640px, 100%);
  margin-bottom: 20px;
  font-size: clamp(37px, 5.1vw, 66px);
  font-weight: 900;
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 860;
  line-height: 1.06;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 820;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.hero-lead {
  width: min(590px, 100%);
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.68;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(61, 61, 58, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-strong);
  cursor: pointer;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-tight);
}

.button.primary {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.button.primary:hover {
  background: var(--primary-dark);
}

.button.ghost {
  border-color: rgba(61, 61, 58, 0.16);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink-strong);
  backdrop-filter: blur(12px);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-heading {
  width: min(740px, 100%);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-note {
  max-width: 620px;
  margin-inline: auto;
  font-size: 17px;
}

.audience-grid,
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.audience-grid article,
.assurance-grid article,
.price-card,
.faq-list details,
.feature-tab,
.feature-demo-panel,
.checkout-dialog,
.selected-plan,
.checkout-form input {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.audience-grid article,
.assurance-grid article {
  padding: 24px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.mini-label,
.plan-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--olive);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-grid p,
.assurance-grid p {
  margin-bottom: 0;
}

.agents-section {
  width: 100%;
  background:
    linear-gradient(180deg, var(--soft) 0%, #ffffff 100%);
  padding-inline: max(16px, calc((100% - 1120px) / 2));
}

.demo-switcher {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.42fr);
  gap: 18px;
  align-items: start;
  margin-top: 34px;
}

.feature-tabs {
  display: grid;
  gap: 10px;
}

.feature-tab {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  width: 100%;
  color: var(--ink);
  cursor: pointer;
  padding: 16px;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.feature-tab:hover,
.feature-tab.active {
  border-color: rgba(201, 100, 66, 0.48);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(43, 39, 34, 0.08);
  transform: translateY(-1px);
}

.feature-tab span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink-strong);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.feature-tab.active span {
  background: var(--primary);
}

.feature-tab strong,
.feature-tab small {
  grid-column: 2;
}

.feature-tab strong {
  display: block;
  margin-bottom: 3px;
  font-size: 16px;
}

.feature-tab small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.feature-demo-panel {
  position: sticky;
  top: 96px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.demo-copy {
  margin-bottom: 16px;
}

.demo-copy h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.6vw, 34px);
}

.demo-copy p:last-child {
  max-width: 760px;
  margin-bottom: 0;
}

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

.video-frame,
.compare-demo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #181612;
}

.video-frame {
  order: 2;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.compare-demo {
  position: relative;
  order: 1;
  width: 100%;
  aspect-ratio: 21 / 9;
}

.compare-demo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-after {
  position: absolute;
  inset: 0;
  width: auto;
  overflow: hidden;
  clip-path: inset(0 48% 0 0);
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  opacity: 0;
}

.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  z-index: 3;
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(61, 61, 58, 0.1);
}

.compare-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink-strong);
  content: "<>";
  font-size: 14px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.compare-tag {
  position: absolute;
  top: 12px;
  z-index: 4;
  border-radius: 999px;
  background: rgba(36, 35, 31, 0.78);
  color: var(--white);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.compare-tag.before {
  left: 12px;
}

.compare-tag.after {
  right: 12px;
  background: var(--primary);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.workflow li {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.workflow span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--ink-strong);
  color: var(--white);
  font-weight: 900;
}

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

.assurance-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-strong);
  font-size: 18px;
}

.pricing-section {
  width: 100%;
  background:
    linear-gradient(180deg, #25231e 0%, #171510 100%);
  color: var(--white);
  padding-inline: max(16px, calc((100% - 1120px) / 2));
}

.pricing-section h2 {
  color: var(--white);
}

.pricing-section .eyebrow {
  color: #f0c7b8;
}

.pricing-section p {
  color: rgba(255, 255, 255, 0.72);
}

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

.price-card {
  position: relative;
  display: flex;
  min-height: 400px;
  flex-direction: column;
  padding: 24px;
  color: var(--ink);
}

.price-card.featured {
  border-color: rgba(201, 100, 66, 0.74);
  box-shadow: 0 28px 90px rgba(201, 100, 66, 0.22);
  transform: translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
}

.price-card h3 {
  margin-bottom: 4px;
  font-size: clamp(32px, 3.2vw, 42px);
}

.credit {
  color: var(--primary) !important;
  font-size: 18px;
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 18px;
}

.price-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.plan-button {
  width: 100%;
  margin-top: auto;
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(820px, 100%);
  margin: 32px auto 0;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink-strong);
  font-size: 17px;
  font-weight: 820;
}

.faq-list p {
  margin: 14px 0 0;
}

.footer {
  color: #ffffff;
  background: #251f21;
}

.footer-inner {
  max-width: 1516px;
  margin: 0 auto;
  padding: 46px clamp(20px, 7.6vw, 128px) 92px;
}

.footer-brand-row {
  display: grid;
  gap: 34px;
  justify-items: start;
  margin-bottom: 58px;
}

.footer-logo img {
  width: 230px;
  height: auto;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.footer-socials img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-socials a:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(190px, 0.8fr) minmax(260px, 1.05fr);
  gap: clamp(38px, 8vw, 124px);
  align-items: start;
}

.footer-company {
  max-width: 660px;
}

.footer-company h2,
.footer-register label {
  display: block;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.footer-company p {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.72;
}

.footer-company strong {
  font-weight: 900;
}

.footer a {
  color: #ffffff;
}

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

.footer-links {
  display: grid;
  gap: 13px;
  align-self: start;
}

.footer-links a {
  width: fit-content;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.footer-policy {
  display: grid;
  gap: 46px;
}

.footer-register {
  display: grid;
  gap: 14px;
}

.footer-register-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.footer-register input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 10px 12px 10px 0;
  color: #ffffff;
}

.footer-register input::placeholder {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.footer-register button {
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  padding: 10px 0 10px 18px;
  font-weight: 900;
}

.footer-register button:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
  padding-top: 32px;
}

.footer-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.footer-bottom img {
  width: 160px;
  height: auto;
}

.mobile-buy-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 25;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 8px 8px 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-buy-bar span {
  font-weight: 900;
}

.mobile-buy-bar .button {
  min-height: 42px;
  padding: 10px 16px;
}

.checkout-dialog {
  width: min(520px, calc(100% - 28px));
  border: 0;
  background: var(--paper);
  padding: 0;
  box-shadow: 0 40px 120px rgba(43, 39, 34, 0.36);
}

.checkout-dialog::backdrop {
  background: rgba(36, 35, 31, 0.58);
  backdrop-filter: blur(8px);
}

.checkout-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 30px;
}

.checkout-form h2 {
  margin-bottom: 2px;
  font-size: 30px;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  color: var(--ink-strong);
  font-size: 24px;
  line-height: 1;
}

.selected-plan {
  padding: 14px;
  color: var(--ink-strong);
  font-weight: 850;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.checkout-form input {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
}

.checkout-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 100, 66, 0.13);
}

.form-note,
.form-status {
  margin: 0;
  font-size: 14px;
}

.form-status {
  min-height: 21px;
  color: var(--primary);
  font-weight: 750;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

@media (max-width: 1040px) {
  .hero-bg {
    right: max(-96px, calc((100% - 1120px) / 2 - 80px));
    width: min(46vw, 470px);
    min-height: 360px;
    opacity: 0.9;
  }

  h1 {
    width: min(560px, 100%);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-bg {
    position: relative;
    top: auto;
    right: auto;
    order: 2;
    width: min(100%, 720px);
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    margin: 34px auto 0;
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 249, 245, 0.86) 100%);
  }

  .audience-grid,
  .assurance-grid,
  .demo-switcher,
  .demo-media-grid,
  .workflow,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-demo-panel {
    position: relative;
    top: auto;
  }

  .price-card.featured {
    order: -1;
    transform: none;
  }

}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    font-size: 15px;
    line-height: 1.58;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
    padding: 7px 7px 7px 10px;
  }

  .brand {
    gap: 8px;
    font-size: 14px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
    font-size: 11px;
  }

  .brand span:last-child {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 12.5px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .hero {
    padding-top: 92px;
    padding-inline: 16px;
    padding-bottom: 42px;
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: 15.5px;
    line-height: 1.62;
  }

  .hero-bg {
    aspect-ratio: 4 / 3;
    margin-top: 24px;
    object-position: center top;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .button {
    min-height: 44px;
    padding: 11px 16px;
    font-size: 14px;
  }

  .section {
    width: calc(100% - 28px);
    padding: 52px 0;
  }

  h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  h3 {
    font-size: 18px;
  }

  .section-note {
    font-size: 15.5px;
  }

  .audience-grid,
  .assurance-grid,
  .workflow,
  .pricing-grid,
  .faq-list {
    gap: 10px;
    margin-top: 24px;
  }

  .agents-section,
  .pricing-section {
    width: 100%;
    padding-inline: 14px;
  }

  .demo-switcher {
    gap: 14px;
    margin-top: 24px;
  }

  .feature-tabs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(226px, 78vw);
    gap: 10px;
    margin-inline: -14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 14px 4px;
    scroll-padding-inline: 14px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .feature-tabs::-webkit-scrollbar {
    display: none;
  }

  .audience-grid article,
  .assurance-grid article,
  .price-card,
  .faq-list details {
    padding: 18px;
  }

  .feature-tab {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    min-height: 84px;
    padding: 14px;
    scroll-snap-align: start;
  }

  .feature-tab span {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .feature-tab strong {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.25;
  }

  .feature-tab small {
    display: none;
  }

  .feature-demo-panel {
    padding: 14px;
    box-shadow: var(--shadow-tight);
  }

  .demo-copy {
    margin-bottom: 12px;
  }

  .demo-copy h3 {
    font-size: 24px;
  }

  .demo-copy p:last-child {
    font-size: 14.5px;
  }

  .demo-media-grid {
    gap: 12px;
  }

  .compare-demo {
    aspect-ratio: 4 / 3;
  }

  .compare-tag {
    top: 9px;
    padding: 5px 8px;
    font-size: 11px;
  }

  .compare-tag.before {
    left: 9px;
  }

  .compare-tag.after {
    right: 9px;
  }

  .compare-line::after {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .workflow li {
    padding-top: 18px;
  }

  .workflow span {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
  }

  .price-card {
    min-height: 0;
  }

  .price-card h3 {
    font-size: 30px;
  }

  .popular-badge {
    top: 14px;
    right: 14px;
    padding: 6px 9px;
    font-size: 11px;
  }

  .price-card ul {
    margin: 18px 0 22px;
  }

  .faq-list summary {
    font-size: 15.5px;
  }

  .footer {
    padding-bottom: 0;
  }

  .footer-inner {
    padding: 38px 20px 112px;
  }

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

  .footer-brand-row {
    gap: 22px;
    margin-bottom: 34px;
  }

  .footer-logo img {
    width: 190px;
  }

  .footer-socials {
    gap: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-register-line {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 10px;
  }

  .footer-register button {
    justify-self: start;
    padding: 0;
  }

  .mobile-buy-bar {
    display: flex;
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 7px 7px 7px 14px;
  }

  .mobile-buy-bar span {
    font-size: 13px;
  }

  .checkout-form {
    gap: 12px;
    padding: 22px;
  }

  .checkout-form h2 {
    max-width: calc(100% - 40px);
    font-size: 25px;
  }
}

@media (max-width: 420px) {
  .brand span:last-child {
    max-width: 112px;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 26px;
  }

  .hero {
    padding-top: 86px;
  }

  .feature-tabs {
    grid-auto-columns: minmax(216px, 82vw);
  }

  .mobile-buy-bar .button {
    min-height: 40px;
    padding-inline: 14px;
  }
}
