/* ── DESIGN TOKENS ── */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;   --space-20: 5rem;  --space-24: 6rem;

  --radius-sm: 0.375rem; --radius-md: 0.5rem;
  --radius-lg: 0.75rem;  --radius-xl: 1rem; --radius-full: 9999px;
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Dark palette — deep noir with teal accent */
  --color-bg:             #0e0d0c;
  --color-surface:        #141312;
  --color-surface-2:      #1a1917;
  --color-surface-offset: #201f1d;
  --color-surface-dynamic:#2a2826;
  --color-divider:        #2e2c2a;
  --color-border:         #3a3835;
  --color-text:           #e8e6e2;
  --color-text-muted:     #8a8880;
  --color-text-faint:     #52504e;
  --color-text-inverse:   #0e0d0c;
  --color-primary:        #5ab5be;
  --color-primary-hover:  #3d9ea8;
  --color-primary-active: #2a7a84;
  --color-primary-highlight: #1e3535;
  --color-gold:           #c8955a;
  --color-gold-muted:     #8a6035;
  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 16px 48px oklch(0 0 0 / 0.5);

  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--space-16); -webkit-font-smoothing: antialiased; }
body { min-height: 100dvh; font-family: var(--font-body); font-size: var(--text-base); color: var(--color-text); background: var(--color-bg); line-height: 1.6; }
img, video { display: block; max-width: 100%; height: auto; }
ul[role="list"] { list-style: none; }
input, button, select { font: inherit; color: inherit; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }
::selection { background: oklch(from var(--color-primary) l c h / 0.25); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
a, button, [role="button"] { transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition); }

/* ── LAYOUT ── */
.container { max-width: var(--content-default); margin-inline: auto; padding-inline: var(--space-5); }
.container--wide { max-width: var(--content-wide); margin-inline: auto; padding-inline: var(--space-5); }
section { padding-block: clamp(var(--space-12), 8vw, var(--space-24)); }

/* ── SCROLL REVEAL ── */
.fade-in { opacity: 1; }
@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
  @keyframes reveal-fade { to { opacity: 1; } }
}

