/* Zenora Esim — Numero-inspired catalog UI, brand navy + gold */
:root {
  /* Zenora — Viva Magenta #BD3455 */
  --primary: #BD3455;
  --primary-dark: #8E1F3C;
  --primary-mid: #D24A68;
  --primary-light: #F9E8ED;
  --accent: #E85A7A;
  --accent-soft: #FCEEF2;
  --accent-gold: #C4A962;
  --promo: #E85A7A;
  --promo-soft: #FCEEF2;
  --text: #1A1520;
  --muted: #6B6470;
  --muted-light: #9A93A0;
  --bg: #FBF6F8;
  --card: #ffffff;
  --border: #EBD6DC;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow: 0 4px 20px rgba(189, 52, 85, 0.08);
  --shadow-hover: 0 12px 40px rgba(189, 52, 85, 0.14);
  --max: 1180px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

#site-header img.brand-wordmark,
#site-header img.brand-logo,
#site-footer img.brand-logo,
#site-footer img.brand-wordmark {
  width: auto;
  height: 22px;
  max-width: 160px;
  max-height: 28px;
  object-fit: contain;
}

/* Promo bar */
.promo-bar {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 45%, var(--accent) 100%);
  color: #fff;
  font-size: 0.8rem;
}

.promo-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  text-align: center;
}

.promo-badge {
  background: #c93d1a;
  color: #fff;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.promo-bar a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

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

.site-nav {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
  text-decoration: none;
}

.nav-link.is-active {
  color: var(--primary);
  background: var(--accent-soft);
  font-weight: 600;
}

.nav-link--cta {
  background: var(--primary);
  color: #fff !important;
}

.nav-link--cta:hover {
  background: var(--primary-mid);
}

.header-lang {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0.35rem;
  margin-right: 0;
}

.lang-switch {
  display: inline-flex;
  border: 2px solid var(--primary);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 1px 4px rgba(27, 37, 89, 0.12);
}

.lang-switch-btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  background: var(--card);
  white-space: nowrap;
}

.lang-switch-btn.is-active {
  background: var(--primary);
  color: #fff;
}

.lang-switch-btn:hover {
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.footer-lang .lang-switch {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.footer-lang .lang-switch-btn {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.footer-lang .lang-switch-btn.is-active {
  background: #fff;
  color: var(--primary);
}

@media (max-width: 768px) {
  .header-lang {
    margin-right: 0.15rem;
  }

  .lang-switch-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc(var(--promo-bar-h, 40px) + var(--header-h, 72px));
  z-index: 185;
  background: rgba(15, 22, 53, 0.5);
  backdrop-filter: blur(2px);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

.nav-backdrop:not([hidden]) {
  display: block;
}

/* Catalog page (Numero-style) */
.catalog-page {
  padding-bottom: 4rem;
}

.catalog-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  min-height: clamp(340px, 52vh, 520px);
  padding: 4rem 1.25rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: var(--text);
  background-color: #F7F5F6;
  background-image: url("/assets/zenora-hero-signal.png");
  background-size: cover;
  background-position: right center;
}

.catalog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(247, 245, 246, 0.97) 0%,
    rgba(247, 245, 246, 0.85) 40%,
    rgba(247, 245, 246, 0.25) 100%
  );
  pointer-events: none;
}

.catalog-hero::after {
  content: none;
}

.catalog-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.catalog-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.12;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.catalog-hero p {
  margin: 0 0 1.25rem;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.05rem;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.catalog-hero .hero-cta-row {
  margin: 0;
  max-width: none;
}

.catalog-hero p a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.65);
}

.catalog-hero p a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.hero-links {
  margin: 0.85rem auto 0;
  max-width: 540px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-links a {
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-links a:hover {
  color: #fff;
  opacity: 0.92;
}

.catalog-hero .trust-line {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.catalog-hero .trust-line strong {
  color: var(--primary);
}

.catalog-hero .btn-primary {
  background: var(--primary) !important;
  color: #fff !important;
  box-shadow: none;
}

.catalog-hero .btn-primary:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}

.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--bg);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}

.trust-line strong {
  color: var(--primary);
}

.catalog-toolbar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
}

.catalog-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.catalog-tab {
  flex: 1;
  min-width: 100px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  font-family: inherit;
}

.catalog-tab:hover {
  border-color: var(--accent);
  color: var(--primary);
}

