:root {
  --bg: #ffffff;
  --bg-soft: #f4f6f8;
  --bg-section: #f8f9fb;
  --bg-dark: #0e1a30;
  --text: #1a1a1a;
  --text-soft: #3d4757;
  --text-dark: #ffffff;
  --muted: #6b7480;
  --muted-dark: #b9c3d4;
  --brand: #002F6C;
  --brand-hover: #00214d;
  --brand-light: #1d4a8f;
  --gold: #b68d40;
  --gold-soft: #c8a655;
  --success: #1d7a44;
  --warn: #b56b00;
  --line: #e1e6ec;
  --line-soft: #eef1f5;
  --line-dark: #1a2a44;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(14, 26, 48, 0.06);
  --shadow: 0 4px 14px rgba(14, 26, 48, 0.08);
  --shadow-lg: 0 12px 32px rgba(14, 26, 48, 0.12);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  font-weight: 400;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ────────────────────────────  TELEGRAM ANNOUNCEMENT BAR  ──────────────────────────── */
.tg-banner {
  background: linear-gradient(135deg, #229ED9 0%, #1a8cb8 60%, #1078a3 100%);
  color: #fff;
  padding: 12px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  box-shadow: 0 2px 10px rgba(34, 158, 217, 0.18);
}
.tg-banner-icon {
  display: inline-flex;
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.20);
  border-radius: 50%;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tg-banner-icon svg { width: 13px; height: 13px; }
.tg-banner-text { font-weight: 600; }
.tg-banner-cta {
  background: #fff;
  color: #1078a3;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  margin-left: 4px;
  transition: background .15s ease, transform .15s ease;
  display: inline-flex; align-items: center; gap: 4px;
}
.tg-banner-cta:hover { background: var(--gold-soft); color: #1a1a1a; transform: translateY(-1px); }

@media (max-width: 720px) {
  .tg-banner { font-size: 13px; padding: 10px 18px; }
  .tg-banner-cta { padding: 5px 14px; font-size: 12px; }
}

/* Telegram floating — make it pulse to draw the eye */
@keyframes tg-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 158, 217, 0.55), 0 12px 30px rgba(34,158,217,0.45), 0 2px 6px rgba(0,0,0,0.15); }
  70% { box-shadow: 0 0 0 18px rgba(34, 158, 217, 0), 0 12px 30px rgba(34,158,217,0.45), 0 2px 6px rgba(0,0,0,0.15); }
  100% { box-shadow: 0 0 0 0 rgba(34, 158, 217, 0), 0 12px 30px rgba(34,158,217,0.45), 0 2px 6px rgba(0,0,0,0.15); }
}
.tg-float { animation: tg-pulse 2.4s ease-out infinite; }