/* ── NAVIGATION ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.06);
  transition: box-shadow var(--transition);
}
.nav--scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: var(--space-4);
}
.nav__logo {
  display: flex; align-items: center; gap: var(--space-2);
  text-decoration: none; color: var(--color-text);
}
.nav__logo-text { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 500; letter-spacing: 0.02em; }
.nav__logo-text span { color: var(--color-primary); }
.nav__links {
  display: flex; align-items: center; gap: var(--space-6);
  list-style: none;
}
.nav__links a {
  text-decoration: none; color: var(--color-text-muted);
  font-size: var(--text-sm); font-weight: 400; letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--color-text); }
.nav__links a.active { color: var(--color-primary); }
.nav__cta {
  display: flex; align-items: center; gap: var(--space-3);
}
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-5); border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 500; text-decoration: none;
  white-space: nowrap; cursor: pointer; border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn-primary { background: var(--color-primary); color: var(--color-text-inverse); }
.btn-primary:hover { background: var(--color-primary-hover); box-shadow: 0 0 20px oklch(from var(--color-primary) l c h / 0.3); }
.btn-ghost { background: transparent; color: var(--color-text-muted); border: 1px solid oklch(from var(--color-text) l c h / 0.15); }
.btn-ghost:hover { color: var(--color-text); border-color: oklch(from var(--color-text) l c h / 0.3); }
.nav__mobile-toggle { display: none; padding: var(--space-2); color: var(--color-text); }
.lang-switcher {
  display: flex; align-items: center; gap: var(--space-1);
  font-size: var(--text-xs); color: var(--color-text-muted);
}
.lang-switcher button { padding: var(--space-1) var(--space-2); border-radius: var(--radius-sm); font-size: var(--text-xs); }
.lang-switcher button.active { color: var(--color-primary); background: var(--color-primary-highlight); }
.lang-switcher button:hover:not(.active) { color: var(--color-text); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.35);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, oklch(0.08 0 0 / 0.85) 40%, oklch(0.08 0 0 / 0.2));
}
.hero__content { position: relative; z-index: 1; max-width: 620px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: var(--space-5);
}
.hero__eyebrow::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--color-primary);
}
.hero__title {
  font-size: var(--text-3xl); font-weight: 500; line-height: 1.1;
  color: var(--color-text); margin-bottom: var(--space-5);
}
.hero__title em { color: var(--color-primary); font-style: italic; }
.hero__subtitle {
  font-size: var(--text-base); color: var(--color-text-muted);
  margin-bottom: var(--space-8); max-width: 48ch; line-height: 1.7;
}
.hero__actions { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.hero__btn-primary {
  padding: var(--space-3) var(--space-8); font-size: var(--text-base);
  background: var(--color-primary); color: #0e0d0c;
  border-radius: var(--radius-full); font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: var(--space-2);
  transition: background var(--transition), box-shadow var(--transition);
}
.hero__btn-primary:hover { background: var(--color-primary-hover); box-shadow: 0 0 32px oklch(from var(--color-primary) l c h / 0.4); }
.hero__btn-secondary {
  padding: var(--space-3) var(--space-6); font-size: var(--text-sm);
  color: var(--color-text-muted); border: 1px solid oklch(from var(--color-text) l c h / 0.2);
  border-radius: var(--radius-full); text-decoration: none;
  display: inline-flex; align-items: center; gap: var(--space-2);
  transition: color var(--transition), border-color var(--transition);
}
.hero__btn-secondary:hover { color: var(--color-text); border-color: oklch(from var(--color-text) l c h / 0.4); }
.hero__stats {
  display: flex; gap: var(--space-8); margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid oklch(from var(--color-text) l c h / 0.1);
}
.hero__stat-num { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; color: var(--color-text); display: block; }
.hero__stat-label { font-size: var(--text-xs); color: var(--color-text-muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── PAGE HERO (interior pages) ── */
.page-hero { min-height: 46vh; }
.breadcrumb { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-xs); color: var(--color-text-faint); margin-bottom: var(--space-5); }
.breadcrumb a { color: var(--color-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-primary); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  padding-block: var(--space-4);
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center; gap: var(--space-8);
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); color: var(--color-text-muted); letter-spacing: 0.04em;
}
.trust-item i { color: var(--color-primary); width: 14px; height: 14px; }
.trust-item strong { color: var(--color-text); }

/* ── REGION GRID ── */
.section-header { text-align: center; margin-bottom: clamp(var(--space-8), 4vw, var(--space-12)); }
.section-eyebrow {
  font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-primary); display: block; margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 500;
  color: var(--color-text); margin-bottom: var(--space-3);
}
.section-desc { font-size: var(--text-base); color: var(--color-text-muted); max-width: 52ch; margin-inline: auto; }

.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: var(--space-3);
}
.region-card {
  position: relative; overflow: hidden;
  background: var(--color-surface); border: 1px solid oklch(from var(--color-text) l c h / 0.07);
  border-radius: var(--radius-lg); padding: var(--space-5);
  text-decoration: none; display: flex; flex-direction: column; gap: var(--space-2);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
}
.region-card:hover { background: var(--color-surface-2); border-color: oklch(from var(--color-primary) l c h / 0.4); box-shadow: var(--shadow-md); }
.region-card__icon { font-size: 1.25rem; margin-bottom: var(--space-1); }
.region-card__name { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-text); font-weight: 500; }
.region-card__count { font-size: var(--text-xs); color: var(--color-text-muted); }
.region-card__badge {
  position: absolute; top: var(--space-3); right: var(--space-3);
  background: var(--color-primary-highlight); color: var(--color-primary);
  font-size: 0.65rem; padding: 2px 8px; border-radius: var(--radius-full);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
}

