:root {
  color-scheme: light;
  --ink: #122033;
  --muted: #5c6a7d;
  --line: #d9e5f0;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --blue: #1769aa;
  --deep: #07345c;
  --green: #58ad31;
  --red: #e7272d;
  --yellow: #f2b705;
  --shadow: 0 18px 48px rgba(18, 32, 51, 0.12);
}

.content-page .site-header {
  position: sticky;
}

.page-content {
  width: min(1480px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 72px;
}

.page-content .section-heading {
  align-items: flex-start;
  text-align: left;
}

.page-content .section-heading h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-featured-image {
  margin: 0 0 24px;
}

.page-featured-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  background: #eef3f8;
  box-shadow: 0 18px 48px rgba(21, 32, 43, 0.08);
}

.page-body {
  border: 1px solid rgba(21, 32, 43, 0.12);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  background: #fff;
  box-shadow: 0 18px 48px rgba(21, 32, 43, 0.08);
}

.page-body > :not(.plan-card-grid) {
  max-width: 900px;
}

.page-body > *:first-child {
  margin-top: 0;
}

.page-body h2,
.page-body h3 {
  color: var(--ink);
}

.page-body a {
  color: var(--blue);
  font-weight: 800;
}

.page-body img {
  max-width: 100%;
  border-radius: 8px;
}

.plan-card-grid {
  width: 100%;
  margin: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.plan-card {
  overflow: hidden;
  border: 1px solid #d7e5f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18, 32, 51, 0.08);
}

.plan-card-hero {
  min-height: 132px;
  padding: 22px 20px;
  display: grid;
  align-content: center;
  gap: 6px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.45), transparent 22%),
    linear-gradient(135deg, #193c68 0%, #1777cf 52%, #bfe7ff 100%);
}

.plan-card-hero span {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(11, 56, 101, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.plan-card-hero strong {
  font-size: 1.45rem;
  line-height: 1.1;
}

.plan-card-hero em {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(11, 56, 101, 0.72);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 800;
}

.plan-card-body {
  padding: 24px 22px 26px;
}

.plan-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 800;
}

.plan-card h3 {
  margin: 0 0 8px;
  color: #06142b;
  font-size: 1.45rem;
  line-height: 1.15;
}

.plan-price {
  margin: 0 0 16px;
  color: #06142b;
  font-weight: 800;
}

.plan-price strong {
  color: #0b73d9;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
}

.plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  margin: 10px 0;
  padding-left: 28px;
  color: #2f4058;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0875d8;
  box-shadow: 0 0 0 4px #e8f4ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Noto Sans Thai", "Tahoma", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
  font-size: 1.08rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(7, 52, 92, 0.16));
}

.nav-links {
  gap: 26px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-actions {
  gap: 10px;
}

.nav-search,
.nav-login {
  min-height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
}

.nav-search {
  border: 1px solid var(--line);
  padding: 8px 16px;
  background: #fff;
}

.nav-login {
  padding: 8px 18px;
  color: #fff;
  background: linear-gradient(135deg, #07345c, #1769aa);
}

.comparison-hero {
  position: relative;
  min-height: 560px;
  padding: 66px max(16px, calc((100vw - 1160px) / 2)) 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  gap: 42px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 12%, rgba(82, 180, 255, 0.26), transparent 30%),
    linear-gradient(125deg, #f6fbff 0, #e9f6ff 56%, #d6ecff 100%);
}

.comparison-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background:
    linear-gradient(120deg, transparent 0 56%, rgba(23, 105, 170, 0.18) 56.15% 56.45%, transparent 56.6%),
    linear-gradient(30deg, transparent 0 64%, rgba(88, 173, 49, 0.15) 64.1% 64.45%, transparent 64.6%),
    repeating-linear-gradient(90deg, transparent 0 130px, rgba(23, 105, 170, 0.06) 131px, transparent 132px);
}

.comparison-hero::after {
  content: "";
  position: absolute;
  right: -190px;
  top: -130px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 70px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(23, 105, 170, 0.08);
}

.hero-content,
.hero-plans {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: #0865b4;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.05rem, 3.55vw, 3.65rem);
  line-height: 1.12;
}

.hero-content h1::first-line {
  color: var(--ink);
}

.hero-lead {
  max-width: 640px;
  margin: 18px 0 0;
  color: #485971;
  font-size: 1.12rem;
}

.hero-benefits {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
}

.hero-benefits div {
  min-height: 56px;
  display: grid;
  align-content: center;
  padding-left: 46px;
  position: relative;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-benefits div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background:
    #fff
    url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%231c7dcc' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 18px 18px no-repeat;
  box-shadow: inset 0 0 0 2px #1c7dcc, 0 8px 18px rgba(28, 125, 204, 0.14);
}

.hero-benefits strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary,
.button.finder-button {
  color: #fff;
  border-color: #07345c;
  background: linear-gradient(135deg, #07345c, #1769aa);
  box-shadow: 0 10px 24px rgba(23, 105, 170, 0.18);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
}

.hero-plans {
  min-height: 330px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 14px;
}

.hero-plans::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 0;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(23, 105, 170, 0.22), rgba(255, 255, 255, 0.7) 58%, transparent 70%);
}

