:root {
  --ys-blue: #0023a0;
  --ys-blue-soft: #2456d3;
  --ys-bg: #f3f4f6;
  --ys-text: #111827;
  --ys-muted: #6b7280;
  --ys-border: #d1d5db;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, #e5f0ff 0, transparent 55%),
    radial-gradient(circle at top right, #ffe9f3 0, transparent 45%),
    #f3f4f6;
  color: var(--ys-text);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.1rem;
}

.flex {
  display: flex;
  align-items: center;
}

.between {
  justify-content: space-between;
}

/* ========== HEADER ========== */
.ys-header {
  border-bottom: 1px solid rgba(209, 213, 219, 0.5);
  background: linear-gradient(90deg, #ffffff 0%, #f4f6ff 45%, #ffffff 100%);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(12px);
}

.nav {
  height: 72px;
}

.nav-left-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-brand-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ys-blue);
}

.nav-brand-sub {
  font-size: 0.8rem;
  color: var(--ys-muted);
}

/* زر المنيو للموبايل - شكل دائري أنعم */
.nav-toggle {
  display: none;
  cursor: pointer;
  padding: 0.45rem;
  margin-left: auto;
  border-radius: 999px;
  background: #ffffff;
  box-shadow:
    0 2px 6px rgba(148, 163, 184, 0.6),
    0 0 0 1px rgba(229, 231, 235, 0.95);
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.1s ease;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: #1f2937;
  border-radius: 999px;
  margin: 3px 0;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.nav-toggle:hover {
  background: #eef2ff;
  box-shadow:
    0 3px 9px rgba(129, 140, 248, 0.55),
    0 0 0 1px rgba(199, 210, 254, 0.95);
  transform: translateY(-1px);
}

body.nav-open .nav-toggle {
  background: #1d4ed8;
  box-shadow:
    0 3px 10px rgba(37, 99, 235, 0.7),
    0 0 0 1px rgba(191, 219, 254, 0.95);
}

body.nav-open .nav-toggle span {
  background: #ffffff;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.nav-links a {
  color: var(--ys-text);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--ys-blue-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn-nav-primary {
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--ys-blue-soft);
  background: var(--ys-blue-soft);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    0 4px 12px rgba(37, 99, 235, 0.45),
    0 0 0 1px rgba(191, 219, 254, 0.6);
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.1s ease;
}

.btn-nav-secondary {
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--ys-border);
  background: #ffffff;
  color: var(--ys-text);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow:
    0 2px 6px rgba(148, 163, 184, 0.45),
    0 0 0 1px rgba(226, 232, 240, 0.9);
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.1s ease;
}

.btn-nav-primary:hover {
  background: #1d4ed8;
  box-shadow:
    0 6px 18px rgba(37, 99, 235, 0.6),
    0 0 0 1px rgba(191, 219, 254, 0.9);
  transform: translateY(-1px);
}

.btn-nav-secondary:hover {
  background: #f3f4ff;
  border-color: #c7d2fe;
  box-shadow:
    0 4px 10px rgba(148, 163, 184, 0.55),
    0 0 0 1px rgba(209, 213, 219, 0.9);
  transform: translateY(-1px);
}

.nav-divider {
  width: 1px;
  height: 18px;
  background: var(--ys-border);
}

.nav-select-box {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--ys-blue-soft);
  background: #ffffff;
  color: var(--ys-blue);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    0 2px 7px rgba(37, 99, 235, 0.35),
    0 0 0 1px rgba(219, 234, 254, 0.9);
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.1s ease;
}

.nav-select-arrow {
  font-size: 0.7rem;
  color: var(--ys-muted);
}

.nav-select-box:hover {
  background: #e5edff;
  transform: translateY(-1px);
  box-shadow:
    0 4px 12px rgba(37, 99, 235, 0.5),
    0 0 0 1px rgba(191, 219, 254, 1);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 150px;
  background: #ffffff;
  border: 1px solid var(--ys-border);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.18);
  padding: 0.4rem 0;
  display: none;
  z-index: 999;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  color: var(--ys-text);
  cursor: pointer;
}

.dropdown-item:hover {
  background: #e5edff;
  color: var(--ys-blue-soft);
}