/* ── FILTER BAR ── */
.filter-section { background: var(--color-surface); border-top: 1px solid var(--color-divider); border-bottom: 1px solid var(--color-divider); padding-block: var(--space-5); }
.filter-bar { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
.filter-label { font-size: var(--text-xs); color: var(--color-text-muted); letter-spacing: 0.08em; text-transform: uppercase; flex-shrink: 0; }
.filter-chips { display: flex; gap: var(--space-2); flex-wrap: wrap; flex: 1; }
.chip {
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-full);
  font-size: var(--text-xs); letter-spacing: 0.04em; cursor: pointer;
  border: 1px solid oklch(from var(--color-text) l c h / 0.12);
  color: var(--color-text-muted); background: transparent;
  transition: all var(--transition);
}
.chip:hover { color: var(--color-text); border-color: oklch(from var(--color-text) l c h / 0.3); }
.chip.active { background: var(--color-primary-highlight); color: var(--color-primary); border-color: oklch(from var(--color-primary) l c h / 0.4); }

/* ── PROFILE CARDS ── */
.profiles-section { background: var(--color-bg); }
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: var(--space-4);
}
.profile-card {
  background: var(--color-surface); border: 1px solid oklch(from var(--color-text) l c h / 0.07);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.profile-card:hover { border-color: oklch(from var(--color-primary) l c h / 0.35); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.profile-card__img {
  position: relative; aspect-ratio: 3/4; background: var(--color-surface-offset);
  overflow: hidden;
}
.profile-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.profile-card:hover .profile-card__img img { transform: scale(1.04); }
.profile-card__badges {
  position: absolute; top: var(--space-3); left: var(--space-3);
  display: flex; gap: var(--space-1); flex-wrap: wrap;
}
.badge {
  font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 7px; border-radius: var(--radius-full); font-weight: 600;
}
.badge--photo { background: oklch(0.5 0.15 192 / 0.9); color: white; }
.badge--video { background: oklch(0.5 0.18 30 / 0.9); color: white; }
.badge--rated { background: oklch(0.5 0.12 90 / 0.9); color: white; }
.profile-card__region {
  position: absolute; bottom: var(--space-3); right: var(--space-3);
  background: oklch(0 0 0 / 0.6); color: var(--color-text-muted);
  font-size: 0.65rem; padding: 3px 8px; border-radius: var(--radius-full);
  letter-spacing: 0.04em; backdrop-filter: blur(4px);
}
.profile-card__body { padding: var(--space-4); }
.profile-card__name { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-text); font-weight: 500; margin-bottom: var(--space-1); }
.profile-card__meta { display: flex; align-items: center; justify-content: space-between; }
.profile-card__nationality { font-size: var(--text-xs); color: var(--color-text-muted); }
.profile-card__rating { display: flex; align-items: center; gap: var(--space-1); font-size: var(--text-xs); color: var(--color-gold); }
.profile-card__price { font-size: var(--text-xs); color: var(--color-text-faint); margin-top: var(--space-1); }
.profile-card__price strong { color: var(--color-text-muted); }
.profile-card__cta {
  display: flex; gap: var(--space-2); padding: var(--space-3) var(--space-4);
  padding-top: 0;
}
.profile-cta-btn {
  flex: 1; padding: var(--space-2); border-radius: var(--radius-md);
  font-size: var(--text-xs); display: flex; align-items: center; justify-content: center; gap: var(--space-1);
  border: 1px solid oklch(from var(--color-text) l c h / 0.12);
  color: var(--color-text-muted); background: transparent; text-decoration: none;
}
.profile-cta-btn:hover { color: var(--color-text); border-color: oklch(from var(--color-text) l c h / 0.3); }
.profile-cta-btn--tg { background: var(--color-primary-highlight); color: var(--color-primary); border-color: transparent; }
.profile-cta-btn--tg:hover { background: oklch(from var(--color-primary-highlight) calc(l + 0.05) c h); }

/* ── VERIFY SECTION ── */
.verify-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.verify-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.verify-content { }
.verify-steps { display: flex; flex-direction: column; gap: var(--space-6); margin-top: var(--space-8); }
.verify-step { display: flex; gap: var(--space-4); align-items: flex-start; }
.verify-step__num {
  width: 36px; height: 36px; border-radius: var(--radius-full); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: var(--text-base); font-weight: 600;
}
.verify-step__num--photo { background: oklch(0.5 0.15 192 / 0.15); color: var(--color-primary); }
.verify-step__num--video { background: oklch(0.5 0.18 30 / 0.15); color: #e8935a; }
.verify-step__num--rated { background: oklch(0.5 0.12 90 / 0.15); color: #a8b840; }
.verify-step__text h4 { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-text); margin-bottom: var(--space-1); }
.verify-step__text p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: 40ch; }
.verify-visual {
  background: var(--color-surface-offset); border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl); padding: var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-4);
  position: relative; overflow: hidden;
}
.verify-visual::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 60% 40%, oklch(from var(--color-primary) l c h / 0.06), transparent 70%);
  pointer-events: none;
}
.verify-score {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4); background: var(--color-surface-2);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-lg);
}
.verify-score__ring {
  width: 56px; height: 56px; border-radius: var(--radius-full);
  background: conic-gradient(var(--color-primary) 85%, var(--color-surface-dynamic) 0);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  position: relative;
}
.verify-score__ring::before {
  content: ''; position: absolute;
  inset: 5px; border-radius: var(--radius-full);
  background: var(--color-surface-2);
}
.verify-score__num {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-size: var(--text-base); font-weight: 600; color: var(--color-primary);
}
.verify-score__info h5 { font-size: var(--text-base); color: var(--color-text); }
.verify-score__info p { font-size: var(--text-xs); color: var(--color-text-muted); }
.verify-checklist { display: flex; flex-direction: column; gap: var(--space-2); }
.verify-check {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--color-text-muted);
}
.verify-check i { width: 14px; height: 14px; color: var(--color-primary); flex-shrink: 0; }

