/* Arveteha pricing — homepage-inspired cards on a white page.
   Card visuals are expressive; page sections and overall background remain white. */

:root {
  --page-bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f8fa;
  --surface-muted: #f1f3f5;
  --text: #172033;
  --text-secondary: #4e596b;
  --text-muted: #748094;
  --border: #dfe3e8;
  --border-strong: #cbd2da;
  --accent: #0f766e;
  --accent-hover: #0b5f59;
  --accent-soft: #eef8f6;
  --focus: rgba(15, 118, 110, 0.18);
  --shadow: 0 8px 24px rgba(20, 31, 51, 0.06);
  --shadow-card: 0 14px 38px rgba(39, 48, 85, 0.10);
  --shadow-card-hover: 0 25px 56px rgba(39, 48, 85, 0.16);
  --purple: #635bff;
  --purple-dark: #4d46d9;
  --purple-pale: #f1efff;
  --teal: #16b8a6;
  --teal-dark: #087f73;
  --teal-pale: #e8faf6;
  --blue: #4e7df2;
  --blue-pale: #eaf1ff;
  --coral: #ff8d76;
  --coral-pale: #fff0eb;
  --yellow: #ffd86b;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
  background: #ffffff;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 48px;
  align-items: end;
  margin-bottom: 28px;
}

.section-title {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 3.4vw, 43px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.042em;
  text-wrap: balance;
}

.section-copy {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  background: var(--accent);
  content: "";
}

/* PRICING — homepage card language, page background remains white */

.pricing {
  padding: 58px 0 68px;
  background: #ffffff;
  border-bottom: 1px solid #edf0f2;
}

.pricing-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.72fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.pricing-intro .section-title {
  max-width: 720px;
}

.pricing-note {
  max-width: 440px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.65;
}

/* PRICING CARDS — 2-plan marketing layout aligned with homepage */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  padding: 34px 38px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid #dfe5ed;
  border-radius: 28px;
  box-shadow: 0 22px 52px rgba(38, 50, 78, 0.09);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s cubic-bezier(0.2, 0.85, 0.25, 1.2);
}

.price-card::before {
  position: absolute;
  z-index: -1;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #635bff, #8e86ff);
  border-radius: 28px 28px 0 0;
  content: "";
  pointer-events: none;
}

.price-card::after {
  position: absolute;
  z-index: -1;
  top: -55px;
  right: -85px;
  width: 230px;
  height: 100px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(99, 91, 255, 0.12), rgba(22, 184, 166, 0.12));
  content: "";
  transform: rotate(20deg);
  pointer-events: none;
}

.price-card:hover {
  border-color: #cbc8f4;
  box-shadow: 0 30px 66px rgba(56, 54, 119, 0.15);
  transform: translateY(-7px);
}

