:root {
  color-scheme: light;
  --ink: #102335;
  --muted: #667789;
  --paper: #f7f8f5;
  --panel: #ffffff;
  --navy: #12365c;
  --teal: #0e9f9a;
  --coral: #e45f4f;
  --gold: #d69e2e;
  --leaf: #5b8c5a;
  --line: rgba(16, 35, 53, 0.12);
  --shadow: 0 18px 50px rgba(16, 35, 53, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.glass-nav {
  background: rgba(247, 248, 245, 0.88);
  border-bottom: 1px solid rgba(16, 35, 53, 0.08);
  backdrop-filter: blur(18px);
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: 0;
  color: var(--ink);
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.nav-link {
  font-weight: 700;
  color: rgba(16, 35, 53, 0.74);
}

.nav-link:hover {
  color: var(--coral);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 22, 38, 0.82) 0%, rgba(10, 27, 43, 0.62) 36%, rgba(10, 27, 43, 0.16) 70%),
    url("assets/hero-connectivity.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.map-city-dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.city-dot,
.esim-chip-pulse {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #80f5ef;
  box-shadow: 0 0 14px rgba(128, 245, 239, 0.72);
  transform: translate(-50%, -50%);
}

.city-dot::after,
.esim-chip-pulse::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(128, 245, 239, 0.48);
  border-radius: 50%;
  animation: mapPulse 2.8s ease-out infinite;
}

.city-new-york {
  left: 65.1%;
  top: 62.6%;
  animation-delay: 0s;
}

.city-london {
  left: 66.7%;
  top: 59.8%;
}

.city-paris {
  left: 68.1%;
  top: 63.7%;
}

.city-dubai {
  left: 70%;
  top: 65.7%;
}

.city-singapore {
  left: 71.2%;
  top: 68.4%;
}

.city-tokyo {
  left: 72.3%;
  top: 61.2%;
}

.city-london::after {
  animation-delay: 0.35s;
}

.city-paris::after {
  animation-delay: 0.7s;
}

.city-dubai::after {
  animation-delay: 1.05s;
}

.city-singapore::after {
  animation-delay: 1.4s;
}

.city-tokyo::after {
  animation-delay: 1.75s;
}

.esim-chip-pulse {
  left: 66.27%;
  top: 39.1%;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(159, 248, 243, 0.18) 0%, rgba(159, 248, 243, 0.08) 42%, rgba(159, 248, 243, 0) 74%);
  box-shadow: 0 0 24px rgba(159, 248, 243, 0.32);
  transform: translate(-50%, -50%) rotate(-10.5deg);
}

.esim-chip-pulse::after {
  inset: 4px;
  border-width: 2px;
  border-color: rgba(159, 248, 243, 0.58);
  border-radius: 18px;
  box-shadow: 0 0 22px rgba(159, 248, 243, 0.4);
  animation: esimPulse 2.1s ease-out infinite;
}

@keyframes mapPulse {
  0% {
    transform: scale(0.55);
    opacity: 0.72;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes esimPulse {
  0% {
    transform: scale(0.74);
    opacity: 0.86;
  }
  100% {
    transform: scale(1.42);
    opacity: 0;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top: 88px;
  padding-bottom: 48px;
}

.hero-row {
  min-height: 640px;
  padding: 44px 0 36px;
}

.eyebrow {
  margin-bottom: 0.65rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}

.hero h1 {
  max-width: 760px;
  font-size: 5.15rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.hero .lead {
  max-width: 650px;
  margin-top: 1.4rem;
  font-size: 1.26rem;
  color: rgba(255, 255, 255, 0.86);
}

.btn {
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--teal);
  border-color: var(--teal);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #0a827e;
  border-color: #0a827e;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-metrics {
  width: min(100%, 480px);
  margin-left: auto;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hero-metrics div {
  min-width: 0;
}

.hero-metrics strong {
  display: block;
  font-size: 3.1rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

section {
  padding: 84px 0;
}

.quick-picks {
  background: #fff;
}

.section-heading {
  margin-bottom: 30px;
  max-width: 780px;
}

.section-heading.wide {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 460px);
  gap: 28px;
  align-items: end;
}

.section-heading h2 {
  margin: 0;
  font-size: 4.1rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.pick-card,
.provider-card,
.planner-panel,
.recommendation-panel,
.comparison-table-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pick-card {
  height: 100%;
  padding: 22px;
  border-left: 6px solid var(--accent, var(--teal));
  display: flex;
  flex-direction: column;
}

.pick-card .icon-pill,
.provider-logo {
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
}

.pick-card .icon-pill {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  font-size: 1.3rem;
  color: #fff;
  background: var(--accent, var(--teal));
}

.pick-card h3 {
  margin-bottom: 0.45rem;
  font-weight: 900;
}

.pick-card p {
  color: var(--muted);
  font-weight: 600;
}

.pick-card a {
  margin-top: auto;
}

.compare-section {
  background:
    linear-gradient(180deg, rgba(14, 159, 154, 0.07), transparent 28%),
    var(--paper);
}

.control-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 14px;
  margin-bottom: 16px;
}

.search-box {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-box i {
  color: var(--muted);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  font-weight: 700;
  background: transparent;
  color: var(--ink);
}

.select-wrap {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.select-wrap label {
  font-weight: 800;
  color: var(--muted);
}

.select-wrap .form-select {
  border: 0;
  font-weight: 800;
  box-shadow: none;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-chip {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.filter-chip.active,
.filter-chip:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.provider-count {
  min-height: 24px;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 800;
}

.provider-card {
  height: 100%;
  padding: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.provider-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--accent, var(--teal));
}

.provider-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 0;
  min-height: 60px;
}

.provider-title {
  display: flex;
  gap: 12px;
  align-items: center;
}

.provider-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-weight: 900;
}

.provider-logo-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.logo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  border-radius: 8px;
  background: rgba(16, 35, 53, 0.06);
  color: var(--ink);
}

.provider-card h3 {
  margin: 0;
  font-weight: 900;
}

.score-badge {
  min-width: 72px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(16, 35, 53, 0.06);
  text-align: center;
  font-weight: 900;
}

.score-badge span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.provider-summary {
  color: var(--muted);
  font-weight: 600;
  margin: 0;
  min-height: 72px;
}

.tag-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  height: 34px;
}

.tag {
  min-width: 0;
  padding: 6px 4px;
  border-radius: 8px;
  background: rgba(16, 35, 53, 0.055);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.tag-empty {
  visibility: hidden;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 106px;
  gap: 8px;
  margin-top: 2px;
}

.stat {
  min-height: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)),
    #f3f5f2;
  border: 1px solid rgba(16, 35, 53, 0.06);
  box-shadow: inset 3px 0 0 var(--accent, var(--teal));
}

.stat span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.26;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
  min-height: 48px;
}

.planner-section {
  background: #18314f;
  color: #fff;
}

.planner-panel,
.recommendation-panel {
  height: 100%;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  color: var(--ink);
}

.planner-panel h2 {
  margin-bottom: 22px;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
}

.planner-form {
  display: grid;
  gap: 14px;
}

.planner-form label {
  font-weight: 800;
}

.range-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px;
  gap: 16px;
  align-items: center;
}

.range-line output {
  font-weight: 900;
  text-align: right;
}

.form-range::-webkit-slider-thumb {
  background: var(--coral);
}

.form-range::-moz-range-thumb {
  background: var(--coral);
}

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

.check-grid label {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f8f5;
  font-size: 0.92rem;
}

.check-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.recommendation-panel h3 {
  margin: 0;
  font-weight: 900;
}

.recommendation-icon {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(14, 159, 154, 0.12);
  color: var(--teal);
  font-size: 1.8rem;
}

.recommendations {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.recommendation {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f8f5;
}

.rank {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--accent, var(--teal));
  font-weight: 900;
}

.recommendation h4 {
  margin: 0;
  font-weight: 900;
}

.recommendation p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.table-section {
  background: #fff;
}

.comparison-table-wrap {
  overflow: hidden;
}

.comparison-table {
  margin: 0;
}

.comparison-table th {
  padding: 18px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comparison-table td {
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 650;
}

.comparison-table tbody tr:nth-child(even) td {
  background: #f7f8f5;
}

.provider-mini {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
}

.mini-logo {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 0.65rem;
}

.mini-logo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mini-logo span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  border-radius: 6px;
  background: rgba(16, 35, 53, 0.06);
}

.sources-section {
  background: var(--paper);
}

.faq-section {
  background: #eef7f4;
}

.faq-accordion {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--line);
}

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