/* Overlay للموبايل */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 19;
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* NAV – منيو جانبية حتى عرض 1024px */
@media (max-width: 1024px) {
  .nav {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .container {
    padding-inline: 0.9rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-right {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 270px;
    background: linear-gradient(180deg, #ffffff 0%, #eef2ff 60%, #ffffff 100%);
    box-shadow: -6px 0 18px rgba(15, 23, 42, 0.25);
    padding: 4.2rem 1.1rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1.1rem;
    transform: translateX(100%);
    transition: transform 0.2s ease-out;
    z-index: 21;
  }

  body.nav-open .nav-right {
    transform: translateX(0);
  }

  /* روابط Store / FAQs كأزرار خفيفة */
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    font-size: 0.9rem;
  }

  .nav-links a {
    padding: 0.45rem 0.7rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.85);
    box-shadow:
      0 1px 4px rgba(148, 163, 184, 0.35),
      0 0 0 1px rgba(229, 231, 235, 0.9);
  }

  .nav-links a:hover {
    background: #e5edff;
    color: var(--ys-blue-soft);
  }

  /* أزرار Login / Sign up / EN / USD كأزرار فل عرض */
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(209, 213, 219, 0.8);
  }

  .btn-nav-primary,
  .btn-nav-secondary,
  .nav-select-box {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.55rem 0.8rem;
    font-size: 0.88rem;
  }

  .btn-nav-secondary {
    background: #f9fafb;
  }

  .nav-select-box {
    background: #f9fafb;
    box-shadow:
      0 2px 7px rgba(148, 163, 184, 0.4),
      0 0 0 1px rgba(229, 231, 235, 0.95);
  }

  .nav-divider {
    display: none;
  }
}

/* ========== MAIN LAYOUT ========== */
main {
  padding: 2rem 0 3.5rem;
}

.hero-layout {
  margin-top: 1.5rem;
}

/* desktop grid */
@media (min-width: 960px) {
  .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    grid-auto-rows: auto;
    gap: 1.8rem;
  }

  .home-countries-section {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }

  .info-block {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
  }

  .steps-section {
    grid-column: 1 / 3;
  }
}

.page-header {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.page-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ys-blue);
  margin-bottom: 0.3rem;
}

.page-subtitle {
  font-size: 0.9rem;
  color: var(--ys-muted);
}

/* ========== SEARCH + TABS ========== */
.country-search-block {
  margin-top: 1rem;
}

.country-search-label {
  font-size: 0.9rem;
  color: var(--ys-muted);
  margin-bottom: 0.4rem;
  text-align: center;
}

.country-search-input-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.country-search-input {
  max-width: 380px;
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--ys-border);
  background: #ffffff;
  color: var(--ys-text);
  font-size: 0.95rem;
  outline: none;
  box-shadow:
    0 2px 8px rgba(148, 163, 184, 0.35),
    0 0 0 1px rgba(229, 231, 235, 0.9);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.country-search-input::placeholder {
  color: #9ca3af;
}

.country-search-input:focus {
  border-color: var(--ys-blue-soft);
  box-shadow:
    0 0 0 1px rgba(191, 219, 254, 1),
    0 0 0 4px rgba(59, 130, 246, 0.25);
}

.ys-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.ys-tabs {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 999px;
  background: #e5edff;
  border: 1px solid #c7d2fe;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(129, 140, 248, 0.25);
}

.ys-tab {
  border: none;
  background: transparent;
  color: var(--ys-blue);
  font-size: 0.85rem;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

.ys-tab-active {
  background: #ffffff;
  color: var(--ys-blue);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* ========== COUNTRIES GRID ========== */
.countries-section {
  margin-top: 0.5rem;
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.4rem 1.2rem 1.6rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow:
    0 14px 35px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(226, 232, 240, 0.9);
}

.home-countries-section {
  margin-top: 1.3rem;
}

.countries-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.8rem;
}

.countries-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ys-text);
}

.countries-count {
  font-size: 0.8rem;
  color: var(--ys-muted);
}

.countries-list-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.4rem;
  margin-bottom: 0.5rem;
}