/* ── TELEGRAM SECTION ── */
.tg-section {
  background: var(--color-bg);
  position: relative; overflow: hidden;
}
.tg-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--color-divider), transparent);
}
.tg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr)); gap: var(--space-4); }
.tg-card {
  background: var(--color-surface); border: 1px solid oklch(from var(--color-text) l c h / 0.07);
  border-radius: var(--radius-xl); padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.tg-card:hover { border-color: oklch(from var(--color-primary) l c h / 0.4); box-shadow: var(--shadow-md); }
.tg-card__icon {
  width: 44px; height: 44px; border-radius: var(--radius-lg);
  background: var(--color-primary-highlight); display: flex; align-items: center; justify-content: center;
}
.tg-card__icon i { color: var(--color-primary); width: 20px; height: 20px; }
.tg-card__name { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-text); }
.tg-card__handle { font-size: var(--text-xs); color: var(--color-primary); font-family: monospace; }
.tg-card__desc { font-size: var(--text-sm); color: var(--color-text-muted); }
.tg-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.tg-card__freq { font-size: var(--text-xs); color: var(--color-text-faint); }
.tg-card__join {
  display: inline-flex; align-items: center; gap: var(--space-1);
  font-size: var(--text-xs); color: var(--color-primary); font-weight: 500;
}

/* ── FAQ ── */
.faq-section { background: var(--color-surface); border-top: 1px solid var(--color-divider); }
.faq-list { max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-2); }
.faq-item {
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-lg); background: var(--color-surface-2);
  overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left;
  padding: var(--space-5) var(--space-6);
  display: flex; align-items: center; justify-content: space-between;
  font-size: var(--text-base); color: var(--color-text);
  cursor: pointer;
}
.faq-question:hover { color: var(--color-primary); }
.faq-question i { width: 16px; height: 16px; color: var(--color-text-muted); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--color-primary); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-answer { max-height: 260px; }
.faq-answer p {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm); color: var(--color-text-muted); max-width: 62ch;
}