.faq-accordion .accordion-button {
  padding: 20px 22px;
  font-weight: 900;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--ink);
  background: #fff;
}

.faq-accordion .accordion-body {
  padding: 0 22px 22px;
  color: var(--muted);
  font-weight: 650;
  background: #fff;
}

.seo-provider-fallback {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.seo-provider-fallback h3 {
  margin-bottom: 0.6rem;
  font-weight: 900;
}

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

.source-link {
  min-height: 72px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 850;
}

.source-link:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.site-footer {
  padding: 28px 0;
  background: #102335;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.site-footer a {
  color: #fff;
  font-weight: 900;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 3px;
}

.site-footer a:hover {
  color: #77d9d4;
}

.modal-content {
  border: 0;
  border-radius: 8px;
}

.modal-header,
.modal-footer {
  border-color: var(--line);
}

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

.detail-box {
  padding: 14px;
  border-radius: 8px;
  background: #f7f8f5;
}

.detail-box span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-box strong {
  display: block;
  margin-top: 0.3rem;
}

.admin-body {
  background: #f7f8f5;
}

.admin-main {
  padding-top: 74px;
}

.admin-hero {
  padding: 62px 0 34px;
  background:
    linear-gradient(135deg, rgba(14, 159, 154, 0.14), rgba(228, 95, 79, 0.08)),
    #fff;
  border-bottom: 1px solid var(--line);
}

.admin-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.admin-title-row h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
}