.hero-plan-card {
  position: relative;
  z-index: 1;
  min-height: 250px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--provider-color, var(--blue));
  border-radius: 8px;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(18, 32, 51, 0.12);
}

.hero-plan-card.true-card {
  --provider-color: #00a3e0;
  box-shadow: 0 18px 45px rgba(0, 163, 224, 0.14);
}

.hero-plan-card.ais-card {
  --provider-color: var(--green);
  box-shadow: 0 18px 45px rgba(88, 173, 49, 0.16);
}

.hero-plan-card.nt-card {
  --provider-color: var(--yellow);
  box-shadow: 0 18px 45px rgba(242, 183, 5, 0.16);
}

.hero-plan-card img {
  width: min(230px, 92%);
  height: 132px;
  object-fit: contain;
}

.search-panel {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100% - 32px));
  margin: -44px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(18, 32, 51, 0.12);
}

.plan-search-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(180px, 1.1fr);
  gap: 14px;
  align-items: end;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

select,
input,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 800;
}

.reset-link {
  grid-column: -2 / -1;
  width: fit-content;
  justify-self: end;
  border: 0;
  padding: 0;
  color: var(--blue);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.search-meta {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.search-meta strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.search-meta span {
  text-align: right;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.compact-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.section-heading p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-card {
  --provider-color: var(--blue);
  border: 1px solid var(--line);
  border-top: 5px solid var(--provider-color);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(18, 32, 51, 0.08);
}

.package-top {
  min-height: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.package-top img {
  width: 128px;
  max-height: 58px;
  object-fit: contain;
}

.package-top span {
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  background: var(--provider-color);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.package-type {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.package-card h3 {
  margin: 4px 0 18px;
  font-size: 1.15rem;
}

.package-metrics {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.package-metrics span,
.package-detail span,
.result-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.package-metrics strong {
  display: block;
  color: var(--provider-color);
  font-size: 1.24rem;
  line-height: 1.1;
}

.speed-combo {
  white-space: nowrap;
}

.package-metrics small {
  color: var(--muted);
}

.tax-note {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}

.package-detail {
  min-height: 128px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 18px 0;
}

.package-detail p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.package-detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-detail li {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.9rem;
}

.package-detail li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  display: inline-block;
  background: var(--provider-color);
}

.package-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.package-actions .button {
  min-height: 42px;
  padding: 8px 10px;
  font-size: 0.9rem;
}

.apply-button {
  color: #fff;
  border-color: var(--provider-color);
  background: var(--provider-color);
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 34px;
  text-align: center;
  background: #fff;
}

.fine-print {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.finder-dashboard {
  width: min(1120px, calc(100% - 32px));
  margin: 56px auto 0;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
  background: linear-gradient(135deg, #062846, #074b7b);
  box-shadow: var(--shadow);
}

.finder-copy {
  padding: 34px;
  color: #fff;
}

.finder-copy .eyebrow {
  color: #9fd7ff;
}

.finder-copy h2 {
  margin: 0 0 22px;
  max-width: 430px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.finder-form {
  display: grid;
  gap: 12px;
}

.finder-form label {
  color: #d5eaff;
}

.finder-button {
  margin-top: 8px;
  border-color: #7bc75a;
  background: linear-gradient(135deg, #58ad31, #89d46a);
}

.finder-result-card {
  margin: 22px;
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.finder-result-card > span {
  color: var(--blue);
  font-weight: 900;
}

.result-logo img {
  width: 155px;
  max-height: 72px;
  object-fit: contain;
}

.finder-result-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.finder-result-card p {
  margin: 0;
  color: var(--muted);
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.result-metrics div {
  border-radius: 8px;
  padding: 14px;
  background: var(--soft);
}

.result-metrics strong {
  display: block;
  font-size: 1.2rem;
}

.step-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
}

.step-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 32, 51, 0.06);
}

.step-list strong,
.step-list span {
  display: block;
}

.step-list strong {
  margin-bottom: 8px;
}

.step-list span {
  color: var(--muted);
}

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

.it-article-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 32, 51, 0.06);
}

.it-article-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 16px;
  object-fit: contain;
  background: #f8fbfe;
}

.it-article-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  display: inline-flex;
  color: #0a4c76;
  background: #e8f4fd;
  font-size: 0.78rem;
  font-weight: 900;
}

.it-article-card h3 {
  margin: 14px 0 8px;
  font-size: 1.16rem;
  line-height: 1.35;
}

.it-article-card p {
  margin: 0;
  color: var(--muted);
}

.it-article-card a {
  width: fit-content;
  margin-top: 16px;
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
}

.footer {
  margin: 72px 0 0;
  padding: 42px max(16px, calc((100vw - 1120px) / 2)) 28px;
  color: #d7e8f6;
  background:
    radial-gradient(circle at 82% 0, rgba(88, 173, 49, 0.22), transparent 28%),
    linear-gradient(135deg, #062846, #07345c 58%, #0b5f8c);
}

.footer p {
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.7fr) minmax(260px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 14px;
}

.footer-brand .brand-logo {
  flex: 0 0 auto;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
}

.footer-brand p {
  max-width: 520px;
  margin-top: 8px;
  color: #b8cee2;
}

.footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #d7e8f6;
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p {
  color: #b8cee2;
}

.line-button {
  width: fit-content;
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #06c755;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(6, 199, 85, 0.22);
}

.footer-bottom {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #9fb8cc;
  font-size: 0.88rem;
}

.provider-page {
  background: #f4f8fb;
}

.provider-hero {
  width: min(1120px, calc(100% - 32px));
  margin: 42px auto 0;
  border-radius: 8px;
  padding: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 28px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, var(--provider-secondary), var(--provider-primary));
  box-shadow: var(--shadow);
}

.provider-logo-large {
  max-width: 260px;
  max-height: 110px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 14px;
  background: #fff;
}

.provider-hero .eyebrow,
.provider-hero p {
  color: rgba(255, 255, 255, 0.86);
}

.provider-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.1;
}

.provider-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 14px 0 0;
  font-size: 1.08rem;
}

.provider-button {
  border-color: rgba(255, 255, 255, 0.5);
  background: #fff;
  color: var(--provider-secondary);
}

.provider-stats {
  display: grid;
  gap: 14px;
  align-self: center;
}

.provider-stats div {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.provider-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
  font-weight: 900;
}

.provider-stats strong {
  display: block;
  margin-top: 4px;
  font-size: 1.25rem;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.promo-card {
  border: 1px solid var(--line);
  border-top: 5px solid var(--provider-primary);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(18, 32, 51, 0.08);
}

.promo-tag {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  display: inline-flex;
  color: #fff;
  background: var(--provider-primary);
  font-size: 0.82rem;
  font-weight: 900;
}

.promo-card h3 {
  margin: 14px 0;
  font-size: 1.25rem;
}

.speed-row {
  display: grid;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.speed-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.speed-row strong,
.promo-price {
  color: var(--provider-primary);
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.15;
}

.single-speed strong {
  white-space: nowrap;
}

.promo-price {
  margin: 0 0 10px;
}

.promo-price + .tax-note {
  margin: -4px 0 12px;
}

.feature-list {
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  margin-bottom: 8px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  display: inline-block;
  background: var(--provider-primary);
}

.contract-note {
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  background: var(--soft);
  font-size: 0.9rem;
}

.text-link {
  min-height: 42px;
  border-radius: 8px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--provider-primary);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links,
  .nav-actions {
    flex-wrap: wrap;
  }

  .comparison-hero,
  .finder-dashboard {
    grid-template-columns: 1fr;
  }

  .hero-plans {
    min-height: 360px;
  }

  .plan-search-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .reset-link {
    grid-column: auto;
    justify-self: start;
  }

  .search-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-meta span {
    text-align: left;
  }

  .package-grid,
  .plan-card-grid,
  .promo-grid,
  .article-grid,
  .step-list {
    grid-template-columns: 1fr 1fr;
  }

  .provider-hero {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .nav-links {
    gap: 12px;
    font-size: 0.84rem;
  }

  .nav-actions,
  .nav-search,
  .nav-login {
    width: 100%;
  }

  .comparison-hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 72px;
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-benefits,
  .hero-plans,
  .plan-search-form,
  .package-grid,
  .plan-card-grid,
  .promo-grid,
  .article-grid,
  .package-metrics,
  .package-detail,
  .package-actions,
  .finder-dashboard,
  .result-metrics,
  .step-list {
    grid-template-columns: 1fr;
  }

  .hero-plans {
    gap: 16px;
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .hero-plan-card,
  .hero-plan-card.nt-card {
    min-height: 210px;
    transform: none;
    padding: 22px 18px;
  }

  .hero-plan-card img {
    width: min(230px, 78%);
    height: 104px;
  }

  .search-panel {
    margin-top: -28px;
  }

  .compact-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .finder-copy,
  .finder-result-card {
    margin: 0;
    border-radius: 0;
    padding: 24px;
  }

  .provider-hero {
    margin-top: 24px;
    padding: 26px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}