.catalog-tab.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.search-wrap {
  position: relative;
}

.search-wrap svg {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted-light);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.catalog-status {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.5rem;
}

.catalog-status--error {
  color: #dc2626;
}

.catalog-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 0;
}

.catalog-section-title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.catalog-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.catalog-section {
  margin-bottom: 2.5rem;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .country-grid {
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  }
}

.country-card--regional {
  border-color: rgba(27, 37, 89, 0.2);
  background: linear-gradient(180deg, #fff 0%, #f6f8fc 100%);
}

.country-card-badge {
  display: inline-block;
  margin: 0.15rem 0 0;
  padding: 0.15rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 999px;
}

.country-card-coverage {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 0.75rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(91, 108, 255, 0.35);
}

.country-card-flag {
  position: relative;
  width: 72px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
}

.country-card-flag .country-flag-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.country-card-flag:has(.country-flag-img) .country-flag-emoji {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.country-flag-emoji {
  font-size: 2.25rem;
  line-height: 1;
}

.country-card-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

a.adventure-card {
  text-decoration: none;
  color: inherit;
}

.adventures-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.adventures-toolbar .search-wrap {
  flex: 1 1 220px;
  min-width: min(100%, 220px);
}

.adventures-filter-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.adventures-filter {
  font: inherit;
  font-size: 0.9rem;
  padding: 0.65rem 0.85rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  min-width: 10rem;
}

.adventures-count {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.country-card-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--promo);
}

.country-card-meta {
  font-size: 0.72rem;
  color: var(--muted-light);
  margin-top: 0.2rem;
}

.country-card-guide {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.4rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.country-card-guide:hover {
  color: var(--primary-mid);
}

.hero-answer {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 40rem;
  margin: 0.75rem auto 0;
  line-height: 1.5;
}

.btn-load-more {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 1.5rem auto 0;
  padding: 0.85rem 1.5rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius-pill);
  background: var(--card);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.btn-load-more:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

/* Plan modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(15, 22, 53, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.modal-overlay[hidden] {
  display: none !important;
}

@media (min-width: 640px) {
  .modal-overlay {
    align-items: center;
    padding: 1.5rem;
  }
}

.modal-sheet {
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  background: var(--card);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-hover);
}

@media (min-width: 640px) {
  .modal-sheet {
    border-radius: var(--radius-lg);
  }
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

.modal-head h2 {
  margin: 0;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--primary);
}

.modal-head .country-card-flag {
  width: 48px;
  height: 36px;
  margin: 0;
}

.modal-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--bg);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.modal-coverage {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  max-height: min(50vh, 320px);
  overflow-y: auto;
  overflow-x: hidden;
  flex-shrink: 0;
  -webkit-overflow-scrolling: touch;
}

.modal-coverage[hidden] {
  display: none !important;
}

.modal-body {
  padding: 0.75rem 1.25rem 1.5rem;
  overflow-y: auto;
}

.plan-coverage-details {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.plan-coverage-summary {
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  list-style: none;
}

.plan-coverage-summary::-webkit-details-marker {
  display: none;
}

.plan-coverage-summary::before {
  content: '▾ ';
  display: inline-block;
  transition: transform 0.15s;
}

.plan-coverage-details:not([open]) .plan-coverage-summary::before {
  transform: rotate(-90deg);
}

.plan-coverage-details .coverage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 0.5rem;
  max-height: none;
  overflow: visible;
}

.coverage-tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.55rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  line-height: 1.3;
}

.plan-row {
  padding: 0;
  border-bottom: none;
}

.plan-row-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
}

.plan-row-info {
  flex: 1;
  min-width: 0;
}

.plan-row-info h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.plan-row-info p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.plan-row-action {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0;
  flex-shrink: 0;
}

.plan-row-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.btn-sm {
  padding: 0.42rem 0.85rem;
  font-size: 0.82rem;
  min-height: 2rem;
}

.plan-row-days {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.days-stepper-label {
  font-weight: 500;
}

.days-stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--card);
}

.days-stepper input {
  width: 2.5rem;
  margin: 0;
  padding: 0.3rem 0.15rem;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  -moz-appearance: textfield;
  appearance: textfield;
}

.days-stepper input::-webkit-outer-spin-button,
.days-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.days-stepper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  padding: 0;
  border: none;
  background: var(--bg);
  color: var(--text);
  font-size: 0.55rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}

.days-stepper-btn:hover {
  background: var(--border);
}

.days-stepper-btn:active {
  background: var(--primary);
  color: #fff;
}

.plans-section-divider {
  margin-top: 1rem;
  padding: 0.85rem 0 0.35rem;
  border-top: 2px solid var(--border);
}

.plans-section-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  box-shadow: 0 6px 20px rgba(27, 37, 89, 0.25);
}

.btn-primary:hover {
  color: #fff;
}

.btn-secondary {
  background: var(--card);
  color: var(--primary);
  border: 2px solid var(--border);
}

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

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Content pages */
.page-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.page-hero-simple {
  text-align: center;
  padding: 2.5rem 1.25rem 1.5rem;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.page-hero-simple h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: var(--primary);
}

.page-hero-simple p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--muted);
}