/* Inline Telegram callout section */
.tg-callout {
  background: linear-gradient(135deg, #229ED9 0%, #1078a3 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 16px 36px rgba(34, 158, 217, 0.20);
  position: relative;
  overflow: hidden;
}
.tg-callout::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.tg-callout::after {
  content: "";
  position: absolute;
  right: 40px; bottom: -80px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.tg-callout-content { position: relative; z-index: 2; max-width: 600px; }
.tg-callout h3 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.tg-callout p {
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
.tg-callout-btn {
  position: relative; z-index: 2;
  background: #fff;
  color: #1078a3;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s ease, background .15s ease;
  white-space: nowrap;
}
.tg-callout-btn:hover { transform: translateY(-2px); background: var(--gold-soft); color: #1a1a1a; }
.tg-callout-btn svg { width: 18px; height: 18px; }

@media (max-width: 720px) {
  .tg-callout { padding: 30px 28px; text-align: center; justify-content: center; }
  .tg-callout h3 { font-size: 22px; }
}

/* ────────────────────────────  TOP UTILITY BAR  ──────────────────────────── */
.util-bar {
  background: var(--bg-dark);
  color: var(--muted-dark);
  font-size: 12px;
  padding: 8px 0;
}
.util-bar-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 0 24px;
  display: flex; justify-content: flex-end;
  gap: 22px;
}
.util-bar a { color: var(--muted-dark); transition: color .15s ease; }
.util-bar a:hover { color: #fff; }

/* ────────────────────────────  MAIN NAV  ──────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 32px; height: 32px;
  background: var(--brand);
  color: #fff;
  border-radius: 7px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; display: block; }
.nav-links {
  display: flex; gap: 8px;
  height: 100%;
  align-items: stretch;
}
.nav-links a {
  display: inline-flex; align-items: center;
  padding: 0 18px;
  font-size: 15px; font-weight: 500;
  color: var(--text);
  transition: color .15s ease, border-color .15s ease;
  border-bottom: 3px solid transparent;
  border-top: 3px solid transparent;
}
.nav-links a:hover { color: var(--brand); }
.nav-links a.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
  font-weight: 600;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand); color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius);
  transition: background .15s ease, transform .15s ease;
}
.nav-cta:hover { background: var(--brand-hover); transform: translateY(-1px); }

/* ────────────────────────────  TYPOGRAPHY  ──────────────────────────── */
h1, h2, h3, h4 {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
}
h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 18px; }
h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
h3 { font-size: 20px; margin-bottom: 8px; font-weight: 600; }
h4 { font-size: 16px; margin-bottom: 6px; font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.eyebrow.gold { color: var(--gold); }
.lead {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.lead-left { margin-left: 0; }
.muted { color: var(--muted); }

/* ────────────────────────────  BUTTONS  ──────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .12s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); }
.btn-secondary { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-secondary:hover { background: #a07a32; border-color: #a07a32; }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-white { background: #fff; color: var(--brand); border-color: #fff; }
.btn-white:hover { background: var(--bg-soft); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ────────────────────────────  HERO  ──────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,30,70,0.78) 0%, rgba(0,30,70,0.55) 50%, rgba(0,30,70,0.35) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  width: 100%;
  color: #fff;
}
.hero-content { max-width: 700px; }
.hero .brand-crest {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero p.lead { color: rgba(255,255,255,0.92); margin: 0 0 28px; max-width: 560px; }

/* "Search-like" pill below hero */
.hero-search {
  position: relative; z-index: 2;
  max-width: 1300px;
  margin: -36px auto 0;
  padding: 0 24px;
}
.hero-search-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
}
.search-field { display: flex; flex-direction: column; }
.search-field label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.search-field .value {
  font-size: 15px; font-weight: 600; color: var(--text);
}
.search-field .value small { font-weight: 400; color: var(--muted); }
.search-divider { width: 1px; background: var(--line); height: 32px; }

/* Hero stats row (alternative) */
.hero-stats {
  position: relative; z-index: 2;
  max-width: 1300px;
  margin: 50px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hero-stat {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.hero-stat-value {
  font-size: 32px; font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: block;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* ────────────────────────────  TRUST STRIP (social proof bar)  ──────────────────────────── */
.trust-strip {
  background: var(--bg-section);
  padding: 40px 24px;
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-stat {
  display: flex; flex-direction: column;
  gap: 6px;
  position: relative;
}
.trust-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 36px;
  background: var(--line);
}
.trust-stat-num {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.025em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.trust-stat-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 720px) {
  .trust-strip-inner { grid-template-columns: 1fr 1fr; gap: 26px 16px; }
  .trust-stat:nth-child(2)::after { display: none; }
}

/* ────────────────────────────  SECTIONS  ──────────────────────────── */
.section { padding: 80px 24px; }
.section.tight { padding: 64px 24px; }
.section.gray { background: var(--bg-section); }
.section.dark { background: var(--bg-dark); color: var(--text-dark); }
.section.dark h1, .section.dark h2, .section.dark h3 { color: #fff; }
.section.dark .lead { color: rgba(255,255,255,0.85); }
.section.dark .eyebrow { color: var(--gold-soft); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head.left { text-align: left; margin-left: 0; }

/* ────────────────────────────  RATE TIER CARDS  ──────────────────────────── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.tier-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tier-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.tier-card.featured {
  border: 2px solid var(--brand);
  position: relative;
}
.tier-card.featured::before {
  content: "WHAT WE BOOK";
  position: absolute; top: 12px; right: 12px;
  background: var(--brand); color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.10em;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 2;
}
.tier-photo {
  height: 200px;
  background-size: cover; background-position: center;
  background-color: var(--bg-soft);
  position: relative;
}
.tier-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
}
.tier-photo .tier-label {
  position: absolute; bottom: 14px; left: 16px;
  z-index: 2;
  color: #fff;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  background: rgba(0, 47, 108, 0.85);
  padding: 5px 10px;
  border-radius: 4px;
}
.tier-body { padding: 26px 28px; flex: 1; display: flex; flex-direction: column; }
.tier-name { font-size: 22px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.015em; color: var(--text); }
.tier-value {
  font-size: 36px; font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.025em;
  line-height: 1; margin-bottom: 18px;
}
.tier-value small {
  font-size: 14px; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 6px;
}
.tier-blurb { font-size: 14px; color: var(--text-soft); line-height: 1.55; margin-bottom: 18px; }
.tier-bullets {
  list-style: none;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.tier-bullets li {
  padding: 7px 0;
  font-size: 13px; color: var(--text-soft);
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.5;
}
.tier-bullets li::before {
  content: "";
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.5 11.5 3 8l1.4-1.4 2.1 2.1L11.6 3.5 13 4.9z' fill='black'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.5 11.5 3 8l1.4-1.4 2.1 2.1L11.6 3.5 13 4.9z' fill='black'/></svg>") center/contain no-repeat;
}

/* ────────────────────────────  HOW IT WORKS STEPS  ──────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}
.step:hover { box-shadow: var(--shadow); }
.step-num {
  width: 44px; height: 44px;
  background: var(--brand); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 17px;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; color: var(--text); }
.step p { font-size: 14px; color: var(--text-soft); line-height: 1.6; }

/* ────────────────────────────  RECENT BOOKING CARD  ──────────────────────────── */
.booking-wrap { max-width: 980px; margin: 0 auto; }
.booking {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 360px 1fr;
}
.booking-photo {
  background-size: cover; background-position: center;
  min-height: 280px;
  background-color: var(--bg-soft);
}
.booking-body { padding: 32px 36px; display: flex; flex-direction: column; }
.booking-meta {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 10px;
}
.booking-hotel {
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 6px;
}
.booking-room { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.booking-perks {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 24px;
}
.booking-perks span {
  font-size: 13px; color: var(--text-soft);
  display: flex; gap: 8px; align-items: center;
}
.booking-perks span::before {
  content: "";
  width: 14px; height: 14px;
  background: var(--success);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.5 11.5 3 8l1.4-1.4 2.1 2.1L11.6 3.5 13 4.9z' fill='black'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.5 11.5 3 8l1.4-1.4 2.1 2.1L11.6 3.5 13 4.9z' fill='black'/></svg>") center/contain no-repeat;
  flex-shrink: 0;
}
.booking-price-row {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
}
.price-strike {
  font-size: 14px; color: var(--muted);
  text-decoration: line-through;
}
.price-final {
  font-size: 36px; font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.025em;
  line-height: 1;
}
.price-final sub {
  font-size: 13px; color: var(--muted);
  font-weight: 500;
  vertical-align: baseline;
  margin-left: 4px;
}
.price-save {
  display: inline-block;
  background: rgba(29,122,68,0.10);
  color: var(--success);
  font-size: 12px; font-weight: 700;
  padding: 5px 10px; border-radius: 6px;
  letter-spacing: 0.04em;
  margin-top: 10px;
}

/* ────────────────────────────  PROGRAM COMPARE BAR (Marriott home only)  ──────────────────────────── */
.brand-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.brand-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.brand-card-photo {
  height: 140px;
  background-size: cover; background-position: center;
  background-color: var(--bg-soft);
}
.brand-card-body { padding: 20px 22px; }
.brand-card .program {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.brand-card h3 { font-size: 18px; margin-bottom: 6px; color: var(--text); }
.brand-card .discount {
  font-size: 22px; font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1;
}
.brand-card .link {
  font-size: 13px; font-weight: 600;
  color: var(--brand);
  display: inline-flex; align-items: center; gap: 4px;
}
.brand-card .link::after { content: "→"; transition: transform .15s ease; }
.brand-card:hover .link::after { transform: translateX(3px); }

/* ────────────────────────────  FAQ  ──────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.qa {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px; font-weight: 600;
  color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  transition: background .15s ease;
}
.qa summary:hover { background: var(--bg-section); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "";
  width: 14px; height: 14px;
  flex-shrink: 0;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 6l5 5 5-5' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 6l5 5 5-5' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  transition: transform .2s ease;
}
.qa[open] summary::after { transform: rotate(180deg); }
.qa-body { padding: 0 24px 22px; font-size: 15px; color: var(--text-soft); line-height: 1.65; }
.qa-body a { color: var(--brand); font-weight: 600; }
.qa-body a:hover { text-decoration: underline; }
.qa-body p { margin-bottom: 10px; }
.qa-body p:last-child { margin-bottom: 0; }

/* ────────────────────────────  ABOUT GRID  ──────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.about-block:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.about-block .icon {
  width: 48px; height: 48px;
  background: rgba(0, 47, 108, 0.08);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--brand);
  font-weight: 700; font-size: 18px;
}
.about-block h3 { font-size: 18px; margin-bottom: 8px; color: var(--text); }
.about-block p { font-size: 14px; color: var(--text-soft); line-height: 1.6; }

.about-story {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.7;
}
.about-story p { margin-bottom: 18px; }

/* ────────────────────────────  FOOTER CTA BAND  ──────────────────────────── */
.cta-band {
  background: var(--brand);
  color: #fff;
  padding: 60px 24px;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.88); font-size: 17px; margin-bottom: 24px; }
.cta-band .btn-secondary { background: var(--gold); border-color: var(--gold); }
.cta-band .btn-secondary:hover { background: #a07a32; border-color: #a07a32; }

/* ────────────────────────────  FOOTER  ──────────────────────────── */
footer {
  background: var(--bg-dark);
  color: var(--muted-dark);
  padding: 64px 24px 28px;
  font-size: 14px;
}
.foot-inner { max-width: 1300px; margin: 0 auto; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.foot-col h4 {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.foot-col ul { list-style: none; }
.foot-col li { padding: 5px 0; }
.foot-col a {
  color: var(--muted-dark); font-size: 14px;
  transition: color .15s ease;
}
.foot-col a:hover { color: #fff; }
.foot-brand-block .foot-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 700; color: #fff;
  margin-bottom: 14px;
}
.foot-brand-block .foot-brand-mark {
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: 7px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.foot-brand-block .foot-brand-mark svg { width: 22px; height: 22px; display: block; }
.foot-brand-block p { font-size: 14px; color: var(--muted-dark); line-height: 1.6; max-width: 320px; }
.foot-bottom {
  padding-top: 22px;
  display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap;
  font-size: 12px; color: var(--muted-dark);
}

/* ────────────────────────────  BRAND PORTFOLIO  ──────────────────────────── */
.portfolio {
  display: grid;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio-tier {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}
.portfolio-tier:hover { box-shadow: var(--shadow); }
.portfolio-tier-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  flex-wrap: wrap;
}
.portfolio-tier-name {
  font-size: 22px; font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
}
.portfolio-tier-name small {
  display: inline-block;
  margin-left: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted);
}
.portfolio-tier-desc {
  font-size: 13px; color: var(--text-soft);
  flex: 1; max-width: 380px; text-align: right;
  line-height: 1.5;
}
.portfolio-brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 28px;
}
.portfolio-brand {
  display: flex; flex-direction: column;
  gap: 3px;
  padding: 8px 0;
}
.portfolio-brand-name {
  font-size: 14px; font-weight: 600;
  color: var(--text);
}
.portfolio-brand-name .star {
  color: var(--brand); margin-left: 4px;
  font-size: 11px;
}
.portfolio-brand-desc {
  font-size: 12px; color: var(--text-soft);
  line-height: 1.5;
}
.portfolio-legend {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
}
.portfolio-legend .star {
  color: var(--brand); font-weight: 700;
}
@media (max-width: 980px) {
  .portfolio-tier { padding: 26px 24px; }
  .portfolio-tier-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .portfolio-tier-desc { text-align: left; max-width: 100%; }
}

/* ────────────────────────────  BLOG INDEX  ──────────────────────────── */
.blog-hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 90px 24px 80px;
  text-align: center;
}
.blog-hero h1 { color: #fff; margin-bottom: 14px; }
.blog-hero .lead { color: rgba(255,255,255,0.85); }
.blog-hero .eyebrow { color: var(--gold-soft); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.blog-card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-soft);
}
.blog-card.featured .blog-card-image { height: auto; min-height: 320px; }
.blog-card-body {
  padding: 26px 28px 30px;
  flex: 1;
  display: flex; flex-direction: column;
}
.blog-card.featured .blog-card-body { padding: 40px 40px 44px; }
.blog-card-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.blog-card-meta .category { color: var(--brand); }
.blog-card-meta .dot {
  width: 3px; height: 3px;
  background: var(--muted);
  border-radius: 50%;
  flex-shrink: 0;
}
.blog-card h3 {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--text);
}
.blog-card.featured h3 { font-size: 28px; line-height: 1.2; }
.blog-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 18px;
}
.blog-card .read-more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-card .read-more::after { content: " →"; transition: transform .15s ease; }
.blog-card:hover .read-more::after { transform: translateX(3px); }

/* ────────────────────────────  BLOG POST / ARTICLE  ──────────────────────────── */
.article-hero {
  position: relative;
  min-height: 460px;
  background-color: var(--bg-dark);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.article-hero .article-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.article-hero .article-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,30,70,0.20) 0%, rgba(0,30,70,0.85) 100%);
}
.article-hero-inner {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
  padding: 0 24px 56px;
  width: 100%;
  color: #fff;
}
.article-hero .article-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.article-hero .article-meta .dot {
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}
.article-hero h1 {
  font-size: clamp(30px, 4.2vw, 48px);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.12;
  font-weight: 800;
}
.article-hero .lead {
  font-size: 19px;
  color: rgba(255,255,255,0.92);
  max-width: 720px;
  margin: 0;
}

/* Article layout — 2-column with sticky sidebar */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  align-items: start;
}
.article-layout .article-body {
  max-width: none;
  margin: 0;
  padding: 0;
}
.article-layout .article-byline {
  max-width: none;
  margin: 32px 0 0;
  padding: 32px 0 0;
}
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 88px;
  align-self: start;
}
.sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}
.sidebar-card:hover { box-shadow: var(--shadow); }
.sidebar-card-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.sidebar-card-title svg { width: 14px; height: 14px; flex-shrink: 0; }
.sidebar-card p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;
  color: var(--text-soft);
}
.sidebar-card .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
  font-size: 14px;
}

/* Apply CTA card */
.sidebar-apply {
  background: linear-gradient(135deg, var(--brand) 0%, #1d4a8f 100%);
  color: #fff;
  border-color: transparent;
}
.sidebar-apply .sidebar-card-title { color: var(--gold-soft); }
.sidebar-apply p { color: rgba(255,255,255,0.92); }
.sidebar-apply .btn-primary {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}
.sidebar-apply .btn-primary:hover {
  background: var(--gold-soft);
  color: var(--bg-dark);
  border-color: var(--gold-soft);
}

/* Telegram CTA card */
.sidebar-tg {
  background: linear-gradient(135deg, #229ED9 0%, #1078a3 100%);
  color: #fff;
  border-color: transparent;
}
.sidebar-tg .sidebar-card-title { color: rgba(255,255,255,0.95); }
.sidebar-tg .sidebar-card-title svg { color: #fff; }
.sidebar-tg p { color: rgba(255,255,255,0.92); }
.sidebar-tg .btn-primary {
  background: #fff;
  color: #1078a3;
  border-color: #fff;
}
.sidebar-tg .btn-primary:hover {
  background: var(--gold-soft);
  color: var(--bg-dark);
  border-color: var(--gold-soft);
}

/* Related posts in sidebar */
.sidebar-posts ul { list-style: none; }
.sidebar-posts li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.sidebar-posts li:first-child { padding-top: 0; }
.sidebar-posts li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-posts .post-meta {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  display: block;
  margin-bottom: 4px;
}
.sidebar-posts a {
  font-size: 14px; font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  display: block;
  letter-spacing: -0.005em;
}
.sidebar-posts a:hover { color: var(--brand); }

@media (max-width: 980px) {
  .article-layout { grid-template-columns: 1fr; gap: 40px; padding: 50px 22px 50px; }
  .article-sidebar { position: static; }
}

.article-body {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-soft);
}
.article-body p { margin-bottom: 24px; }
.article-body h2 {
  font-size: 28px;
  color: var(--text);
  margin: 56px 0 16px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.article-body h3 {
  font-size: 21px;
  color: var(--text);
  margin: 36px 0 12px;
  letter-spacing: -0.015em;
  font-weight: 700;
}
.article-body strong { color: var(--text); font-weight: 700; }
.article-body a {
  color: var(--brand);
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 47, 108, 0.25);
}
.article-body a:hover { border-bottom-color: var(--brand); }
.article-body blockquote {
  border-left: 3px solid var(--brand);
  margin: 30px 0;
  padding: 4px 0 4px 26px;
  font-style: italic;
  color: var(--text);
  font-size: 19px;
}
.article-body ul, .article-body ol {
  margin: 24px 0;
  padding-left: 26px;
}
.article-body li { margin-bottom: 10px; }
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.article-body th, .article-body td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.article-body th {
  font-weight: 700;
  color: var(--text);
  background: var(--bg-section);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-body td { color: var(--text-soft); }

.article-byline {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.article-byline a { color: var(--brand); font-weight: 600; }

.article-related {
  background: var(--bg-section);
  padding: 64px 24px 80px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
}
.article-related .section-inner { max-width: 1200px; margin: 0 auto; }
.article-related h2 {
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  color: var(--text);
}

@media (max-width: 820px) {
  .article-hero { min-height: 360px; }
  .article-hero-inner { padding: 0 22px 36px; }
  .article-body { padding: 50px 22px 50px; font-size: 17px; }
  .blog-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .blog-card.featured .blog-card-image { min-height: 200px; }
  .blog-card.featured .blog-card-body { padding: 26px 28px 30px; }
  .blog-card.featured h3 { font-size: 22px; }
}

/* ────────────────────────────  APPLY BOX (conversion form)  ──────────────────────────── */
.apply-box {
  max-width: 560px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #c5d0e2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px 56px;
  text-align: center;
}
.apply-box .apply-badge {
  display: inline-block;
  background: rgba(29, 122, 68, 0.12);
  color: var(--success);
  font-size: 13px; font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.apply-box h2 {
  font-size: 32px; font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.apply-box p.apply-lead {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.apply-form {
  text-align: left;
  display: flex; flex-direction: column;
  gap: 18px;
}
.apply-form .apply-field {
  display: flex; flex-direction: column;
}
.apply-form label {
  font-size: 15px; font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.apply-form input,
.apply-form textarea {
  font-family: inherit; font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.apply-form textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}
.apply-form input::placeholder,
.apply-form textarea::placeholder { color: var(--muted); }
.apply-form input:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 47, 108, 0.10);
}
.apply-submit {
  background: #4f6bdc;
  color: #ffffff;
  font-size: 17px; font-weight: 600;
  padding: 16px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  transition: background .15s ease, transform .12s ease;
  margin-top: 8px;
  letter-spacing: -0.005em;
}
.apply-submit:hover { background: #3f54b5; transform: translateY(-1px); }
.apply-submit svg { width: 18px; height: 18px; }
.apply-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.apply-divider::before,
.apply-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.apply-tg-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background: rgba(34, 158, 217, 0.08);
  color: #1078a3;
  border: 1px solid rgba(34, 158, 217, 0.30);
  border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
  text-decoration: none;
}
.apply-tg-link:hover {
  background: rgba(34, 158, 217, 0.15);
  border-color: #229ED9;
  transform: translateY(-1px);
}
.apply-tg-link svg { color: #229ED9; flex-shrink: 0; }

.apply-trust {
  display: flex; justify-content: center;
  gap: 32px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14px; color: var(--text-soft);
  flex-wrap: wrap;
}
.apply-trust span {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 500;
}
.apply-trust svg {
  width: 16px; height: 16px;
  color: var(--text-soft);
}

@media (max-width: 600px) {
  .apply-box { padding: 36px 28px; }
  .apply-box h2 { font-size: 26px; }
  .apply-trust { gap: 18px; font-size: 13px; }
}

/* ────────────────────────────  CONTACT FORM  ──────────────────────────── */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 54px 56px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-intro h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.contact-perks {
  list-style: none;
  margin-top: 22px;
}
.contact-perks li {
  padding: 8px 0;
  font-size: 14px; color: var(--text-soft);
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.5;
}
.contact-perks li::before {
  content: "";
  width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 1px;
  background: var(--success);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.5 11.5 3 8l1.4-1.4 2.1 2.1L11.6 3.5 13 4.9z' fill='black'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.5 11.5 3 8l1.4-1.4 2.1 2.1L11.6 3.5 13 4.9z' fill='black'/></svg>") center/contain no-repeat;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; }
.form-row label {
  font-size: 12px; font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  display: flex; flex-direction: column;
  gap: 6px;
}
.form-row label small { font-weight: 400; color: var(--muted); letter-spacing: 0; font-size: 12px; }
.form-row input,
.form-row textarea,
.form-row select {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
  font-weight: 400;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--muted); }
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 47, 108, 0.10);
}
.form-row textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.form-row-2col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form .btn { margin-top: 6px; justify-content: center; }
.form-hint {
  text-align: center; font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}
.form-hint a { color: var(--brand); font-weight: 600; }
.form-hint a:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .contact-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
  .form-row-2col { grid-template-columns: 1fr; }
}

/* ────────────────────────────  MEMBERSHIP PRICING  ──────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border: 2px solid var(--brand);
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card .tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.pricing-card .duration {
  font-size: 36px; font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-card .duration small {
  display: block;
  font-size: 14px; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 6px;
}
.pricing-price {
  margin: 22px 0 8px;
  display: flex; align-items: baseline; gap: 6px;
}
.pricing-price .currency {
  font-size: 22px; font-weight: 600; color: var(--text);
}
.pricing-price .amount {
  font-size: 56px; font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-card.popular .pricing-price .amount { color: var(--brand); }
.pricing-permo {
  font-size: 13px; color: var(--muted);
  margin-bottom: 8px;
}
.pricing-permo strong { color: var(--success); font-weight: 700; }
.pricing-features {
  list-style: none;
  margin: 24px 0 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  flex: 1;
}
.pricing-features li {
  padding: 9px 0;
  font-size: 14px; color: var(--text-soft);
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.5;
}
.pricing-features li::before {
  content: "";
  width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 1px;
  background: var(--success);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.5 11.5 3 8l1.4-1.4 2.1 2.1L11.6 3.5 13 4.9z' fill='black'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.5 11.5 3 8l1.4-1.4 2.1 2.1L11.6 3.5 13 4.9z' fill='black'/></svg>") center/contain no-repeat;
}
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 28px;
}
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 18px; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-4px); }
}

/* ────────────────────────────  TIER TABS (One Pass tiers etc.)  ──────────────────────────── */
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  max-width: 1200px;
  margin: 0 auto 44px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-button {
  padding: 18px 28px;
  font-size: 15px; font-weight: 600;
  color: var(--text-soft);
  border: none;
  border-bottom: 3px solid transparent;
  background: none;
  border-radius: 0;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tab-button:hover { color: var(--text); }
.tab-button.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
  font-weight: 700;
}
.tab-button .tier-tag {
  background: rgba(0, 47, 108, 0.10);
  color: var(--brand);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.10em;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}
.tab-button.active .tier-tag {
  background: var(--brand);
  color: #fff;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tab-fade .25s ease; }
@keyframes tab-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .tab-button { padding: 14px 18px; font-size: 14px; }
  .tab-button .tier-tag { display: none; }
}

/* ────────────────────────────  EXPLAINER SECTION (Team Member rate categories etc.)  ──────────────────────────── */
.explainer {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.explainer-side h3 {
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.explainer-side p { font-size: 15px; color: var(--text-soft); line-height: 1.65; margin-bottom: 14px; }
.explainer-side .callout {
  background: rgba(0, 47, 108, 0.06);
  border-left: 3px solid var(--brand);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px; color: var(--text-soft);
  margin-top: 18px;
}
.explainer-side .callout strong { color: var(--brand); }

.cat-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cat-row {
  display: grid;
  grid-template-columns: 70px 1.3fr 1fr;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line-soft);
  gap: 16px;
}
.cat-row:last-child { border-bottom: none; }
.cat-row.header {
  background: var(--bg-section);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted);
}
.cat-row .cat-num {
  font-size: 13px; font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.04em;
}
.cat-row .cat-brands { font-size: 14px; color: var(--text); }
.cat-row .cat-brands small { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.cat-row .cat-price { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.015em; }
.cat-row .cat-price small { font-size: 12px; font-weight: 500; color: var(--muted); margin-left: 4px; }

.tm-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.tm-perk {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-align: left;
}
.tm-perk h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--brand); letter-spacing: 0; }
.tm-perk p { font-size: 13px; color: var(--text-soft); line-height: 1.55; }

@media (max-width: 980px) {
  .explainer { grid-template-columns: 1fr; gap: 32px; }
  .cat-row { grid-template-columns: 50px 1.3fr 1fr; padding: 14px 16px; gap: 10px; }
  .cat-row .cat-brands { font-size: 13px; }
  .cat-row .cat-price { font-size: 15px; }
  .tm-perks { grid-template-columns: 1fr; }
}

/* ────────────────────────────  TELEGRAM FLOAT  ──────────────────────────── */
.tg-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 80;
  background: #229ED9; color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(34,158,217,0.40), 0 2px 6px rgba(0,0,0,0.15);
  transition: transform .15s ease, box-shadow .15s ease;
}
.tg-float:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(34,158,217,0.55); }
.tg-float svg { width: 22px; height: 22px; }

/* ────────────────────────────  MOBILE  ──────────────────────────── */
@media (max-width: 980px) {
  .util-bar { display: none; }
  .nav-links { display: none; }
  .hero { min-height: 460px; }
  .hero-inner { padding: 60px 24px 50px; }
  .hero-search-card { grid-template-columns: 1fr; gap: 14px; padding: 18px 22px; }
  .search-divider { display: none; }
  .hero-stats { grid-template-columns: 1fr; margin-top: 30px; }
  .section { padding: 60px 22px; }
  .steps-grid { grid-template-columns: 1fr; }
  .booking { grid-template-columns: 1fr; }
  .booking-photo { min-height: 180px; }
  .booking-body { padding: 24px 26px; }
  .brand-cards { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; text-align: left; }
  .tg-float span { display: none; }
  .tg-float { padding: 14px; width: 52px; height: 52px; justify-content: center; }
}
@media (max-width: 540px) {
  .brand-cards { grid-template-columns: 1fr; }
}

/* ────────────────────────────  ENTRANCE  ──────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