.price-card.is-pro {
  color: #ffffff;
  background: linear-gradient(150deg, #2e2c78 0%, #4d48c4 58%, #635cf0 100%);
  border-color: transparent;
  box-shadow: 0 26px 60px rgba(54, 49, 137, 0.24);
}

.price-card.is-pro::before {
  height: 0;
  background: none;
}

.price-card.is-pro::after {
  top: -44px;
  right: -58px;
  width: 220px;
  height: 90px;
  background: linear-gradient(90deg, rgba(255, 141, 118, 0.74), rgba(255, 216, 107, 0.58));
  opacity: 0.72;
}

.price-card.is-pro:hover {
  border-color: transparent;
  box-shadow: 0 34px 76px rgba(54, 49, 137, 0.31);
}

.price-card > * {
  position: relative;
  z-index: 2;
}

.price-top {
  min-height: 235px;
}

.price-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 8px 13px;
  color: #087f73;
  background: #e8f8f5;
  border: 0;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-label.recommended {
  color: #514ac9;
  background: #efedff;
}

.price-card.is-pro .price-label,
.price-label.pro {
  color: #5d4300;
  background: linear-gradient(180deg, #fff1a8 0%, #ffd85a 100%);
  border: 1px solid rgba(255, 234, 150, 0.65);
  box-shadow: 0 10px 24px rgba(255, 212, 74, 0.26);
}

.price-card h2 {
  margin: 22px 0 0;
  font-size: 27px;
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.price-description {
  max-width: 520px;
  margin: 10px 0 0;
  color: #65708a;
  font-size: 14px;
  line-height: 1.65;
}

.price-card.is-pro .price-description {
  color: rgba(255, 255, 255, 0.78);
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-top: 24px;
  color: var(--text);
  font-size: 56px;
  line-height: 1;
  font-weight: 780;
  letter-spacing: -0.065em;
}

.price-card.is-pro .price {
  color: #ffffff;
}

.price-old {
  color: #8993a2;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
  text-decoration-line: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: currentColor;
}

.price-current {
  color: inherit;
}

.price small {
  color: #7a8498;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0;
}

.price-card.is-pro .price small {
  color: rgba(255, 255, 255, 0.78);
}

.price-tax {
  min-height: 38px;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 720;
  letter-spacing: 0.035em;
}

.price-card.is-pro .price-tax {
  color: #fff2a9;
}

.card-divider {
  height: 1px;
  margin: 20px 0;
  background: rgba(124, 137, 158, 0.20);
}

.price-card.is-pro .card-divider {
  background: rgba(255, 255, 255, 0.19);
}

.includes-title {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-card.is-pro .includes-title {
  color: rgba(255, 255, 255, 0.70);
}

.price-list {
  display: grid;
  flex: 1;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 28px;
  color: #56637a;
  font-size: 15px;
  line-height: 1.55;
}

.price-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #0a9386;
  content: "✓";
  font-weight: 850;
}

.price-card.is-pro .price-list li {
  color: rgba(255, 255, 255, 0.88);
}

.price-card.is-pro .price-list li::before {
  color: #9bf6e3;
}

.price-card.is-pro .price-list li.is-earve-highlight {
  padding: 12px 14px 12px 40px;
  color: #fff5b3;
  background: rgba(255, 214, 72, 0.14);
  border: 1px solid rgba(255, 228, 122, 0.28);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 820;
}

.price-card.is-pro .price-list li.is-earve-highlight::before {
  top: 12px;
  left: 14px;
  color: #ffd84a;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border-radius: 13px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.primary-cta {
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple) 0%, #7669ff 100%);
  border: 1px solid transparent;
  box-shadow: 0 13px 28px rgba(99, 91, 255, 0.23);
}

.primary-cta:hover {
  box-shadow: 0 17px 34px rgba(99, 91, 255, 0.29);
  transform: translateY(-2px);
}

.secondary-cta {
  color: var(--text);
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid #dce1ec;
  box-shadow: 0 6px 18px rgba(33, 43, 72, 0.05);
}

.secondary-cta:hover {
  border-color: #bfc7d8;
  box-shadow: 0 10px 24px rgba(39, 48, 85, 0.10);
  transform: translateY(-2px);
}

.price-card .primary-cta,
.price-card .secondary-cta {
  width: 100%;
  margin-top: auto;
}

.price-card.is-pro .primary-cta {
  color: #362f97;
  background: linear-gradient(180deg, #fffefb 0%, #ffffff 100%);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(20, 18, 73, 0.18);
}

.price-card.is-pro .primary-cta:hover {
  background: #fffefb;
  box-shadow: 0 18px 38px rgba(20, 18, 73, 0.27);
}

/* AVAILABILITY NOTICE */

.honesty {
  padding: 26px 0 0;
  background: #ffffff;
}

.honesty-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 17px;
  align-items: start;
  overflow: hidden;
  padding: 23px 25px;
  background: linear-gradient(135deg, #e8faf6 0%, #f6fcff 58%, #f1efff 100%);
  border: 1px solid #d8ece8;
  border-radius: 22px;
  box-shadow: 0 13px 34px rgba(29, 73, 81, 0.08);
}

.honesty-card::after {
  position: absolute;
  z-index: -1;
  top: -42px;
  right: -72px;
  width: 210px;
  height: 86px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(99, 91, 255, 0.20), rgba(22, 184, 166, 0.26));
  content: "";
  transform: rotate(18deg);
}

.honesty-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(52, 62, 98, 0.08);
}

.honesty-icon svg {
  width: 20px;
}

.honesty-card h2 {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 750;
  letter-spacing: -0.018em;
}

.honesty-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.62;
}

/* COMPARISON */

.compare-section {
  background: #ffffff;
}