.content-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.content-card h2 {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p,
.content-card li {
  font-size: 0.95rem;
  line-height: 1.65;
}

.content-card ul {
  padding-left: 1.2rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--muted);
}

/* Checkout */
.checkout-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.checkout-summary {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
}

.checkout-summary strong {
  font-size: 1.5rem;
}

.checkout-suggestions {
  margin-top: 2rem;
  grid-column: 1 / -1;
}

.checkout-suggestions-block + .checkout-suggestions-block {
  margin-top: 1.75rem;
}

.checkout-suggestions-title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.checkout-suggestions-hint {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.45;
}

.checkout-suggestions-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.checkout-suggestion-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.checkout-suggestion-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(27, 37, 89, 0.08);
}

.checkout-suggestion-label {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.3;
}

.checkout-suggestion-meta {
  font-size: 0.8125rem;
  color: var(--muted);
}

.checkout-suggestion-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.25rem;
}

.checkout-suggestion-action {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}

.payment-banner {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--promo-soft);
  border: 1px solid #ffc9b8;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: #9a3412;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-check {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--border);
  color: var(--primary);
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Partner program page */
.partner-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 45%, #3d4faf 100%);
  color: #fff;
  padding: 3.5rem 1.25rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partner-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.partner-hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.partner-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.partner-hero p {
  margin: 0 auto 1.75rem;
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 540px;
  line-height: 1.55;
}

.partner-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.partner-hero .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.partner-hero .btn-primary:hover {
  color: var(--primary-dark);
}

.partner-hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.partner-hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.partner-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.partner-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
}

.partner-stat span {
  font-size: 0.8rem;
  opacity: 0.8;
}

.partner-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.partner-section-title {
  text-align: center;
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.partner-section-desc {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
}

.partner-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.partner-benefit {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.partner-benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.partner-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.partner-benefit h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--primary);
}

.partner-benefit p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.partner-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  counter-reset: partner-step;
}

.partner-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.partner-step::before {
  counter-increment: partner-step;
  content: counter(partner-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.partner-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.partner-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.partner-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.partner-tag {
  padding: 0.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.partner-cta-band {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 640px;
  margin: 0 auto;
}

.partner-cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  color: var(--primary);
}

.partner-cta-band p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.partner-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.partner-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  background: var(--primary-light);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
}

.partner-portal-link:hover {
  background: var(--accent-soft);
  text-decoration: none;
}

.section-alt {
  background: var(--bg-grouped);
}

/* Contact page */
.contact-layout {
  display: grid;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1.35fr;
    align-items: start;
  }
}

.contact-aside {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.contact-aside h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.contact-aside p {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  opacity: 0.92;
  line-height: 1.55;
}

.contact-aside a {
  color: #fff;
  font-weight: 600;
}

.contact-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-links li {
  margin-bottom: 0.65rem;
}

.contact-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  text-decoration: none;
}

.contact-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.contact-form-card > p {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form .form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 520px) {
  .contact-form .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form textarea {
  width: 100%;
  min-height: 140px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--card);
}

.contact-success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.contact-form .hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* How it works page */
.how-hero {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 50%, #4a5fc9 100%);
  color: #fff;
  padding: 3.5rem 1.25rem 4rem;
  text-align: center;
}

.how-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.how-hero p {
  margin: 0 auto 1.5rem;
  max-width: 520px;
  font-size: 1.1rem;
  opacity: 0.92;
}

.how-hero .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.how-hero .btn-primary:hover {
  color: var(--primary-dark);
}