.admin-title-row p {
  max-width: 780px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 650;
}

.admin-status {
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(14, 159, 154, 0.12);
  color: #087772;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.admin-status.error {
  background: rgba(228, 95, 79, 0.12);
  color: #b84035;
}

.admin-panel-section {
  padding: 34px 0 76px;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(5, auto);
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.admin-search {
  min-height: 48px;
}

.admin-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.admin-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-table-head,
.admin-link-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(320px, 1.35fr) 210px;
  gap: 14px;
  align-items: center;
}

.admin-table-head {
  padding: 14px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-link-row {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}

.admin-link-row:nth-child(even) {
  background: #fbfbf9;
}

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

.admin-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.admin-provider strong,
.admin-provider a {
  display: block;
}

.admin-provider a {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}

.admin-row-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.affiliate-input {
  min-height: 44px;
  font-weight: 650;
}

@media (max-width: 991.98px) {
  .admin-title-row,
  .admin-toolbar,
  .admin-table-head,
  .admin-link-row {
    grid-template-columns: 1fr;
  }

  .admin-table-head {
    display: none;
  }

  .admin-title-row h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 700px;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(7, 22, 38, 0.8) 0%, rgba(7, 22, 38, 0.52) 52%, rgba(7, 22, 38, 0.72) 100%),
      url("assets/hero-connectivity.png");
    background-position: 62% center;
  }

  .city-dot {
    display: none;
  }

  .city-london,
  .city-paris,
  .city-dubai,
  .city-tokyo {
    display: block;
  }

  .city-london {
    left: 61.5%;
    top: 52%;
  }

  .city-paris {
    left: 66%;
    top: 54%;
  }

  .city-dubai {
    left: 72%;
    top: 56%;
  }

  .city-tokyo {
    left: 78%;
    top: 51%;
  }

  .esim-chip-pulse {
    left: 68.32%;
    top: 40.45%;
  }

  .hero-metrics {
    margin: 32px 0 0;
  }

  .hero-row {
    min-height: 620px;
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero .lead {
    font-size: 1.14rem;
  }

  .hero-metrics strong {
    font-size: 2.55rem;
  }

  .section-heading h2,
  .planner-panel h2 {
    font-size: 3.15rem;
  }

  .section-heading.wide,
  .control-bar {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 575.98px) {
  .hero {
    min-height: 760px;
  }

  .hero-inner {
    padding-top: 82px;
  }

  .hero-row {
    min-height: 680px;
  }

  .city-dot {
    display: none;
  }

  .city-london,
  .city-dubai,
  .city-tokyo {
    display: block;
  }

  .city-london {
    left: 69%;
    top: 45%;
  }

  .city-dubai {
    left: 81%;
    top: 49%;
  }

  .city-tokyo {
    left: 92%;
    top: 43%;
  }

  .esim-chip-pulse {
    left: 88.52%;
    top: 39.3%;
  }

  .hero h1 {
    width: 350px;
    max-width: 100%;
    font-size: 1.92rem;
    line-height: 1.08;
  }

  .hero .lead {
    width: 350px;
    max-width: 100%;
    font-size: 1.02rem;
  }

  .hero-actions {
    width: 350px;
    max-width: 100%;
  }

  .hero-metrics strong {
    font-size: 1.9rem;
  }

  .section-heading h2,
  .planner-panel h2 {
    font-size: 2.35rem;
  }

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

  .hero-metrics,
  .stat-grid,
  .check-grid,
  .detail-grid,
  .source-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 62px 0;
  }

  .provider-head,
  .recommendation {
    grid-template-columns: 1fr;
  }

  .provider-head {
    display: grid;
  }

  .score-badge {
    width: 100%;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .city-dot::after,
  .esim-chip-pulse::after {
    animation: none;
  }
}