/* grid responsive */
@media (max-width: 900px) {
  .countries-list-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .countries-list-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}

.country-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 46px;
  padding: 0 0.85rem;
  background: #f9fafb;
  border: 1px solid var(--ys-border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ys-text);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.1s ease,
    box-shadow 0.15s ease;
}

.country-pill-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.country-pill-left span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.country-pill-arrow {
  font-size: 0.9rem;
  color: var(--ys-muted);
  flex-shrink: 0;
}

.country-pill:hover {
  background: #eef2ff;
  border-color: var(--ys-blue-soft);
  color: var(--ys-blue-soft);
  transform: translateY(-1px);
  box-shadow:
    0 4px 10px rgba(79, 70, 229, 0.18),
    0 0 0 1px rgba(191, 219, 254, 0.9);
}

.country-pill:focus {
  outline: none;
  box-shadow:
    0 0 0 1px rgba(191, 219, 254, 1),
    0 0 0 4px rgba(59, 130, 246, 0.25);
  border-color: var(--ys-blue-soft);
}

.country-pill-active {
  background: #e5edff;
  border-color: var(--ys-blue-soft);
  color: var(--ys-blue);
  box-shadow:
    0 4px 10px rgba(37, 99, 235, 0.4),
    0 0 0 1px rgba(191, 219, 254, 1);
}

.country-flag {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.18);
}

.show-bundles-wrap {
  margin-top: 0.9rem;
}

.show-bundles-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.35rem 0.6rem;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--ys-border);
  background: transparent;
  color: var(--ys-blue-soft);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.show-bundles-btn:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.regions-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ys-text);
  margin-top: 1.4rem;
  margin-bottom: 0.5rem;
}

/* ========== INFO BLOCK ========== */
.info-block {
  background: radial-gradient(circle at top right, #eff6ff 0, #ffffff 45%);
  border-radius: 1.3rem;
  border: 1px solid rgba(209, 213, 219, 0.8);
  padding: 1.6rem 1.7rem;
  box-shadow:
    0 14px 35px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(226, 232, 240, 0.9);
  margin-top: 2rem;
}

.info-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ys-blue);
  margin-bottom: 0.7rem;
}

.info-text {
  font-size: 0.9rem;
  color: var(--ys-text);
}

.info-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--ys-text);
}

.info-list {
  list-style: disc;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: var(--ys-text);
}

.info-list li {
  margin-bottom: 0.3rem;
}

/* ========== STEPS ========== */
.steps-section {
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.steps-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ys-blue);
  margin-bottom: 0.5rem;
}

.steps-section-sub {
  font-size: 0.85rem;
  color: var(--ys-muted);
  margin-bottom: 1.3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.1rem;
}

.step-card {
  border-radius: 1rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid var(--ys-border);
  box-shadow: 0 6px 14px rgba(148, 163, 184, 0.25);
}

.step-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ys-muted);
  margin-bottom: 0.3rem;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--ys-blue);
}

.step-text {
  font-size: 0.8rem;
  color: var(--ys-text);
}

/* ========== COUNTRY PAGE HERO ========== */
.country-hero {
  margin-top: 1.8rem;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.country-hero-flag {
  width: 48px;
  height: 36px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
  object-fit: cover;
}

.country-hero-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ys-blue);
}

/* ========== COUNTRY INFO / BUNDLES ========== */
.country-info {
  background: #ffffff;
  border-radius: 1.2rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow:
    0 14px 35px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(226, 232, 240, 0.9);
  padding: 1.5rem 1.6rem 1.8rem;
}

.country-info-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--ys-text);
}

.country-info-sub {
  font-size: 0.88rem;
  color: var(--ys-muted);
  margin-bottom: 1.2rem;
}

/* BUNDLE CARDS */
.bundle-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.bundle-placeholder {
  font-size: 0.85rem;
  color: var(--ys-muted);
}

.bundle-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: #f9fafb;
  border: 1px solid var(--ys-border);
  box-shadow:
    0 6px 14px rgba(148, 163, 184, 0.25),
    0 0 0 1px rgba(229, 231, 235, 0.9);
}

.bundle-card-main {
  flex: 1 1 auto;
  min-width: 0;
}