.compare-wrap {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e4ef;
  border-radius: 23px;
  box-shadow: 0 14px 38px rgba(39, 48, 85, 0.09);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.compare-table th,
.compare-table td {
  padding: 15px 16px;
  border-right: 1px solid #edf0f5;
  border-bottom: 1px solid #edf0f5;
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 450;
}

.compare-table th:last-child,
.compare-table td:last-child {
  border-right: 0;
}

.compare-table th:first-child,
.compare-table td:first-child {
  width: 40%;
  text-align: left;
}

.compare-table thead th {
  color: var(--text);
  background: linear-gradient(135deg, #f1efff 0%, #f7f8ff 52%, #e8faf6 100%);
  font-size: 12.5px;
  font-weight: 750;
}

.compare-table tbody tr:not(.compare-category):hover td {
  background: #fbfcff;
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-category td {
  padding-top: 15px;
  padding-bottom: 10px;
  color: #5b6676;
  background: linear-gradient(90deg, #ffffff, #fafbff);
  font-size: 10.5px !important;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.check {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border: 1px solid #cfe9e3;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.planned {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 9px;
  color: #655fc5;
  background: var(--purple-pale);
  border: 1px solid #dedaff;
  border-radius: 999px;
  font-size: 9.5px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.dash {
  color: #aeb5bf;
}

.mobile-comparison {
  display: none;
}

.mobile-feature-group {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 21px;
  background: linear-gradient(145deg, #e8faf6 0%, #f8fffd 62%, #ffffff 100%);
  border: 1px solid #d8f1eb;
  border-radius: 21px;
  box-shadow: 0 12px 30px rgba(39, 48, 85, 0.08);
}

.mobile-feature-group.mobile-plan-2 {
  background: linear-gradient(145deg, #f1efff 0%, #faf9ff 62%, #ffffff 100%);
  border-color: #e0dcff;
}

.mobile-feature-group.mobile-plan-3 {
  background: linear-gradient(145deg, #eaf1ff 0%, #fff5ef 62%, #ffffff 100%);
  border-color: #e1e5f3;
}

.mobile-feature-group::after {
  position: absolute;
  z-index: -1;
  top: -34px;
  right: -58px;
  width: 160px;
  height: 68px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(22, 184, 166, 0.28), rgba(143, 216, 255, 0.24));
  content: "";
  transform: rotate(20deg);
}

.mobile-feature-group.mobile-plan-2::after {
  background: linear-gradient(90deg, rgba(99, 91, 255, 0.30), rgba(139, 120, 255, 0.22));
}

.mobile-feature-group.mobile-plan-3::after {
  background: linear-gradient(90deg, rgba(78, 125, 242, 0.24), rgba(255, 141, 118, 0.28));
}

.mobile-feature-group h3 {
  margin: 0 0 13px;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.mobile-feature-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(222, 226, 237, 0.88);
  color: var(--text-secondary);
  font-size: 12.5px;
  line-height: 1.45;
}

.mobile-feature-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

/* PACKAGE GUIDANCE */

.choice-section {
  background: #ffffff;
  border-top: 1px solid #edf0f2;
  border-bottom: 1px solid #edf0f2;
}

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

.choice-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 220px;
  overflow: hidden;
  padding: 25px;
  background: linear-gradient(145deg, #e7fbf7 0%, #f8fffd 62%, #ffffff 100%);
  border: 1px solid #d8f1eb;
  border-radius: 24px;
  box-shadow: 0 13px 34px rgba(29, 73, 81, 0.08);
  transition: transform 0.28s cubic-bezier(0.2, 0.85, 0.25, 1.2), box-shadow 0.28s ease;
}

.choice-card-2 {
  background: linear-gradient(145deg, #efedff 0%, #faf9ff 63%, #ffffff 100%);
  border-color: #e0dcff;
}

.choice-card-3 {
  background: linear-gradient(145deg, #fff0eb 0%, #fff9f3 58%, #f3f7ff 100%);
  border-color: #f5ddd5;
}

.choice-card::after {
  position: absolute;
  z-index: -1;
  top: -34px;
  right: -48px;
  width: 165px;
  height: 74px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(22, 184, 166, 0.34), rgba(143, 216, 255, 0.30));
  content: "";
  transform: rotate(20deg);
}

.choice-card-2::after {
  background: linear-gradient(90deg, rgba(99, 91, 255, 0.36), rgba(139, 120, 255, 0.28));
}

.choice-card-3::after {
  background: linear-gradient(90deg, rgba(255, 141, 118, 0.34), rgba(255, 216, 107, 0.40));
}

.choice-card:hover {
  box-shadow: 0 24px 50px rgba(52, 57, 105, 0.15);
  transform: translateY(-7px);
}

.choice-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(52, 62, 98, 0.08);
}

.choice-card-2 .choice-icon {
  color: var(--purple-dark);
}

.choice-card-3 .choice-icon {
  color: #d56853;
}

.choice-icon svg {
  width: 20px;
}

.choice-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 750;
  letter-spacing: -0.028em;
}

.choice-card p {
  margin: 0;
  color: #5f6b81;
  font-size: 13px;
  line-height: 1.60;
}

/* FINAL CTA */

.final-cta {
  padding: 56px 0 64px;
  background: #ffffff;
}

.final-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  padding: 34px 36px;
  color: #ffffff;
  background: linear-gradient(125deg, #332f90 0%, #5d55dc 47%, #6b69e7 67%, #168f86 128%);
  border: 1px solid transparent;
  border-radius: 27px;
  box-shadow: 0 26px 70px rgba(47, 45, 110, 0.22);
}

.final-card::before,
.final-card::after {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.final-card::before {
  left: -11%;
  bottom: -25px;
  width: 64%;
  height: 92px;
  background: linear-gradient(90deg, rgba(22, 184, 166, 0.82), rgba(143, 216, 255, 0.60));
  opacity: 0.56;
  transform: rotate(-12deg);
}

.final-card::after {
  top: -42px;
  right: -10%;
  width: 48%;
  height: 105px;
  background: linear-gradient(90deg, rgba(255, 141, 118, 0.75), rgba(255, 216, 107, 0.70));
  opacity: 0.48;
  transform: rotate(16deg);
}

.final-content,
.final-card > .primary-cta {
  position: relative;
  z-index: 2;
}

.final-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(27px, 3.1vw, 39px);
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: -0.042em;
}

.final-card p {
  max-width: 680px;
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.64;
}

.final-card > .primary-cta {
  min-width: 196px;
  color: #3f3aaf;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(24, 22, 80, 0.20);
}

.final-card > .primary-cta:hover {
  background: #f8f7ff;
  box-shadow: 0 18px 38px rgba(24, 22, 80, 0.28);
}

/* FOOTER */

.footer {
  padding: 28px 0 24px;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand p {
  max-width: 470px;
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 12.5px;
  line-height: 1.58;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 600;
}

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

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

/* ACCESSIBILITY */

.primary-cta:focus-visible,
.secondary-cta:focus-visible,
.footer a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* RESPONSIVE */

@media (max-width: 1020px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 840px) {
  .container {
    width: min(var(--content), calc(100% - 32px));
  }

  .section {
    padding: 58px 0;
  }

  .section-head,
  .pricing-intro {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .pricing {
    padding-top: 46px;
  }

  .pricing-note,
  .section-copy {
    max-width: 680px;
  }

  .compare-wrap {
    display: none;
  }

  .mobile-comparison {
    display: grid;
    gap: 13px;
  }

  .final-card {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .final-card > .primary-cta {
    width: fit-content;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .container {
    width: calc(100% - 24px);
  }

  .section {
    padding: 46px 0;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 35px);
  }

  .pricing {
    padding: 38px 0 48px;
  }

  .pricing-grid {
    gap: 13px;
  }

  .price-card,
  .price-card.featured {
    padding: 22px;
    border-radius: 21px;
  }

  .price-card:hover,
  .choice-card:hover {
    transform: none;
  }

  .price {
    font-size: 38px;
  }

  .price-list li {
    font-size: 12.5px;
  }

  .honesty {
    padding-top: 17px;
  }

  .honesty-card {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 20px;
  }

  .choice-card,
  .mobile-feature-group {
    padding: 20px;
    border-radius: 20px;
  }

  .final-cta {
    padding: 42px 0 48px;
  }

  .final-card {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .final-card > .primary-cta {
    width: 100%;
  }
}


/* Mobile readability: tariff text must remain comfortably readable without zooming. */
@media (max-width: 600px) {
  .eyebrow,
  .price-label,
  .includes-title {
    font-size: 14px;
  }

  .pricing-note,
  .section-copy,
  .price-description,
  .price-list li,
  .honesty-card p,
  .mobile-feature-list li,
  .choice-card p,
  .final-card p,
  .footer-brand p,
  .footer-links a {
    font-size: 15.5px;
  }

  .price small,
  .price-tax,
  .future-note,
  .footer-bottom {
    font-size: 14px;
  }

  .primary-cta,
  .secondary-cta {
    font-size: 15px;
  }

  .mobile-feature-group h3 {
    font-size: 20px;
  }

  .planned {
    padding: 7px 10px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .price-card,
  .primary-cta,
  .secondary-cta {
    transition: none;
  }
}

@media print {
  .price-card,
  .honesty-card,
  .compare-wrap,
  .choice-card,
  .final-card {
    box-shadow: none;
  }

  .primary-cta,
  .secondary-cta {
    border: 1px solid #000000;
  }
}