.how-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.how-section-title {
  text-align: center;
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
}

.how-section-desc {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 480px;
  color: var(--muted);
  font-size: 0.95rem;
}

.how-steps {
  display: grid;
  gap: 1.25rem;
  position: relative;
}

@media (min-width: 768px) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .how-steps::before {
    content: "";
    position: absolute;
    top: 52px;
    left: 18%;
    right: 18%;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
    z-index: 0;
  }
}

.how-step-card {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.how-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.how-step-num {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(27, 37, 89, 0.25);
}

.how-step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--primary);
}

.how-step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.how-step-card a {
  font-weight: 600;
}

.how-devices {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}

.how-device-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.how-device-tab {
  flex: 1;
  padding: 1rem;
  border: none;
  background: var(--bg);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.how-device-tab.is-active {
  background: var(--card);
  color: var(--primary);
  box-shadow: inset 0 -2px 0 var(--primary);
}

.how-device-panel {
  padding: 1.5rem 1.75rem;
  display: none;
}

.how-device-panel.is-active {
  display: block;
}

.how-device-panel ol {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text);
}

.how-device-panel li {
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.how-device-panel li strong {
  color: var(--primary);
}

.how-tips {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .how-tips {
    grid-template-columns: repeat(2, 1fr);
  }
}

.how-tip {
  display: flex;
  gap: 0.85rem;
  padding: 1.15rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.how-tip-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.how-tip h4 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  color: var(--primary);
}

.how-tip p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.how-cta {
  text-align: center;
  padding: 2.5rem 1.25rem 3.5rem;
}

.how-cta .btn {
  margin: 0 0.35rem;
}

/* Blog */
.blog-hero {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 55%, #4a5fc9 100%);
  color: #fff;
  padding: 3rem 1.25rem 3.5rem;
  text-align: center;
}

.blog-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
}

.blog-hero p {
  margin: 0 auto;
  max-width: 560px;
  opacity: 0.92;
  font-size: 1.05rem;
}

.blog-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

.blog-section-label {
  margin: 2rem 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.blog-main .blog-section-label:first-of-type {
  margin-top: 0;
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 560px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid--guides {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(27, 37, 89, 0.2);
}

.blog-card-cover {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 168px;
  max-height: 220px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-soft));
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
}

.blog-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-cover img {
  transform: scale(1.04);
}

.blog-card-cover--guide {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  min-height: 168px;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-mid) 55%, #5a6fd6 100%);
  color: #fff;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  line-height: 1;
}

.blog-card-cover:not(.blog-card-cover--guide)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 22, 53, 0.12) 100%);
  pointer-events: none;
}

.blog-card-cover--guide span {
  position: relative;
  z-index: 1;
}

.blog-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.blog-card-links a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 0.15rem 0;
}

.blog-card-links a:hover {
  text-decoration: underline;
}

.blog-card-links .blog-card-sep {
  color: var(--muted-light);
  font-weight: 400;
  user-select: none;
}

.blog-hub {
  margin: 2.5rem 0 0;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.blog-hub-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.blog-hub-grid a {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  text-decoration: none;
}

.blog-hub-grid a:hover {
  background: var(--primary-light);
  text-decoration: none;
}

.blog-faq {
  margin-top: 2.5rem;
  max-width: 720px;
}

.blog-faq .faq-list {
  margin: 0;
}

.blog-article-cover {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
}

.blog-article-cover img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: block;
}

.blog-internal-nav {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.blog-internal-nav h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--primary);
}

.blog-internal-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.blog-internal-nav a {
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-card-body {
  padding: 1.2rem 1.35rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 0;
}

.blog-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--promo);
  background: rgba(232, 93, 44, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
}

.blog-card-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
}

.blog-card-title a {
  color: var(--primary);
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--primary-mid);
  text-decoration: underline;
}

.blog-card-excerpt {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.blog-card-meta {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-light);
}

.blog-article-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
}

.blog-article-header {
  margin-bottom: 2rem;
}

.blog-article-header h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-article-meta .blog-tag {
  padding: 0.2rem 0.65rem;
  background: var(--accent-soft);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.75rem;
}

.blog-prose {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}

.blog-prose h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.2rem;
  color: var(--primary);
}

.blog-prose h2:first-child {
  margin-top: 0;
}