.bundle-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ys-text);
  margin-bottom: 0.25rem;
}

.bundle-meta {
  font-size: 0.8rem;
  color: var(--ys-muted);
  margin-bottom: 0.45rem;
}

.bundle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.bundle-chip {
  font-size: 0.7rem;
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  background: #e5edff;
  color: var(--ys-blue-soft);
  border: 1px solid #c7d2fe;
}

.bundle-card-side {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.3rem;
  text-align: right;
}

.bundle-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ys-blue-soft);
}

.bundle-price-note {
  font-size: 0.7rem;
  color: var(--ys-muted);
}

.bundle-cta {
  margin-top: 0.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--ys-blue-soft);
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ys-blue-soft);
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.1s ease;
}

.bundle-cta:hover {
  background: #e5edff;
  color: var(--ys-blue);
  box-shadow: 0 3px 9px rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
}

/* ========== FOOTER ========== */
footer {
  border-top: 1px solid rgba(209, 213, 219, 0.7);
  padding: 1.5rem 0 2.2rem;
  font-size: 0.8rem;
  color: var(--ys-muted);
  background: radial-gradient(circle at top center, #e5f0ff 0, #ffffff 55%);
  margin-top: 1rem;
  box-shadow: 0 -8px 22px rgba(15, 23, 42, 0.08);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ys-blue);
}

.footer-link {
  display: block;
  font-size: 0.8rem;
  color: var(--ys-text);
  margin-bottom: 0.3rem;
}

.footer-link:hover {
  color: var(--ys-blue-soft);
}

.footer-text {
  font-size: 0.8rem;
  color: var(--ys-text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.78rem;
  border-top: 1px solid rgba(209, 213, 219, 0.7);
  padding-top: 0.7rem;
  margin-top: 0.4rem;
}

/* ========== MOBILE TUNING (أهم شيء هون) ========== */
@media (max-width: 600px) {
  body {
    background: #f3f4f6;
  }

  .container {
    padding-inline: 1rem;
  }

  .nav {
    height: 60px;
  }

  .nav-logo-img {
    height: 40px;
  }

  .nav-left-logo {
    gap: 0.5rem;
  }

  .nav-brand-title {
    font-size: 0.95rem;
  }

  .nav-brand-sub {
    display: none; /* نخفي سطر الوصف بالموبايل لتخفيف الزحمة */
  }

  main {
    padding-top: 1.2rem;
    padding-bottom: 2.4rem;
  }

  .hero-layout {
    margin-top: 0.6rem;
  }

  .country-search-block {
    margin-top: 0.4rem;
  }

  .country-search-input {
    max-width: 100%;
    font-size: 0.92rem;
    padding: 0.65rem 1rem;
  }

  .ys-tabs {
    margin-bottom: 0.9rem;
  }

  .countries-section {
    margin-top: 0.9rem;
    padding: 1.1rem 1rem 1.3rem;
    border-radius: 1rem;
  }

  .countries-title-row {
    flex-direction: row;
    align-items: center;
  }

  .countries-title {
    font-size: 1rem;
  }

  .countries-count {
    font-size: 0.78rem;
  }

  .country-pill {
    height: 50px;
    font-size: 0.94rem;
    padding-inline: 0.95rem;
  }

  .country-flag {
    width: 24px;
    height: 24px;
  }

  .info-block {
    margin-top: 1.3rem;
    padding: 1.3rem 1.1rem 1.4rem;
    box-shadow: 0 8px 20px rgba(148, 163, 184, 0.22);
  }

  .info-title {
    font-size: 1.05rem;
    text-align: left;
  }

  .steps-section {
    margin-top: 2rem;
    margin-bottom: 2.4rem;
  }

  .steps-section-title {
    font-size: 1.05rem;
  }

  .step-card {
    padding: 0.9rem;
  }

  .country-hero {
    margin-top: 1.4rem;
    margin-bottom: 1rem;
  }

  .country-hero-title {
    font-size: 1.25rem;
  }

  .bundle-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .bundle-card-side {
    align-items: flex-start;
    text-align: left;
  }

  footer .container {
    padding-inline: 1rem;
  }
}