/* ── AREA GUIDE (interior pages) ── */
.area-guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
.area-guide-grid h3 { font-size: var(--text-lg); color: var(--color-text); margin-bottom: var(--space-4); font-family: var(--font-display); }
.area-guide-grid p { color: var(--color-text-muted); margin-bottom: var(--space-4); font-size: var(--text-sm); line-height: 1.7; }
.area-guide-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.area-guide-list li { display: flex; gap: var(--space-3); font-size: var(--text-sm); color: var(--color-text-muted); }
.area-guide-list li span { color: var(--color-primary); font-weight: 700; font-family: var(--font-display); flex-shrink: 0; }

/* ── NEARBY AREAS ── */
.nearby-areas { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.nearby-card {
  flex: 1; min-width: 160px; padding: var(--space-5);
  background: var(--color-surface); border: 1px solid oklch(from var(--color-text) l c h / 0.07);
  border-radius: var(--radius-lg); text-align: center; text-decoration: none;
  transition: all var(--transition);
}
.nearby-card:hover { border-color: oklch(from var(--color-primary) l c h / 0.4); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.nearby-card h4 { font-family: var(--font-display); font-size: var(--text-base); font-weight: 500; color: var(--color-text); margin-bottom: var(--space-1); }
.nearby-card span { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ── FOOTER ── */
.footer {
  background: var(--color-surface); border-top: 1px solid var(--color-divider);
  padding-block: var(--space-12);
}
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--space-8); }
.footer__brand { }
.footer__logo { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-text); margin-bottom: var(--space-3); }
.footer__logo span { color: var(--color-primary); }
.footer__tagline { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-5); max-width: 30ch; }
.footer__tg {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--color-primary-highlight); color: var(--color-primary);
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-full);
  font-size: var(--text-xs); text-decoration: none; font-weight: 500;
}
.footer__col h5 { font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: var(--space-4); }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.footer__col a { font-size: var(--text-sm); color: var(--color-text-muted); text-decoration: none; }
.footer__col a:hover { color: var(--color-primary); }
.footer__bottom {
  margin-top: var(--space-8); padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4);
}
.footer__copy { font-size: var(--text-xs); color: var(--color-text-faint); }
.footer__disclaimer { font-size: var(--text-xs); color: var(--color-text-faint); max-width: 60ch; text-align: right; }

/* ── STICKY TELEGRAM BTN ── */
.tg-sticky {
  position: fixed; bottom: var(--space-6); right: var(--space-6); z-index: 90;
  width: 52px; height: 52px; border-radius: var(--radius-full);
  background: var(--color-primary); color: var(--color-text-inverse);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px oklch(from var(--color-primary) l c h / 0.4);
  text-decoration: none; transition: transform var(--transition), box-shadow var(--transition);
}
.tg-sticky:hover { transform: scale(1.08); box-shadow: 0 8px 32px oklch(from var(--color-primary) l c h / 0.5); }
.tg-sticky i { width: 22px; height: 22px; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav__links, .lang-switcher { display: none; }
  .nav__mobile-toggle { display: flex; }
  .nav__cta .btn-ghost { display: none; }

  .nav__links.nav--open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-surface); padding: var(--space-5);
    border-bottom: 1px solid var(--color-divider);
    gap: var(--space-4);
  }
  .nav__links.nav--open a { font-size: var(--text-base); }

  .hero__stats { gap: var(--space-6); flex-wrap: wrap; }
  .verify-grid { grid-template-columns: 1fr; }
  .verify-visual { display: none; }
  .area-guide-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__disclaimer { text-align: left; }
}
@media (max-width: 480px) {
  .trust-bar__inner { gap: var(--space-4); }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__stats { display: none; }
}