.blog-prose p,
.blog-prose li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.blog-prose ul,
.blog-prose ol {
  padding-left: 1.35rem;
  margin: 0 0 1rem;
}

.blog-prose a {
  font-weight: 600;
}

.blog-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.25rem;
  font-size: 0.92rem;
}

.blog-prose th,
.blog-prose td {
  border: 1px solid var(--border, #e2e8f0);
  padding: 0.55rem 0.75rem;
  text-align: left;
}

.blog-prose th {
  background: var(--bg-muted, #f1f5f9);
  font-weight: 600;
}

.seo-landing-prose {
  max-width: 720px;
  margin: 2rem auto 3rem;
  padding: 1.5rem 1.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.seo-landing-prose h2 {
  margin: 1.25rem 0 0.65rem;
  font-size: 1.15rem;
  color: var(--primary);
}

.seo-landing-prose h2:first-child {
  margin-top: 0;
}

.seo-landing-prose p,
.seo-landing-prose li {
  line-height: 1.7;
  color: var(--text);
}

.blog-cta-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
}

.blog-cta-box h3 {
  margin: 0 0 0.5rem;
  color: #fff;
}

.blog-cta-box p {
  margin: 0 0 1rem;
  opacity: 0.9;
  font-size: 0.95rem;
}

.blog-cta-box .btn-primary {
  background: #fff;
  color: var(--primary);
}

.blog-related {
  margin-top: 2.5rem;
}

.blog-related h2 {
  font-size: 1.15rem;
  color: var(--primary);
  margin: 0 0 1rem;
}

.blog-related-list {
  display: grid;
  gap: 0.65rem;
}

.blog-related-list a {
  display: block;
  padding: 0.85rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
  color: var(--primary);
}

.blog-related-list a:hover {
  background: var(--primary-light);
}

/* Features / steps (partner, home extras) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.feature-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.feature-tile h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.feature-tile p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3rem;
  padding: 3rem 1.25rem 1.5rem;
}

.site-footer-inner {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.site-footer .brand {
  color: #fff;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  opacity: 0.75;
  max-width: 260px;
}

.footer-col-title,
.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

.footer-col-sub {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}

.footer-popular {
  margin-bottom: 0.85rem !important;
  padding-bottom: 0.75rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-popular a {
  font-weight: 600;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-col li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.65;
}

.footer-bottom a {
  color: #fff;
}

/* Legal legacy */
.legal-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  padding: 2.5rem 1.25rem;
  text-align: center;
}

.legal-header h1 {
  margin: 0 0 0.25rem;
  font-size: 1.75rem;
}

.legal-main {
  max-width: 720px;
  margin: -1rem auto 3rem;
  padding: 0 1.25rem;
}

.legal-article {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.empty-state {
  text-align: center;
  color: var(--muted);
  padding: 2rem;
  grid-column: 1 / -1;
}

.store-badge img {
  height: 48px;
  width: auto;
}

.hero-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Desktop — menu në të njëjtin rresht, djathtas */
@media (min-width: 993px) {
  .site-nav {
    position: static;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    width: auto;
    flex: 1;
    margin-left: auto;
  }

  .site-nav ul {
    flex-wrap: nowrap;
    gap: 0.15rem;
  }

  .nav-link {
    padding: 0.45rem 0.75rem;
    font-size: 0.875rem;
    white-space: nowrap;
  }
}

/* Tablet + mobile — hamburger nav */
@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .site-header-inner {
    gap: 0.5rem;
  }

  .header-lang {
    margin-left: 0;
  }

  .site-header-inner .site-nav {
    margin-left: 0;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header {
    position: sticky;
    z-index: 200;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: auto;
    width: min(300px, 86vw);
    z-index: 195;
    flex: none;
    display: flex;
    flex-direction: column;
    background: var(--card);
    border-right: 1px solid var(--border);
    padding: calc(var(--header-h) + var(--promo-bar-h, 40px) + 0.5rem) 0.75rem 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, visibility 0.28s ease;
    box-shadow: 8px 0 32px rgba(15, 22, 53, 0.15);
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius);
  }

  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .promo-bar {
    font-size: 0.72rem;
  }

  .promo-bar-inner {
    padding: 0.45rem 0.85rem;
    gap: 0.35rem 0.65rem;
  }

  .site-header-inner {
    padding: 0 max(0.85rem, env(safe-area-inset-right)) 0 max(0.85rem, env(safe-area-inset-left));
  }

  .modal-sheet {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .catalog-hero {
    min-height: clamp(300px, 46vh, 440px);
    padding: 2.5rem 0.85rem 2rem;
    background-position: center center;
  }

  .catalog-hero p {
    font-size: 0.95rem;
  }

  .trust-line {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .catalog-toolbar,
  .catalog-body,
  .page-shell,
  .blog-main,
  .blog-article-wrap,
  .partner-section,
  .how-section {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .catalog-toolbar {
    padding-top: 1rem;
  }

  .catalog-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -0.15rem;
    margin-right: -0.15rem;
    padding-bottom: 0.25rem;
  }

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

  .catalog-tab {
    flex: 0 0 auto;
    min-width: auto;
    white-space: nowrap;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  .search-input {
    font-size: 16px;
    padding: 0.85rem 0.85rem 0.85rem 2.75rem;
  }

  .country-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .country-card {
    padding: 1rem 0.5rem 0.85rem;
  }

  .country-card-flag {
    width: 56px;
    height: 42px;
  }

  .plan-row-action {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .plan-row-action .btn {
    width: auto;
    flex-shrink: 0;
  }

  .featured-plans-section {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .country-landing .catalog-hero {
    min-height: auto;
    padding: 2.5rem 1rem 2rem;
  }

  .country-landing .catalog-hero h1 {
    font-size: 1.45rem;
  }

  .country-landing .hero-cta-row .btn-lg {
    padding: 0.7rem 1.25rem;
    font-size: 0.92rem;
  }

  .content-card,
  .blog-prose,
  .legal-article,
  .seo-landing-prose {
    padding: 1.25rem 1rem;
  }

  .seo-landing-prose {
    margin-left: 0.85rem;
    margin-right: 0.85rem;
  }

  .partner-hero,
  .how-hero,
  .blog-hero {
    padding: 2.25rem 0.85rem 2.5rem;
  }

  .partner-hero-actions .btn-lg,
  .how-hero .btn-lg {
    width: 100%;
    max-width: 320px;
  }

  .partner-benefits,
  .partner-steps {
    grid-template-columns: 1fr;
  }

  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .site-footer {
    padding: 2.25rem max(0.85rem, env(safe-area-inset-right)) max(1.25rem, env(safe-area-inset-bottom)) max(0.85rem, env(safe-area-inset-left));
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    font-size: 0.85rem;
  }

  .blog-hub-grid {
    grid-template-columns: 1fr;
  }

  .blog-internal-nav ul {
    flex-direction: column;
    gap: 0.35rem;
  }

  .payment-banner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .brand span {
    display: none;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .catalog-section-title {
    font-size: 1rem;
    flex-wrap: wrap;
  }

  .catalog-section-title::after {
    display: none;
  }

  .modal-head {
    padding: 1rem 1rem 0.65rem;
  }

  .modal-body {
    padding: 0.65rem 1rem 1.25rem;
  }

  .partner-stats {
    gap: 1rem 1.25rem;
  }

  .partner-stat strong {
    font-size: 1.15rem;
  }

  .conversion-float-text {
    display: none;
  }
}

.featured-dest-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 1rem;
}

.featured-dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.featured-dest-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.featured-dest-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(27, 37, 89, 0.08);
  color: inherit;
}

.featured-dest-card strong {
  font-size: 0.95rem;
  color: var(--primary);
}

.featured-dest-card span:last-child {
  font-size: 0.78rem;
  color: var(--muted);
}

.featured-dest-flag {
  font-size: 1.35rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .featured-dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .featured-dest-grid {
    grid-template-columns: 1fr;
  }
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.75rem;
}

.featured-plans-section {
  margin-top: 0;
  padding: 0 1rem 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.featured-plans-section .catalog-section-title {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.featured-plans-sub {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.featured-plans-grid {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 560px;
  margin: 0 auto;
}

.featured-plans-grid .featured-plan-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  background: var(--card);
  box-shadow: 0 1px 4px rgba(15, 22, 53, 0.06);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.featured-plans-grid .featured-plan-card:hover {
  border-color: var(--primary-mid, #3d4f9f);
  box-shadow: 0 2px 8px rgba(27, 37, 89, 0.1);
}

.featured-plans-grid .plan-row-main {
  padding: 0;
}

.roaming-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  max-width: 560px;
  margin: 0 auto 1.25rem;
}

.roaming-compare-col {
  border-radius: var(--radius);
  padding: 1rem;
  border: 2px solid var(--border);
}

.roaming-compare-col--bad {
  background: #fff5f5;
  border-color: #fecaca;
}

.roaming-compare-col--good {
  background: #f0fdf4;
  border-color: #86efac;
}

.roaming-compare-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.roaming-compare-col p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.checkout-trust span {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.65rem;
}

#payment-step[hidden] {
  display: none !important;
}

.checkout-card-hint {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

#stripe-embedded-checkout {
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.conversion-floats {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.support-float {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.support-float:hover {
  color: #fff;
  filter: brightness(1.08);
}

.whatsapp-float {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.whatsapp-float:hover {
  color: #fff;
  filter: brightness(1.05);
}

.footer-app {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-app-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.store-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.store-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  background: var(--card);
}

.store-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.store-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 600px) {
  .roaming-compare {
    grid-template-columns: 1fr;
  }
}

.embed-block {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.embed-preview {
  margin: 1rem 0;
  padding: 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}

.embed-code {
  width: 100%;
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  resize: vertical;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.compare-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.compare-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(27, 37, 89, 0.08);
  color: inherit;
}

.compare-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.compare-card h2 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary);
}

.compare-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
}

.compare-card-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.5rem;
}

.compare-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.85rem;
  text-align: left;
}

.compare-table th {
  background: var(--bg-grouped, var(--bg));
  font-weight: 700;
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--muted);
}

.newsletter-section {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding: 0 1.25rem 2rem;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #BD3455 0%, #2d3a7c 100%);
  color: #fff;
}

.newsletter-inner h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: #fff;
}

.newsletter-inner p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 0.65rem 0.85rem;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
}

.newsletter-success {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: #86efac;
}

.newsletter-fine {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  opacity: 0.75;
}

.newsletter-fine a {
  color: #93c5fd;
}

@media (max-width: 768px) {
  .newsletter-inner {
    grid-template-columns: 1fr;
  }
}

.exit-intent-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.exit-intent-overlay[hidden] {
  display: none;
}

.exit-intent-sheet {
  position: relative;
  max-width: 420px;
  width: 100%;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.exit-intent-sheet h2 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  color: var(--primary);
}

.exit-intent-sheet > p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.exit-intent-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.exit-intent-form input[type="email"] {
  flex: 1;
  min-width: 160px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

.exit-intent-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: none;
  background: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.exit-intent-alt {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.success-review-box {
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  text-align: center;
}

.success-review-box p {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Country ad landing pages (Facebook / SEO) */
.country-landing .catalog-hero-flag {
  display: block;
  font-size: 2.75rem;
  line-height: 1;
  margin-bottom: 0.65rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.country-landing .hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.country-landing .landing-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.country-landing .landing-section-title {
  text-align: center;
  margin: 0 0 0.45rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
}

.country-landing .landing-section-desc {
  text-align: center;
  margin: 0 auto 1.75rem;
  max-width: 520px;
  color: var(--muted);
  font-size: 0.95rem;
}

.country-landing .landing-reviews {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.country-landing .landing-review {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
}

.country-landing .landing-review-stars {
  display: block;
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.country-landing .seo-landing-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.country-landing .seo-landing-prose th,
.country-landing .seo-landing-prose td {
  border: 1px solid var(--border);
  padding: 0.55rem 0.75rem;
  text-align: left;
}

.country-landing .seo-landing-prose th {
  background: var(--bg-muted, #f1f5f9);
  font-weight: 600;
}

.country-landing .landing-cta-box {
  max-width: 640px;
  margin: 0 auto 3rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: var(--radius-lg);
  color: #fff;
}

.country-landing .landing-cta-box h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: #fff;
}

.country-landing .landing-cta-box p {
  margin: 0 0 1rem;
  opacity: 0.92;
  font-size: 0.95rem;
}

.country-landing .landing-cta-box .btn-primary {
  background: #fff;
  color: var(--primary);
}

/* Modal plan list */
.modal-body .plan-row {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.modal-body .plan-row + .plan-row {
  margin-top: 0.35rem;
}

.modal-body .plans-section-divider {
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  margin-bottom: 0.5rem;
}

.modal-body .plan-row:last-child {
  border-bottom: none;
}

.modal-body .featured-plan-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
