:root {
  --navy: #1a2332;
  --navy-deep: #0f1520;
  --gold: #8f6216;
  --gold-hover: #7a5512;
  --gold-light: #c4962e;
  --gold-label: #7a5512;
  --gold-label-bg: rgba(169, 116, 26, 0.14);
  --gold-label-border: rgba(122, 85, 18, 0.22);
  --white: #fff;
  --text-on-dark: rgba(255, 255, 255, 0.96);
  --text-muted-on-dark: rgba(255, 255, 255, 0.88);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-panel: rgba(12, 18, 32, 0.58);
  --glass-panel-strong: rgba(12, 18, 32, 0.72);
  --glass-border: rgba(255, 255, 255, 0.28);
  --glass-panel-border: rgba(255, 255, 255, 0.24);
  --glass-blur: blur(18px) saturate(1.35);
  --serif: "Playfair Display", Georgia, serif;
  --sans: Inter, system-ui, sans-serif;
  --max: 1180px;
  --header-trust-h: 34px;
  --header-bar-h: 76px;
  --header-nav-h: 44px;
  --header-h: calc(var(--header-trust-h) + var(--header-bar-h) + var(--header-nav-h));
  --topbar-h: 44px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--navy);
  background: #f7f4ef;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Glass utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Top bar — always visible on home (fixed) */
.topbar {
  background: rgba(15, 21, 32, 0.96);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.topbar.is-hidden { display: none; }
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--topbar-h);
  padding: 6px 0;
}
.topbar__link {
  flex: 1;
  line-height: 1.4;
}
.topbar__link:hover { color: var(--gold-light); }
.topbar__close {
  flex-shrink: 0;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 8px;
}
.topbar__close:hover { color: #fff; background: rgba(255, 255, 255, 0.14); }

.page-home .topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}
.page-home .topbar.is-hidden ~ .header { top: 0; }
.page-home:not(:has(.topbar.is-hidden)) { --site-top-offset: calc(var(--topbar-h) + var(--header-h)); }
.page-home:has(.topbar.is-hidden) { --site-top-offset: var(--header-h); }

/* Header */
.header {
  position: relative;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid #e8e2d8;
}
.page-home .header {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--topbar-h);
  z-index: 199;
  background: rgba(15, 21, 32, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header__shell {
  display: flex;
  flex-direction: column;
}

/* Trust + utility strip */
.header-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-trust-h);
  padding: 4px 0;
  border-bottom: 1px solid rgba(26, 35, 50, 0.06);
  font-size: 11px;
}

.header-trust__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4b5563;
  font-weight: 500;
  white-space: nowrap;
}

.header-trust__item:hover { color: var(--gold); }

.header-trust__check {
  flex-shrink: 0;
  color: var(--gold);
}

.header-trust__utils {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-trust__util {
  color: #5b6472;
  font-weight: 500;
  white-space: nowrap;
}

.header-trust__util:hover { color: var(--navy); }

.page-home .header-trust {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.page-home .header-trust__item { color: rgba(255, 255, 255, 0.82); }
.page-home .header-trust__item:hover { color: #fff; }
.page-home .header-trust__util { color: rgba(255, 255, 255, 0.65); }
.page-home .header-trust__util:hover { color: #fff; }

.page-home:has(.hero[data-hero-theme^="light-"]) .header-trust,
.page-home:has(.hero[data-hero-theme^="comp-"]) .header-trust {
  border-bottom-color: rgba(26, 35, 50, 0.08);
}

.page-home:has(.hero[data-hero-theme^="light-"]) .header-trust__item,
.page-home:has(.hero[data-hero-theme^="comp-"]) .header-trust__item {
  color: #4b5563;
}

.page-home:has(.hero[data-hero-theme^="light-"]) .header-trust__util,
.page-home:has(.hero[data-hero-theme^="comp-"]) .header-trust__util {
  color: #5b6472;
}

.header__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-bar-h);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: var(--header-nav-h);
  padding-bottom: 2px;
  border-top: 1px solid rgba(26, 35, 50, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
  text-decoration: none;
}

.logo:hover .logo__mark {
  transform: translateY(-1px);
}

.logo__mark {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.15s ease;
}

.logo__mark--sm {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.logo__name {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: 0.01em;
  color: var(--navy);
  line-height: 1.05;
  white-space: nowrap;
}

.logo__tag {
  font-size: 11px;
  font-weight: 500;
  color: #5c6370;
  letter-spacing: 0.03em;
  line-height: 1.2;
  white-space: nowrap;
}

.page-home .logo__name { color: var(--white); }
.page-home .logo__tag { color: rgba(255, 255, 255, 0.88); opacity: 1; }

.nav__link { font-size: 14px; font-weight: 500; color: #444; white-space: nowrap; }
.nav__link:hover { color: var(--navy); }
.page-home .nav__link { color: rgba(255, 255, 255, 0.88); }
.page-home .nav__link:hover { color: #fff; }

.header__cta { flex-shrink: 0; gap: 6px; }

.header-search {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0 6px 0 14px;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.14);
  border-radius: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.header-search--bar {
  flex: 1 1 auto;
  width: auto;
  max-width: 480px;
  min-width: 160px;
}

.header-search__field {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.header-search__typewriter {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #68707d;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.header-search__typewriter::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 1px;
  background: var(--gold);
  vertical-align: -0.1em;
  animation: search-caret 1s step-end infinite;
}

.header-search__typewriter.is-hidden { display: none; }

@keyframes search-caret {
  50% { opacity: 0; }
}

.header-search__input:not(:placeholder-shown) ~ .header-search__typewriter,
.header-search.is-typing-paused .header-search__typewriter { display: none; }

.header-search__input:focus ~ .header-search__typewriter { display: none; }

.header-search__input::placeholder { color: transparent; }

.header-search:focus-within {
  border-color: rgba(169, 116, 26, 0.45);
  box-shadow: 0 0 0 3px rgba(169, 116, 26, 0.12);
}

.header-search__input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 13px;
  color: #1a2332;
  outline: none;
  position: relative;
  z-index: 1;
}

/* Consultation block */
.header-consult {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  max-width: 200px;
  padding: 8px 12px;
  border: 1px solid rgba(169, 116, 26, 0.28);
  border-radius: 12px;
  background: linear-gradient(135deg, #fffbf3 0%, #fff 100%);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.header-consult:hover {
  border-color: rgba(169, 116, 26, 0.5);
  box-shadow: 0 4px 14px rgba(169, 116, 26, 0.12);
}

.header-consult__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(169, 116, 26, 0.12);
  color: var(--gold);
  flex-shrink: 0;
}

.header-consult__body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.header-consult__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.header-consult__sub {
  font-size: 10px;
  color: #5b6472;
  line-height: 1.25;
}

.header-consult__note {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}

.page-home .header-consult {
  background: rgba(255, 255, 255, 0.94);
}

.page-home:has(.hero[data-hero-theme^="light-"]) .header-consult,
.page-home:has(.hero[data-hero-theme^="comp-"]) .header-consult {
  background: linear-gradient(135deg, #fffbf3 0%, #fff 100%);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-contact__tg {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8f4fc;
  color: #229ed9;
  transition: transform 0.15s ease;
}

.header-contact__tg:hover { transform: scale(1.05); }

.header-contact__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.header-contact__handle {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.header-contact__handle:hover { color: var(--gold); }

.header-contact__hours {
  font-size: 10px;
  color: #5b6472;
  white-space: nowrap;
}

.page-home .header-contact__handle { color: #fff; }
.page-home .header-contact__hours { color: rgba(255, 255, 255, 0.7); }

.page-home:has(.hero[data-hero-theme^="light-"]) .header-contact__handle,
.page-home:has(.hero[data-hero-theme^="comp-"]) .header-contact__handle {
  color: var(--navy);
}

.page-home:has(.hero[data-hero-theme^="light-"]) .header-contact__hours,
.page-home:has(.hero[data-hero-theme^="comp-"]) .header-contact__hours {
  color: #5b6472;
}

.nav__item { position: relative; }

.nav__item--dropdown .nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav__chevron {
  opacity: 0.55;
  transition: transform 0.15s ease;
}

.nav__item--dropdown:hover .nav__chevron,
.nav__item--dropdown:focus-within .nav__chevron {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  background: #fff;
  border: 1px solid #e8e2d8;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(26, 35, 50, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 50;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
}

.nav__dropdown-link:hover {
  background: rgba(169, 116, 26, 0.08);
  color: var(--gold-hover);
}

.page-home .nav__dropdown { background: #fff; }

.mobile-nav__consult {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(169, 116, 26, 0.08);
  border: 1px solid rgba(169, 116, 26, 0.22);
}

.mobile-nav__consult strong {
  font-size: 15px;
  color: var(--navy);
}

.mobile-nav__consult span {
  font-size: 12px;
  color: #5b6472;
}

.mobile-nav__group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav__parent {
  font-size: 16px;
  font-weight: 700;
  padding: 8px 0 4px;
  border-bottom: 1px solid #eee;
}

.mobile-nav__children {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0 8px 12px;
}

.mobile-nav__children a {
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  padding: 6px 0;
  border-bottom: none;
}

.mobile-nav__children a:hover { color: var(--gold); }

.header-search__btn {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #5b6472;
  cursor: pointer;
  flex-shrink: 0;
}

.header-search__btn:hover { color: var(--gold); }

.page-home .header-search {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.page-home .header-search__input {
  color: #fff;
}

.page-home .header-search__typewriter {
  color: rgba(255, 255, 255, 0.65);
}

.page-home:has(.hero[data-hero-theme^="light-"]) .header-search__typewriter,
.page-home:has(.hero[data-hero-theme^="comp-"]) .header-search__typewriter {
  color: #68707d;
}

.page-home .header-search__input::placeholder { color: transparent; }

.page-home .header-search__btn { color: rgba(255, 255, 255, 0.8); }

.page-home:has(.hero[data-hero-theme^="light-"]) .header-search,
.page-home:has(.hero[data-hero-theme^="comp-"]) .header-search {
  background: #f7f4ef;
  border-color: rgba(26, 35, 50, 0.12);
}

.page-home:has(.hero[data-hero-theme^="light-"]) .header-search__input,
.page-home:has(.hero[data-hero-theme^="comp-"]) .header-search__input {
  color: #1a2332;
}

.page-home:has(.hero[data-hero-theme^="light-"]) .header-search__input::placeholder,
.page-home:has(.hero[data-hero-theme^="comp-"]) .header-search__input::placeholder {
  color: transparent;
}

.page-home:has(.hero[data-hero-theme^="light-"]) .header-search__btn,
.page-home:has(.hero[data-hero-theme^="comp-"]) .header-search__btn {
  color: #5b6472;
}

.header__util {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #5b6472;
  border: 1px solid rgba(26, 35, 50, 0.1);
  background: #fff;
  transition: 0.15s ease;
}

.header__util:hover {
  color: var(--gold);
  border-color: rgba(169, 116, 26, 0.35);
}

.page-home .header__util {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
}

.header__util--telegram { display: none; }

.page-home:has(.hero[data-hero-theme^="light-"]) .header__util,
.page-home:has(.hero[data-hero-theme^="comp-"]) .header__util {
  background: #fff;
  border-color: rgba(26, 35, 50, 0.1);
  color: #5b6472;
}

.header-search--mobile {
  width: 100%;
  min-width: 0;
}

.mobile-nav__utils {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header__burger {
  display: none;
  border: none;
  background: none;
  color: var(--navy);
  cursor: pointer;
  padding: 6px;
}
.page-home .header__burger { color: #fff; }

/* Mobile nav */
.mobile-nav { position: fixed; inset: 0; z-index: 100; }
.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 100%);
  height: 100%;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
}
.mobile-nav__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.mobile-nav__close {
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #666;
}
.mobile-nav__links { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.mobile-nav__links a { font-size: 16px; font-weight: 500; padding: 8px 0; border-bottom: 1px solid #eee; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.18s ease;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(169, 116, 26, 0.32);
}
.btn--gold:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn--glass {
  background: rgba(12, 18, 32, 0.45);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(12, 18, 32, 0.62); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: #f5f5f5; }
.btn--outline-gold {
  background: #fff;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  box-shadow: none;
}
.btn--outline-gold:hover {
  background: rgba(169, 116, 26, 0.08);
  color: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(196, 150, 46, 0.75);
  box-shadow: none;
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-light);
  color: #fff;
  transform: translateY(-1px);
}
.btn--navy {
  background: #0f1520;
  color: #fff;
  box-shadow: 0 4px 16px rgba(15, 21, 32, 0.28);
}
.btn--navy:hover {
  background: #1a2332;
  transform: translateY(-1px);
}
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--block { width: 100%; }

/* Hero — full viewport video */
.hero--full {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy-deep) center / cover no-repeat;
  background-image: var(--hero-poster, none);
}

.hero__media video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 122%;
  height: 100%;
  min-width: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  object-position: 72% center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10, 16, 28, 0.62) 0%, rgba(10, 16, 28, 0.28) 38%, rgba(10, 16, 28, 0.06) 62%, transparent 78%),
    linear-gradient(to top, rgba(10, 16, 28, 0.45) 0%, rgba(10, 16, 28, 0.12) 35%, transparent 58%);
  pointer-events: none;
}

.hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding: calc(var(--site-top-offset, 112px) + 12px) 0 0;
}

/* Upper stage: text left, face center-right, quiz bottom-right */
.hero__stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 340px;
}

.hero__content {
  max-width: 1280px;
  padding-left: clamp(8px, 1.5vw, 24px);
  padding-right: clamp(8px, 1vw, 24px);
}

.hero__text {
  position: relative;
  max-width: 580px;
  padding-top: clamp(36px, 7vh, 64px);
}

.hero__text::before {
  content: "";
  position: absolute;
  inset: -16px -28px -20px -24px;
  background: radial-gradient(ellipse 90% 80% at 0% 40%, rgba(8, 14, 28, 0.5) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero__quiz {
  position: absolute;
  right: clamp(12px, 2.5vw, 36px);
  bottom: clamp(12px, 2vh, 24px);
  width: min(340px, calc(100% - 24px));
  max-width: 340px;
  z-index: 3;
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4b04a;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.hero__eyebrow svg { opacity: 0.95; }

.hero__text h1 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  max-width: 11em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__text h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero__lead {
  margin: 0 0 24px;
  max-width: 44ch;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  color: var(--text-muted-on-dark);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }

.hero__subcta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  max-width: 46ch;
}

.hero__subcta-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  transition: color 0.15s ease;
}

.hero__subcta-link:hover {
  color: var(--gold-light);
}

.hero__subcta-arrow {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--gold-light);
}

.hero__subcta-link--alt {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
}

.hero__subcta-link--alt:hover {
  color: #fff;
}

/* Hero panel themes (default dark = frozen baseline v11) */
.hero[data-hero-theme="dark"] {
  --panel-bg: rgba(12, 18, 32, 0.58);
  --panel-bg-strong: rgba(12, 18, 32, 0.72);
  --panel-border: rgba(255, 255, 255, 0.24);
  --panel-text: rgba(255, 255, 255, 0.96);
  --panel-text-muted: rgba(255, 255, 255, 0.86);
  --panel-text-sub: rgba(255, 255, 255, 0.75);
  --panel-divider: rgba(255, 255, 255, 0.18);
  --panel-progress: rgba(255, 255, 255, 0.22);
  --panel-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  --panel-hover: rgba(12, 18, 32, 0.68);
  --panel-icon-bg: rgba(169, 116, 26, 0.22);
  --gold-label: #c4962e;
  --gold-label-bg: rgba(196, 150, 46, 0.16);
  --gold-label-border: rgba(196, 150, 46, 0.28);
}

.hero[data-hero-theme="light-warm"] {
  --theme-accent: #a9741a;
  --theme-accent-hover: #8f6216;
  --panel-bg: #faf7f2;
  --panel-bg-strong: #fff;
  --panel-border: rgba(180, 155, 120, 0.45);
  --panel-text: #1a2332;
  --panel-text-muted: #4b5563;
  --panel-text-sub: #5b6472;
  --panel-divider: rgba(26, 35, 50, 0.12);
  --panel-progress: rgba(26, 35, 50, 0.14);
  --panel-shadow: 0 6px 28px rgba(26, 35, 50, 0.14);
  --panel-hover: #fff;
  --panel-icon-bg: rgba(169, 116, 26, 0.16);
}

.hero[data-hero-theme="light-frost"] {
  --theme-accent: #1a2332;
  --theme-accent-hover: #0f1520;
  --panel-bg: #fff;
  --panel-bg-strong: #fff;
  --panel-border: rgba(26, 35, 50, 0.16);
  --panel-text: #1a2332;
  --panel-text-muted: #374151;
  --panel-text-sub: #5b6472;
  --panel-divider: rgba(26, 35, 50, 0.1);
  --panel-progress: rgba(26, 35, 50, 0.12);
  --panel-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --panel-hover: #fff;
  --panel-icon-bg: rgba(26, 35, 50, 0.07);
}

.hero[data-hero-theme="light-pearl"] {
  --theme-accent: #334155;
  --theme-accent-hover: #1e293b;
  --panel-bg: #f8fafc;
  --panel-bg-strong: #fff;
  --panel-border: rgba(100, 116, 139, 0.35);
  --panel-text: #1e293b;
  --panel-text-muted: #475569;
  --panel-text-sub: #64748b;
  --panel-divider: rgba(30, 41, 59, 0.1);
  --panel-progress: rgba(30, 41, 59, 0.12);
  --panel-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
  --panel-hover: #fff;
  --panel-icon-bg: rgba(51, 65, 85, 0.08);
}

.hero[data-hero-theme="light-read"] {
  --theme-accent: #a9741a;
  --theme-accent-hover: #8f6216;
  --panel-bg: #fff;
  --panel-bg-strong: #fff;
  --panel-border: rgba(26, 35, 50, 0.18);
  --panel-text: #1a2332;
  --panel-text-muted: #374151;
  --panel-text-sub: #5b6472;
  --panel-divider: rgba(26, 35, 50, 0.1);
  --panel-progress: rgba(26, 35, 50, 0.12);
  --panel-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
  --panel-hover: #fff;
  --panel-icon-bg: rgba(169, 116, 26, 0.14);
}

.hero[data-hero-theme="light-solid"] {
  --theme-accent: #a9741a;
  --theme-accent-hover: #8f6216;
  --panel-bg: #fff;
  --panel-bg-strong: #fff;
  --panel-border: rgba(26, 35, 50, 0.22);
  --panel-text: #0f1520;
  --panel-text-muted: #374151;
  --panel-text-sub: #5b6472;
  --panel-divider: rgba(15, 21, 32, 0.12);
  --panel-progress: rgba(15, 21, 32, 0.14);
  --panel-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  --panel-hover: #fff;
  --panel-icon-bg: rgba(169, 116, 26, 0.16);
}

/* Extravisa light themes: left scrim only, video clear on the right */
.hero[data-hero-theme="light-warm"] .hero__shade {
  background:
    linear-gradient(to right, rgba(247, 244, 239, 0.78) 0%, rgba(247, 244, 239, 0.42) 32%, transparent 50%),
    linear-gradient(to top, rgba(247, 244, 239, 0.38) 0%, transparent 42%);
}

.hero[data-hero-theme="light-frost"] .hero__shade {
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.35) 30%, transparent 48%),
    linear-gradient(to top, rgba(255, 255, 255, 0.32) 0%, transparent 40%);
}

.hero[data-hero-theme="light-pearl"] .hero__shade {
  background:
    linear-gradient(to right, rgba(248, 250, 252, 0.75) 0%, rgba(248, 250, 252, 0.38) 32%, transparent 50%),
    linear-gradient(to top, rgba(248, 250, 252, 0.35) 0%, transparent 42%);
}

.hero[data-hero-theme="light-read"] .hero__shade {
  background:
    linear-gradient(to right, rgba(255, 252, 246, 0.82) 0%, rgba(255, 252, 246, 0.48) 34%, transparent 52%),
    linear-gradient(to top, rgba(255, 255, 255, 0.4) 0%, transparent 44%);
}

.hero[data-hero-theme="light-solid"] .hero__shade {
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.32) 30%, transparent 46%),
    linear-gradient(to top, rgba(255, 255, 255, 0.35) 0%, transparent 40%);
}

.hero[data-hero-theme^="light-"] .hero__text::before {
  display: block;
  background: radial-gradient(ellipse 95% 88% at 0% 42%, rgba(255, 252, 246, 0.72) 0%, transparent 70%);
}
.hero[data-hero-theme="light-frost"] .hero__text::before,
.hero[data-hero-theme="light-pearl"] .hero__text::before {
  background: radial-gradient(ellipse 95% 88% at 0% 42%, rgba(255, 255, 255, 0.75) 0%, transparent 70%);
}

.hero[data-hero-theme^="light-"] .hero__eyebrow {
  color: #5c420f;
  text-shadow: none;
}

.hero[data-hero-theme="comp-boundless"] .hero__eyebrow { color: #5c420f; text-shadow: none; }
.hero[data-hero-theme="comp-manifest"] .hero__eyebrow { color: #313131; text-shadow: none; }

.hero[data-hero-theme^="light-"] .hero__text h1 {
  color: #1a2332;
  text-shadow: none;
}
.hero[data-hero-theme^="light-"] .hero__text h1 em { color: #a9741a; }
.hero[data-hero-theme="light-frost"] .hero__text h1 em,
.hero[data-hero-theme="light-pearl"] .hero__text h1 em { color: #1a2332; }

.hero[data-hero-theme^="light-"] .hero__lead {
  color: #374151;
  text-shadow: none;
}

.hero[data-hero-theme^="light-"] .hero__subcta-link {
  color: #1a2332;
  text-shadow: none;
}
.hero[data-hero-theme^="light-"] .hero__subcta-link:hover { color: #a9741a; }
.hero[data-hero-theme^="light-"] .hero__subcta-arrow { color: #a9741a; }
.hero[data-hero-theme^="light-"] .hero__subcta-link--alt {
  color: #5b6472;
}
.hero[data-hero-theme^="light-"] .hero__subcta-link--alt:hover { color: #1a2332; }

.hero[data-hero-theme^="light-"] .btn--gold {
  background: var(--theme-accent, var(--gold));
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}
.hero[data-hero-theme^="light-"] .btn--gold:hover {
  background: var(--theme-accent-hover, var(--gold-hover));
}

.hero[data-hero-theme="light-frost"] .btn--gold,
.hero[data-hero-theme="light-pearl"] .btn--gold {
  background: #1a2332;
  color: #fff;
}
.hero[data-hero-theme="light-frost"] .btn--gold:hover,
.hero[data-hero-theme="light-pearl"] .btn--gold:hover { background: #0f1520; }

.hero[data-hero-theme^="light-"] .btn--glass {
  background: #fff;
  color: #1a2332;
  border: 1.5px solid rgba(26, 35, 50, 0.28);
  backdrop-filter: none;
}
.hero[data-hero-theme^="light-"] .btn--glass:hover {
  background: #f9fafb;
  border-color: rgba(26, 35, 50, 0.4);
}

.hero[data-hero-theme^="light-"] .hero__stats,
.hero[data-hero-theme^="light-"] .hero__route,
.hero[data-hero-theme^="light-"] .hero__quiz {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero[data-hero-theme^="light-"] .hero__route-arrow {
  background: rgba(169, 116, 26, 0.12);
  color: #a9741a;
}

.hero[data-hero-theme^="light-"] .hero__quiz-progress span.is-active {
  background: var(--theme-accent, var(--gold));
}

.hero[data-hero-theme^="light-"] {
  --gold-label: #7a5512;
  --gold-label-bg: rgba(169, 116, 26, 0.14);
  --gold-label-border: rgba(122, 85, 18, 0.24);
}

.page-home:has(.hero[data-hero-theme^="light-"]) .header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(26, 35, 50, 0.08);
  backdrop-filter: blur(10px);
}
.page-home:has(.hero[data-hero-theme^="light-"]) .logo__name,
.page-home:has(.hero[data-hero-theme^="light-"]) .nav__link,
.page-home:has(.hero[data-hero-theme^="light-"]) .header__burger { color: #1a2332; }
.page-home:has(.hero[data-hero-theme^="light-"]) .logo__tag { color: #5b6472; opacity: 1; }
.page-home:has(.hero[data-hero-theme^="light-"]) .header__nav { border-top-color: rgba(26, 35, 50, 0.08); }
.page-home:has(.hero[data-hero-theme^="light-"]) .topbar { background: #1a2332; }

.page-home:has(.hero[data-hero-theme^="light-"]) .hero__trust {
  background: #fff;
  border-top-color: rgba(26, 35, 50, 0.08);
}
.page-home:has(.hero[data-hero-theme^="light-"]) .hero__trust-label,
.page-home:has(.hero[data-hero-theme^="light-"]) .trust-logo { color: #68707d; }
.page-home:has(.hero[data-hero-theme^="light-"]) .trust-logo--icon { background: #68707d; }

/* ── Competitor preview themes (palette from live sites) ── */

.hero[data-hero-theme="comp-boundless"] {
  --theme-accent: #8f6216;
  --theme-accent-hover: #7a5512;
  --theme-accent-light: #c4962e;
  --theme-accent-blue: #4d65ff;
  --panel-bg: #fff;
  --panel-bg-strong: #fff;
  --panel-border: rgba(178, 165, 149, 0.65);
  --panel-text: #191f1d;
  --panel-text-muted: #4a443c;
  --panel-text-sub: #6b6358;
  --panel-divider: rgba(25, 31, 29, 0.12);
  --panel-progress: rgba(25, 31, 29, 0.14);
  --panel-shadow: 0 8px 32px rgba(25, 31, 29, 0.14);
  --panel-hover: #fff;
  --panel-icon-bg: rgba(169, 116, 26, 0.16);
  --trust-bg: #f6f3ef;
  --trust-text: #6b5a44;
  --gold-label: #7a5512;
  --gold-label-bg: rgba(169, 116, 26, 0.14);
  --gold-label-border: rgba(122, 85, 18, 0.24);
}

.hero[data-hero-theme="comp-boundless"] .hero__shade {
  background:
    linear-gradient(to right, rgba(246, 243, 239, 0.76) 0%, rgba(246, 243, 239, 0.38) 32%, transparent 50%),
    linear-gradient(to top, rgba(246, 243, 239, 0.35) 0%, transparent 40%);
}

.hero[data-hero-theme="comp-boundless"] .hero__text::before {
  display: block;
  background: radial-gradient(ellipse 95% 88% at 0% 42%, rgba(246, 243, 239, 0.78) 0%, transparent 70%);
}

.hero[data-hero-theme="comp-boundless"] .hero__text h1 {
  color: #191f1d;
  text-shadow: none;
}
.hero[data-hero-theme="comp-boundless"] .hero__text h1 em { color: #a9741a; }
.hero[data-hero-theme="comp-boundless"] .hero__lead {
  color: #4a443c;
  text-shadow: none;
}
.hero[data-hero-theme="comp-boundless"] .hero__subcta-link {
  color: #191f1d;
  text-shadow: none;
}
.hero[data-hero-theme="comp-boundless"] .hero__subcta-link:hover { color: #a9741a; }
.hero[data-hero-theme="comp-boundless"] .hero__subcta-arrow { color: #a9741a; }
.hero[data-hero-theme="comp-boundless"] .hero__subcta-link--alt { color: #6b6358; }
.hero[data-hero-theme="comp-boundless"] .hero__subcta-link--alt:hover { color: #191f1d; }
.hero[data-hero-theme="comp-boundless"] .btn--gold {
  background: var(--theme-accent);
  box-shadow: 0 4px 16px rgba(169, 116, 26, 0.32);
}
.hero[data-hero-theme="comp-boundless"] .btn--gold:hover { background: var(--theme-accent-hover); }
.hero[data-hero-theme="comp-boundless"] .btn--glass {
  background: #fff;
  color: #191f1d;
  border: 1.5px solid rgba(25, 31, 29, 0.32);
  backdrop-filter: none;
}
.hero[data-hero-theme="comp-boundless"] .btn--glass:hover {
  background: #faf8f5;
  border-color: rgba(25, 31, 29, 0.45);
}
.hero[data-hero-theme="comp-boundless"] .hero__route-icon { color: #a9741a; }
.hero[data-hero-theme="comp-boundless"] .hero__route-arrow {
  background: rgba(169, 116, 26, 0.14);
  color: #a9741a;
}
.hero[data-hero-theme="comp-boundless"] .hero__stats,
.hero[data-hero-theme="comp-boundless"] .hero__route,
.hero[data-hero-theme="comp-boundless"] .hero__quiz {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero[data-hero-theme="comp-manifest"] {
  --theme-accent: #1a1a1a;
  --theme-accent-hover: #313131;
  --theme-accent-light: #555;
  --panel-bg: #fff;
  --panel-bg-strong: #fff;
  --panel-border: rgba(0, 0, 0, 0.12);
  --panel-text: #313131;
  --panel-text-muted: #5a5a5a;
  --panel-text-sub: #888;
  --panel-divider: rgba(0, 0, 0, 0.1);
  --panel-progress: rgba(0, 0, 0, 0.12);
  --panel-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
  --panel-hover: #fff;
  --panel-icon-bg: rgba(49, 49, 49, 0.08);
  --trust-bg: #fafafa;
  --trust-text: #666;
}

.hero[data-hero-theme="comp-manifest"] .hero__shade {
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.32) 30%, transparent 48%),
    linear-gradient(to top, rgba(255, 255, 255, 0.32) 0%, transparent 40%);
}

.hero[data-hero-theme="comp-manifest"] .hero__text::before {
  display: block;
  background: radial-gradient(ellipse 95% 88% at 0% 42%, rgba(255, 255, 255, 0.76) 0%, transparent 70%);
}

.hero[data-hero-theme="comp-manifest"] .hero__eyebrow { color: #313131; text-shadow: none; }
.hero[data-hero-theme="comp-manifest"] .hero__text h1 {
  color: #313131;
  text-shadow: none;
}
.hero[data-hero-theme="comp-manifest"] .hero__text h1 em {
  color: #313131;
  text-decoration: underline;
  text-decoration-color: rgba(49, 49, 49, 0.25);
  text-underline-offset: 6px;
}
.hero[data-hero-theme="comp-manifest"] .hero__lead {
  color: #5a5a5a;
  text-shadow: none;
}
.hero[data-hero-theme="comp-manifest"] .hero__subcta-link {
  color: #313131;
  text-shadow: none;
}
.hero[data-hero-theme="comp-manifest"] .hero__subcta-link:hover { color: #1a1a1a; }
.hero[data-hero-theme="comp-manifest"] .hero__subcta-arrow { color: #313131; }
.hero[data-hero-theme="comp-manifest"] .hero__subcta-link--alt { color: #888; }
.hero[data-hero-theme="comp-manifest"] .btn--gold {
  background: #313131;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.hero[data-hero-theme="comp-manifest"] .btn--gold:hover { background: #1a1a1a; }
.hero[data-hero-theme="comp-manifest"] .btn--glass {
  background: #fff;
  color: #313131;
  border: 1.5px solid rgba(49, 49, 49, 0.3);
  backdrop-filter: none;
}
.hero[data-hero-theme="comp-manifest"] .hero__route-icon { color: #313131; border-color: rgba(0,0,0,0.12); }
.hero[data-hero-theme="comp-manifest"] .hero__quiz-label {
  color: #313131;
  background: #f5f5f5;
  border-color: #ccc;
}

.hero[data-hero-theme="comp-wegreened"] .hero__quiz-label {
  color: #1b325f;
  background: #f0f4fa;
  border-color: #bfc4ce;
}

.hero[data-hero-theme="comp-plaksin"] .hero__quiz-label {
  color: #153860;
  background: #fff8f0;
  border-color: #f89838;
}
.hero[data-hero-theme="comp-manifest"] .hero__route-arrow {
  background: rgba(0, 0, 0, 0.06);
  color: #313131;
}
.hero[data-hero-theme="comp-manifest"] .hero__stats,
.hero[data-hero-theme="comp-manifest"] .hero__route,
.hero[data-hero-theme="comp-manifest"] .hero__quiz {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero[data-hero-theme="comp-wegreened"] {
  --theme-accent: #1b325f;
  --theme-accent-hover: #152847;
  --theme-accent-light: #2a4a7a;
  --panel-bg: #fff;
  --panel-bg-strong: #fff;
  --panel-border: rgba(191, 196, 206, 0.95);
  --panel-text: #222;
  --panel-text-muted: #555;
  --panel-text-sub: #777;
  --panel-divider: rgba(27, 50, 95, 0.12);
  --panel-progress: rgba(27, 50, 95, 0.16);
  --panel-shadow: 0 6px 24px rgba(27, 50, 95, 0.12);
  --panel-hover: #fff;
  --panel-icon-bg: rgba(27, 50, 95, 0.1);
  --trust-bg: #f9f9f9;
  --trust-text: #666;
}

.hero[data-hero-theme="comp-wegreened"] .hero__shade {
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.34) 30%, transparent 48%),
    linear-gradient(to top, rgba(249, 249, 249, 0.35) 0%, transparent 42%);
}

.hero[data-hero-theme="comp-wegreened"] .hero__text::before {
  display: block;
  background: radial-gradient(ellipse 95% 88% at 0% 42%, rgba(255, 255, 255, 0.74) 0%, transparent 70%);
}

.hero[data-hero-theme="comp-wegreened"] .hero__eyebrow { color: #1b325f; }
.hero[data-hero-theme="comp-wegreened"] .hero__text h1 {
  color: #1b325f;
  text-shadow: none;
}
.hero[data-hero-theme="comp-wegreened"] .hero__text h1 em { color: #2a4a7a; }
.hero[data-hero-theme="comp-wegreened"] .hero__lead {
  color: #555;
  text-shadow: none;
}
.hero[data-hero-theme="comp-wegreened"] .hero__subcta-link {
  color: #1b325f;
  text-shadow: none;
}
.hero[data-hero-theme="comp-wegreened"] .hero__subcta-link:hover { color: #152847; }
.hero[data-hero-theme="comp-wegreened"] .hero__subcta-arrow { color: #2a4a7a; }
.hero[data-hero-theme="comp-wegreened"] .hero__subcta-link--alt { color: #777; }
.hero[data-hero-theme="comp-wegreened"] .btn--gold {
  background: #1b325f;
  box-shadow: 0 4px 14px rgba(27, 50, 95, 0.3);
}
.hero[data-hero-theme="comp-wegreened"] .btn--gold:hover { background: #152847; }
.hero[data-hero-theme="comp-wegreened"] .btn--glass {
  background: #fff;
  color: #1b325f;
  border: 1.5px solid rgba(27, 50, 95, 0.38);
  backdrop-filter: none;
}
.hero[data-hero-theme="comp-wegreened"] .hero__route-icon { color: #1b325f; border-color: rgba(27, 50, 95, 0.25); }
.hero[data-hero-theme="comp-wegreened"] .hero__route-arrow {
  background: rgba(27, 50, 95, 0.08);
  color: #1b325f;
}
.hero[data-hero-theme="comp-wegreened"] .hero__stats,
.hero[data-hero-theme="comp-wegreened"] .hero__route,
.hero[data-hero-theme="comp-wegreened"] .hero__quiz {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero[data-hero-theme="comp-plaksin"] {
  --theme-accent: #f89838;
  --theme-accent-hover: #ed514c;
  --theme-accent-light: #ffaa34;
  --panel-bg: #fff;
  --panel-bg-strong: #fff;
  --panel-border: rgba(21, 56, 96, 0.22);
  --panel-text: #153860;
  --panel-text-muted: #4a6280;
  --panel-text-sub: #969696;
  --panel-divider: rgba(21, 56, 96, 0.12);
  --panel-progress: rgba(21, 56, 96, 0.14);
  --panel-shadow: 0 8px 28px rgba(21, 56, 96, 0.14);
  --panel-hover: #fff;
  --panel-icon-bg: rgba(248, 152, 56, 0.16);
  --trust-bg: #fff;
  --trust-text: #153860;
}

.hero[data-hero-theme="comp-plaksin"] .hero__shade {
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.36) 32%, transparent 50%),
    linear-gradient(to top, rgba(255, 255, 255, 0.34) 0%, transparent 40%);
}

.hero[data-hero-theme="comp-plaksin"] .hero__text::before {
  display: block;
  background: radial-gradient(ellipse 95% 88% at 0% 42%, rgba(255, 255, 255, 0.76) 0%, transparent 70%);
}

.hero[data-hero-theme="comp-plaksin"] .hero__eyebrow { color: #f89838; }
.hero[data-hero-theme="comp-plaksin"] .hero__text h1 {
  color: #153860;
  text-shadow: none;
}
.hero[data-hero-theme="comp-plaksin"] .hero__text h1 em { color: #f89838; }
.hero[data-hero-theme="comp-plaksin"] .hero__lead {
  color: #4a6280;
  text-shadow: none;
}
.hero[data-hero-theme="comp-plaksin"] .hero__subcta-link {
  color: #153860;
  text-shadow: none;
}
.hero[data-hero-theme="comp-plaksin"] .hero__subcta-link:hover { color: #f89838; }
.hero[data-hero-theme="comp-plaksin"] .hero__subcta-arrow { color: #f89838; }
.hero[data-hero-theme="comp-plaksin"] .hero__subcta-link--alt { color: #969696; }
.hero[data-hero-theme="comp-plaksin"] .btn--gold {
  background: linear-gradient(to bottom, #ffd940 0%, #ffaa34 100%);
  color: #153860;
  box-shadow: 0 4px 16px rgba(248, 152, 56, 0.38);
}
.hero[data-hero-theme="comp-plaksin"] .btn--gold:hover {
  background: linear-gradient(to bottom, #ffaa34 0%, #f89838 100%);
  color: #fff;
}
.hero[data-hero-theme="comp-plaksin"] .btn--glass {
  background: #fff;
  color: #153860;
  border: 1.5px solid rgba(21, 56, 96, 0.38);
  backdrop-filter: none;
}
.hero[data-hero-theme="comp-plaksin"] .hero__route-icon { color: #f89838; border-color: rgba(248, 152, 56, 0.4); }
.hero[data-hero-theme="comp-plaksin"] .hero__route-arrow {
  background: rgba(248, 152, 56, 0.14);
  color: #f89838;
}
.hero[data-hero-theme="comp-plaksin"] .hero__stats,
.hero[data-hero-theme="comp-plaksin"] .hero__route,
.hero[data-hero-theme="comp-plaksin"] .hero__quiz {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Competitor themes: header + topbar sync */
.page-home:has(.hero[data-hero-theme="comp-boundless"]) .header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(211, 199, 185, 0.6);
  backdrop-filter: blur(12px);
}
.page-home:has(.hero[data-hero-theme="comp-boundless"]) .logo__name,
.page-home:has(.hero[data-hero-theme="comp-boundless"]) .nav__link,
.page-home:has(.hero[data-hero-theme="comp-boundless"]) .header__burger { color: #191f1d; }
.page-home:has(.hero[data-hero-theme="comp-boundless"]) .logo__tag { color: #8a7f72; opacity: 1; }
.page-home:has(.hero[data-hero-theme="comp-boundless"]) .header__nav { border-top-color: rgba(211, 199, 185, 0.6); }
.page-home:has(.hero[data-hero-theme="comp-boundless"]) .topbar {
  background: #191f1d;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.page-home:has(.hero[data-hero-theme="comp-manifest"]) .header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
.page-home:has(.hero[data-hero-theme="comp-manifest"]) .logo__name,
.page-home:has(.hero[data-hero-theme="comp-manifest"]) .nav__link,
.page-home:has(.hero[data-hero-theme="comp-manifest"]) .header__burger { color: #313131; }
.page-home:has(.hero[data-hero-theme="comp-manifest"]) .logo__tag { color: #888; opacity: 1; }
.page-home:has(.hero[data-hero-theme="comp-manifest"]) .topbar {
  background: #313131;
}

.page-home:has(.hero[data-hero-theme="comp-wegreened"]) .header {
  background: #1b325f;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
}
.page-home:has(.hero[data-hero-theme="comp-wegreened"]) .logo__name,
.page-home:has(.hero[data-hero-theme="comp-wegreened"]) .nav__link,
.page-home:has(.hero[data-hero-theme="comp-wegreened"]) .header__burger { color: #fff; }
.page-home:has(.hero[data-hero-theme="comp-wegreened"]) .logo__tag { color: rgba(255,255,255,0.7); opacity: 1; }
.page-home:has(.hero[data-hero-theme="comp-wegreened"]) .topbar {
  background: #152847;
}

.page-home:has(.hero[data-hero-theme="comp-plaksin"]) .header {
  background: #153860;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
}
.page-home:has(.hero[data-hero-theme="comp-plaksin"]) .logo__name,
.page-home:has(.hero[data-hero-theme="comp-plaksin"]) .nav__link,
.page-home:has(.hero[data-hero-theme="comp-plaksin"]) .header__burger { color: #fff; }
.page-home:has(.hero[data-hero-theme="comp-plaksin"]) .logo__tag { color: rgba(255,255,255,0.75); opacity: 1; }
.page-home:has(.hero[data-hero-theme="comp-plaksin"]) .topbar {
  background: #15467a;
}

.page-home:has(.hero[data-hero-theme="comp-boundless"]) .header__cta.btn--gold {
  background: #8f6216;
  box-shadow: 0 4px 12px rgba(169, 116, 26, 0.28);
}
.page-home:has(.hero[data-hero-theme="comp-boundless"]) .header__cta.btn--gold:hover { background: #7a5512; }

.page-home:has(.hero[data-hero-theme="comp-manifest"]) .header__cta.btn--gold {
  background: #313131;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.page-home:has(.hero[data-hero-theme="comp-manifest"]) .header__cta.btn--gold:hover { background: #1a1a1a; }

.page-home:has(.hero[data-hero-theme="comp-wegreened"]) .header__cta.btn--gold {
  background: #fff;
  color: #1b325f;
  box-shadow: none;
}
.page-home:has(.hero[data-hero-theme="comp-wegreened"]) .header__cta.btn--gold:hover { background: #f0f0f0; }

.page-home:has(.hero[data-hero-theme="comp-plaksin"]) .header__cta.btn--gold {
  background: linear-gradient(to bottom, #ffd940 0%, #ffaa34 100%);
  color: #153860;
  box-shadow: 0 4px 12px rgba(248, 152, 56, 0.3);
}
.page-home:has(.hero[data-hero-theme="comp-plaksin"]) .header__cta.btn--gold:hover {
  background: linear-gradient(to bottom, #ffaa34 0%, #f89838 100%);
  color: #fff;
}

/* Competitor themes: trust strip */
.page-home .hero[data-hero-theme="comp-boundless"] .hero__trust {
  background: var(--trust-bg, #f6f3ef);
  border-top-color: rgba(211, 199, 185, 0.5);
}
.page-home .hero[data-hero-theme="comp-boundless"] .hero__trust-label,
.page-home .hero[data-hero-theme="comp-boundless"] .trust-logo { color: var(--trust-text, #6b5a44); }
.page-home .hero[data-hero-theme="comp-boundless"] .trust-logo--icon { background: #b2a595; }

.page-home .hero[data-hero-theme="comp-manifest"] .hero__trust {
  background: #fafafa;
  border-top-color: rgba(0, 0, 0, 0.06);
}
.page-home .hero[data-hero-theme="comp-manifest"] .hero__trust-label,
.page-home .hero[data-hero-theme="comp-manifest"] .trust-logo { color: #888; }
.page-home .hero[data-hero-theme="comp-manifest"] .trust-logo--icon { background: #888; }

.page-home .hero[data-hero-theme="comp-wegreened"] .hero__trust {
  background: #f9f9f9;
  border-top-color: #bfc4ce;
}
.page-home .hero[data-hero-theme="comp-wegreened"] .hero__trust-label,
.page-home .hero[data-hero-theme="comp-wegreened"] .trust-logo { color: #666; }
.page-home .hero[data-hero-theme="comp-wegreened"] .trust-logo--icon { background: #1b325f; }

.page-home .hero[data-hero-theme="comp-plaksin"] .hero__trust {
  background: #fff;
  border-top-color: rgba(21, 56, 96, 0.12);
}
.page-home .hero[data-hero-theme="comp-plaksin"] .hero__trust-label,
.page-home .hero[data-hero-theme="comp-plaksin"] .trust-logo { color: #153860; opacity: 0.7; }
.page-home .hero[data-hero-theme="comp-plaksin"] .trust-logo--icon { background: #153860; }

.hero[data-hero-theme^="comp-"] .hero__subcta-link {
  text-shadow: none;
}

.hero[data-hero-theme^="comp-"] .hero__quiz-progress span.is-active {
  background: var(--theme-accent, var(--gold));
}

.hero[data-hero-theme="comp-boundless"] .hero__quiz-progress span.is-active { background: #8f6216; }
.hero[data-hero-theme="comp-manifest"] .hero__quiz-progress span.is-active { background: #313131; }
.hero[data-hero-theme="comp-wegreened"] .hero__quiz-progress span.is-active { background: #1b325f; }
.hero[data-hero-theme="comp-plaksin"] .hero__quiz-progress span.is-active { background: #f89838; }

/* Quiz card (position frozen; colors follow theme) */
.hero__quiz {
  border-radius: 20px;
  padding: 22px;
  background: var(--panel-bg-strong);
  backdrop-filter: blur(22px) saturate(1.45);
  -webkit-backdrop-filter: blur(22px) saturate(1.45);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.hero__quiz-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--panel-divider);
}

.hero__quiz-head img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--panel-border);
}

.hero__quiz-head strong {
  display: block;
  font-size: 14px;
  color: var(--panel-text);
}

.hero__quiz-head span {
  display: block;
  font-size: 11px;
  color: var(--panel-text-muted);
  margin-top: 2px;
  line-height: 1.35;
}

.hero__quiz-label {
  display: inline-block;
  margin: 0 0 8px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #5c420f;
  background: #faf6ee;
  border: 1px solid #d4bc82;
  border-radius: 999px;
  box-shadow: none;
}

.hero[data-hero-theme="dark"] .hero__quiz-label {
  color: #f0e6cc;
  background: rgba(255, 248, 235, 0.07);
  border-color: rgba(212, 188, 130, 0.42);
}

.hero__quiz-title {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--panel-text);
  line-height: 1.25;
}

.hero__quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.hero__quiz-progress span {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--panel-progress);
}

.hero__quiz-progress span.is-active { background: var(--gold); }

.hero__quiz-time {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 16px;
  font-size: 12px;
  color: var(--panel-text-muted);
}

.hero__quiz-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 12px 0 0;
  font-size: 11px;
  color: var(--panel-text-sub);
  line-height: 1.45;
}

/* Stats strip — glass */
.hero__stats.container,
.hero__routes.container {
  max-width: 1280px;
  padding-left: clamp(8px, 1.5vw, 20px);
  padding-right: clamp(8px, 1vw, 16px);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  background: var(--panel-bg);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--panel-text);
  border-right: 1px solid var(--panel-divider);
}

.hero__stat:last-child { border-right: none; }
.hero__stat strong { color: var(--panel-text); font-weight: 600; }
.hero__stat-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--panel-icon-bg);
  font-size: 14px;
}

.hero__stat-icon--ig {
  background: rgba(169, 116, 26, 0.18)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4962e' stroke-width='1.8'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='%23c4962e' stroke='none'/%3E%3C/svg%3E")
    center/18px no-repeat;
}

/* Route cards — glass */
.hero__routes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 0;
}

.hero__route {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  min-height: 140px;
  background: var(--panel-bg);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid var(--panel-border);
  transition: 0.18s ease;
  color: var(--panel-text);
  box-shadow: var(--panel-shadow);
}

.hero__route:hover {
  background: var(--panel-hover);
  border-color: var(--panel-border);
  transform: translateY(-2px);
}

.hero__route-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--panel-icon-bg);
  border: 1px solid rgba(169, 116, 26, 0.32);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}

.hero__route-body strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}

.hero__route-body span {
  display: block;
  font-size: 12px;
  color: var(--panel-text-muted);
  line-height: 1.45;
}

.hero__route-arrow {
  margin-top: auto;
  align-self: flex-end;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
  color: var(--gold-light);
}

/* Trust logos strip */
.hero__trust {
  margin-top: 0;
  width: 100%;
  background: rgba(247, 244, 239, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding: 26px 0 30px;
}

.hero__trust-label {
  margin: 0 0 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #6b5a44;
  letter-spacing: 0.01em;
}

.hero__trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
}

.trust-logo {
  font-size: 15px;
  font-weight: 600;
  color: #6b5a44;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.trust-logo--caps {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.trust-logo--icon {
  display: inline-block;
  width: 18px;
  height: 22px;
  background: #9a8060;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 814 1000'%3E%3Cpath d='M788.1 340.9c-5.8 4.5-108.2 62.2-108.2 190.5 0 148.4 130.3 200.9 134.2 202.2-.6 3.2-20.7 71.9-68.7 141.9-42.8 62.6-87.5 125-155.5 125-68 0-84.5-44.5-158.5-44.5-74 0-96.5 45.6-157.7 45.6-67.8 0-119.5-63.8-163.3-126.5-71.5-103.3-126.4-291.5-126.4-413.7 0-242 157.9-370 313.2-370 82.5 0 151.1 54.1 203.2 54.1 49.2 0 126.2-57.3 217.1-57.3 35.1 0 161.3 3.3 245 122.6zM554.1 120.6c36.2-43.7 61.6-104.3 61.6-165.1 0-8.5-.6-17-2-25.3-58.5 2.1-127.3 39-168.9 88.2-33.4 38.9-64.5 99.5-64.5 159.1 0 9.3 1.5 18.5 2.3 21.5 3.7.6 9.6 1.2 15.4 1.2 52.8 0 118.8-33.5 156.1-79.6z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 814 1000'%3E%3Cpath d='M788.1 340.9c-5.8 4.5-108.2 62.2-108.2 190.5 0 148.4 130.3 200.9 134.2 202.2-.6 3.2-20.7 71.9-68.7 141.9-42.8 62.6-87.5 125-155.5 125-68 0-84.5-44.5-158.5-44.5-74 0-96.5 45.6-157.7 45.6-67.8 0-119.5-63.8-163.3-126.5-71.5-103.3-126.4-291.5-126.4-413.7 0-242 157.9-370 313.2-370 82.5 0 151.1 54.1 203.2 54.1 49.2 0 126.2-57.3 217.1-57.3 35.1 0 161.3 3.3 245 122.6zM554.1 120.6c36.2-43.7 61.6-104.3 61.6-165.1 0-8.5-.6-17-2-25.3-58.5 2.1-127.3 39-168.9 88.2-33.4 38.9-64.5 99.5-64.5 159.1 0 9.3 1.5 18.5 2.3 21.5 3.7.6 9.6 1.2 15.4 1.2 52.8 0 118.8-33.5 156.1-79.6z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.trust-logo--stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-logo--stack span:last-child {
  font-size: 11px;
  letter-spacing: 0.02em;
}

.hero__theme-picker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(138, 115, 85, 0.2);
}

.hero__theme-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero__theme-label {
  font-size: 12px;
  color: #6b5a44;
  margin-right: 4px;
}

.hero__theme-btn {
  border: 1px solid rgba(138, 115, 85, 0.35);
  background: rgba(255, 255, 255, 0.65);
  color: #5c4d3a;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.15s;
}

.hero__theme-btn:hover {
  background: #fff;
  border-color: var(--gold);
}

.hero__theme-btn.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.hero__theme-btn--boundless.is-active { background: #8f6216; border-color: #8f6216; color: #fff; }
.hero__theme-btn--manifest.is-active { background: #313131; border-color: #313131; }
.hero__theme-btn--wegreened.is-active { background: #1b325f; border-color: #1b325f; }
.hero__theme-btn--plaksin.is-active { background: #f89838; border-color: #f89838; color: #153860; }

/* Intent section (below hero) */
.intent {
  background: #f7f4ef;
  padding: 56px 0 64px;
}

.intent__inner {
  max-width: 1280px;
}

.intent__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.intent__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c420f;
}

.intent__title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a2332;
}

.intent__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5c6370;
}

.intent__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.intent__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 210px;
  padding: 20px 18px 18px;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 35, 50, 0.06);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  color: inherit;
}

.intent__card:hover {
  border-color: rgba(169, 116, 26, 0.45);
  box-shadow: 0 8px 28px rgba(26, 35, 50, 0.1);
  transform: translateY(-2px);
}

.intent__card.is-featured {
  border-color: rgba(169, 116, 26, 0.55);
  box-shadow: 0 8px 28px rgba(169, 116, 26, 0.1);
}

.intent__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #faf6ee center/22px no-repeat;
  border: 1px solid rgba(212, 188, 130, 0.45);
  flex-shrink: 0;
}

.intent__card.is-featured .intent__card-icon {
  background-color: rgba(169, 116, 26, 0.1);
  border-color: rgba(169, 116, 26, 0.35);
}

.intent__card-icon--work {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V5a2 2 0 012-2h4a2 2 0 012 2v2'/%3E%3C/svg%3E");
}

.intent__card-icon--study {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2332' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 10L12 5 2 10l10 5 10-5z'/%3E%3Cpath d='M6 12v5c0 1 3 3 6 3s6-2 6-3v-5'/%3E%3C/svg%3E");
}

.intent__card-icon--business {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2332' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='1'/%3E%3Cpath d='M9 21V9h6v12M9 12h6'/%3E%3C/svg%3E");
}

.intent__card-icon--greencard {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2332' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M2 12h20M12 3a15 15 0 010 18M12 3a15 15 0 000 18'/%3E%3C/svg%3E");
}

.intent__card-icon--family {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2332' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Ccircle cx='16' cy='9' r='2.5'/%3E%3Cpath d='M3 20c0-3.3 2.7-6 6-6s6 2.7 6 6M14 20c0-2.2 1.8-4 4-4'/%3E%3C/svg%3E");
}

.intent__card-icon--help {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2332' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M9.5 9a2.5 2.5 0 015 0c0 2-2.5 2-2.5 4M12 17h.01'/%3E%3C/svg%3E");
}

.intent__card-body strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a2332;
  margin-bottom: 6px;
}

.intent__card-body span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: #5b6472;
}

.intent__card-arrow {
  margin-top: auto;
  align-self: flex-end;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: #1a2332;
  background: #fff;
  border: 1.5px solid rgba(26, 35, 50, 0.18);
  transition: 0.18s ease;
}

.intent__card.is-featured .intent__card-arrow,
.intent__card:hover .intent__card-arrow {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.intent__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 35, 50, 0.05);
  overflow: hidden;
}

.intent__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 22px;
  border-right: 1px solid rgba(26, 35, 50, 0.08);
}

.intent__feature:last-child { border-right: none; }

.intent__feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.1) center/18px no-repeat;
}

.intent__feature-icon--strategy {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.5'/%3E%3Cpath d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7'/%3E%3C/svg%3E");
}

.intent__feature-icon--experience {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 8.5-7 9-4-.5-7-4.5-7-9V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.intent__feature-icon--globe {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M2 12h20M12 3a15 15 0 010 18M12 3a15 15 0 000 18'/%3E%3C/svg%3E");
}

.intent__feature-icon--support {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.4 4.9 5.4.8-3.9 3.8.9 5.3L12 15.8 7.2 17.8l.9-5.3-3.9-3.8 5.4-.8L12 3z'/%3E%3C/svg%3E");
}

.intent__feature-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #1a2332;
  margin-bottom: 4px;
}

.intent__feature-body span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: #5b6472;
}

/* Solutions section */
.solutions {
  background: #fff;
  padding: 56px 0 64px;
  border-top: 1px solid rgba(26, 35, 50, 0.06);
}

.solutions__inner {
  max-width: 1280px;
}

.solutions__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.solutions__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c420f;
}

.solutions__title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a2332;
}

.solutions__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5c6370;
}

.solutions__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.solutions__card {
  position: relative;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.1);
  box-shadow: 0 8px 32px rgba(26, 35, 50, 0.08);
}

.solutions__card-bg {
  position: absolute;
  inset: 0;
  background-color: #dce3ea;
  background-image:
    linear-gradient(to right, #fff 0%, #fff 42%, rgba(255, 255, 255, 0.92) 54%, rgba(255, 255, 255, 0.55) 68%, rgba(255, 255, 255, 0.15) 100%),
    var(--solutions-bg);
  background-size: auto, cover;
  background-position: center, center right;
  background-repeat: no-repeat;
}

.solutions__card--business .solutions__card-bg {
  background-color: #3d4f63;
}

.solutions__card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  max-width: 62%;
  padding: 28px 28px 24px;
}

.solutions__card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.solutions__card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.12) center/22px no-repeat;
  border: 1px solid rgba(169, 116, 26, 0.28);
}

.solutions__card-icon--person {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.5'/%3E%3Cpath d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7'/%3E%3C/svg%3E");
}

.solutions__card-icon--briefcase {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V5a2 2 0 012-2h4a2 2 0 012 2v2'/%3E%3C/svg%3E");
}

.solutions__card-title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a2332;
}

.solutions__card-sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #5b6472;
}

.solutions__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
}

.solutions__list li + li {
  border-top: 1px solid rgba(26, 35, 50, 0.08);
}

.solutions__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  color: inherit;
  transition: color 0.15s ease;
}

.solutions__link:hover {
  color: var(--gold);
}

.solutions__link:hover .solutions__link-arrow {
  color: var(--gold);
  transform: translateX(2px);
}

.solutions__link-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #faf6ee center/16px no-repeat;
  border: 1px solid rgba(212, 188, 130, 0.45);
}

.solutions__link-text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #1a2332;
}

.solutions__link:hover .solutions__link-text { color: var(--gold); }

.solutions__link-arrow {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: #68707d;
  transition: 0.15s ease;
}

.solutions__link-icon--star {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.4 4.9 5.4.8-3.9 3.8.9 5.3L12 15.8 7.2 17.8l.9-5.3-3.9-3.8 5.4-.8L12 3z'/%3E%3C/svg%3E");
}

.solutions__link-icon--doc {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z'/%3E%3Cpath d='M14 2v6h6M8 13h8M8 17h5'/%3E%3C/svg%3E");
}

.solutions__link-icon--talent {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l3 7h7l-5.5 4.5 2 7L12 17l-6.5 3.5 2-7L2 9h7l3-7z'/%3E%3C/svg%3E");
}

.solutions__link-icon--family {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='2.5'/%3E%3Ccircle cx='16' cy='9' r='2'/%3E%3Cpath d='M4 19c0-2.8 2.2-5 5-5s5 2.2 5 5M14 19c0-2.2 1.6-4 3.5-4.5'/%3E%3C/svg%3E");
}

.solutions__link-icon--study {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 10L12 5 2 10l10 5 10-5z'/%3E%3Cpath d='M6 12v5c0 1 3 3 6 3s6-2 6-3v-5'/%3E%3C/svg%3E");
}

.solutions__link-icon--work {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V5a2 2 0 012-2h4a2 2 0 012 2v2'/%3E%3C/svg%3E");
}

.solutions__link-icon--relocation {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-6 9 6v11a1 1 0 01-1 1H4a1 1 0 01-1-1V9z'/%3E%3Cpath d='M9 21V12h6v9'/%3E%3C/svg%3E");
}

.solutions__link-icon--h1b,
.solutions__link-icon--l1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='2'/%3E%3Cpath d='M8 7h8M8 11h8M8 15h5'/%3E%3C/svg%3E");
}

.solutions__link-icon--hiring {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='7' r='3'/%3E%3Cpath d='M2 20c0-3.3 2.7-6 6-6h2M16 11v6M13 14h6'/%3E%3C/svg%3E");
}

.solutions__link-icon--consult {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 01-4 4H8l-5 3V7a4 4 0 014-4h10a4 4 0 014 4v8z'/%3E%3C/svg%3E");
}

.solutions__cta {
  width: 100%;
  margin-top: auto;
  border-radius: 12px;
  padding: 14px 20px;
}

.solutions__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #faf8f5;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.solutions__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 22px;
  border-right: 1px solid rgba(26, 35, 50, 0.08);
}

.solutions__feature:last-child { border-right: none; }

.solutions__feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.1) center/18px no-repeat;
}

.solutions__feature-icon--approach {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l1.8 5.5H19l-4.5 3.3 1.7 5.2L12 14.8 7.8 17l1.7-5.2L5 8.5h5.2L12 3z'/%3E%3Cpath d='M8 21h8'/%3E%3C/svg%3E");
}

.solutions__feature-icon--experience {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 8.5-7 9-4-.5-7-4.5-7-9V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.solutions__feature-icon--globe {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M2 12h20M12 3a15 15 0 010 18M12 3a15 15 0 000 18'/%3E%3C/svg%3E");
}

.solutions__feature-icon--support {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.4 4.9 5.4.8-3.9 3.8.9 5.3L12 15.8 7.2 17.8l.9-5.3-3.9-3.8 5.4-.8L12 3z'/%3E%3C/svg%3E");
}

.solutions__feature-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #1a2332;
  margin-bottom: 4px;
}

.solutions__feature-body span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: #5b6472;
}

/* Programs section */
.programs {
  background: #f7f4ef;
  padding: 56px 0 64px;
}

.programs__inner {
  max-width: 1280px;
}

.programs__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.programs__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c420f;
}

.programs__title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a2332;
}

.programs__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5c6370;
}

.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.programs__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 22px 20px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.1);
  box-shadow: 0 4px 20px rgba(26, 35, 50, 0.06);
  overflow: hidden;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.programs__card:hover {
  border-color: rgba(169, 116, 26, 0.4);
  box-shadow: 0 10px 32px rgba(26, 35, 50, 0.1);
  transform: translateY(-2px);
}

.programs__card-bg {
  position: absolute;
  inset: 0;
  background-color: #eef1f5;
  background-image:
    linear-gradient(to right, #fff 0%, #fff 48%, rgba(255, 255, 255, 0.88) 62%, rgba(255, 255, 255, 0.35) 78%, transparent 100%),
    var(--programs-bg);
  background-size: auto, cover;
  background-position: center, center right;
  background-repeat: no-repeat;
  pointer-events: none;
}

.programs__card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 72%;
}

.programs__card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: #faf6ee center/22px no-repeat;
  border: 1px solid rgba(212, 188, 130, 0.45);
}

.programs__card-icon--trophy {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 21h8M12 17v4M7 4h10v5a5 5 0 01-10 0V4zM5 4H3v1a3 3 0 003 3M19 4h2v1a3 3 0 01-3 3'/%3E%3C/svg%3E");
}

.programs__card-icon--briefcase {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V5a2 2 0 012-2h4a2 2 0 012 2v2'/%3E%3C/svg%3E");
}

.programs__card-icon--star {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.4 4.9 5.4.8-3.9 3.8.9 5.3L12 15.8 7.2 17.8l.9-5.3-3.9-3.8 5.4-.8L12 3z'/%3E%3C/svg%3E");
}

.programs__card-icon--building {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='1'/%3E%3Cpath d='M9 7h.01M9 11h.01M9 15h.01M15 7h.01M15 11h.01M15 15h.01'/%3E%3C/svg%3E");
}

.programs__card-icon--badge {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='3' width='14' height='18' rx='2'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3Cpath d='M8 17h8'/%3E%3C/svg%3E");
}

.programs__card-icon--heart {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20.5l-1.2-1.1C5.4 14.8 2 11.9 2 8.5a4.5 4.5 0 018-2.5A4.5 4.5 0 0112 6a4.5 4.5 0 018 0 4.5 4.5 0 010 8c0 3.4-3.4 6.3-7.8 10.9L12 20.5z'/%3E%3C/svg%3E");
}

.programs__card-title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a2332;
}

.programs__card-sub {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.45;
  color: #5b6472;
}

.programs__points {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  flex: 1;
}

.programs__points li {
  position: relative;
  padding-left: 22px;
  font-size: 12px;
  line-height: 1.5;
  color: #4b5563;
}

.programs__points li + li {
  margin-top: 8px;
}

.programs__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.12) center/8px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6l2.2 2.2L9.5 3.5' stroke='%23a9741a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.programs__card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 4px;
}

.programs__more {
  font-size: 13px;
  font-weight: 600;
  color: #1a2332;
  transition: color 0.15s ease;
}

.programs__card:hover .programs__more {
  color: var(--gold);
}

.programs__arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: #1a2332;
  background: #fff;
  border: 1.5px solid rgba(26, 35, 50, 0.18);
  transition: 0.18s ease;
}

.programs__card:hover .programs__arrow {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.programs__cta {
  display: flex;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  padding: 15px 24px;
  font-size: 15px;
}

.programs__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #5b6472;
  text-align: center;
}

.programs__note svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* Visa picker flowchart */
.visa-picker {
  background: #fff;
  padding: 56px 0 0;
  border-top: 1px solid rgba(26, 35, 50, 0.06);
}

.visa-picker__inner {
  max-width: 1280px;
}

.visa-picker__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.visa-picker__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c420f;
}

.visa-picker__title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a2332;
}

.visa-picker__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5c6370;
}

.visa-picker__diagram {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}

.visa-picker__start {
  position: relative;
  padding: 20px 16px;
  background: #faf8f5;
  border: 1px dashed rgba(169, 116, 26, 0.45);
  border-radius: 16px;
}

.visa-picker__start::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 24px;
  border-top: 1px dashed rgba(169, 116, 26, 0.45);
}

.visa-picker__start-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.12) center/20px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.5'/%3E%3Cpath d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7'/%3E%3C/svg%3E");
}

.visa-picker__start strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a2332;
  margin-bottom: 6px;
}

.visa-picker__start p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #5b6472;
}

.visa-picker__flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.visa-picker__row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.15fr);
  gap: 16px;
  align-items: center;
}

.visa-picker__down {
  padding: 4px 0 4px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #68707d;
  line-height: 1;
}

.visa-picker__question {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.12);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(26, 35, 50, 0.05);
}

.visa-picker__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  width: 16px;
  border-top: 1px dashed rgba(169, 116, 26, 0.4);
}

.visa-picker__num {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.visa-picker__q-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #1a2332;
  font-weight: 500;
}

.visa-picker__answers {
  grid-column: 2;
  display: flex;
  gap: 8px;
}

.visa-picker__yes,
.visa-picker__no {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.visa-picker__yes {
  color: #5c420f;
  background: rgba(169, 116, 26, 0.14);
  border: 1px solid rgba(169, 116, 26, 0.28);
}

.visa-picker__no {
  color: #68707d;
  background: #f3f4f6;
  border: 1px solid rgba(26, 35, 50, 0.08);
}

.visa-picker__outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.visa-picker__outcomes--wide {
  display: block;
}

.visa-picker__outcome {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 calc(50% - 5px);
  min-width: 140px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.1);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26, 35, 50, 0.05);
  color: inherit;
  transition: 0.15s ease;
}

.visa-picker__outcome--wide,
.visa-picker__outcomes--wide .visa-picker__outcome {
  flex: 1 1 100%;
  width: 100%;
}

.visa-picker__outcome:hover {
  border-color: rgba(169, 116, 26, 0.4);
  box-shadow: 0 6px 20px rgba(26, 35, 50, 0.08);
}

.visa-picker__outcome-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #faf6ee center/18px no-repeat;
  border: 1px solid rgba(212, 188, 130, 0.45);
}

.visa-picker__outcome-icon--eb1a,
.visa-picker__outcome-icon--o1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.4 4.9 5.4.8-3.9 3.8.9 5.3L12 15.8 7.2 17.8l.9-5.3-3.9-3.8 5.4-.8L12 3z'/%3E%3C/svg%3E");
}

.visa-picker__outcome-icon--niw {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V5a2 2 0 012-2h4a2 2 0 012 2v2'/%3E%3C/svg%3E");
}

.visa-picker__outcome-icon--h1b,
.visa-picker__outcome-icon--l1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='2'/%3E%3Cpath d='M8 7h8M8 11h8M8 15h5'/%3E%3C/svg%3E");
}

.visa-picker__outcome-icon--e2,
.visa-picker__outcome-icon--eb5 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='1'/%3E%3Cpath d='M9 7h.01M9 11h.01M9 15h.01M15 7h.01M15 11h.01M15 15h.01'/%3E%3C/svg%3E");
}

.visa-picker__outcome-icon--family {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='2.5'/%3E%3Ccircle cx='16' cy='9' r='2'/%3E%3Cpath d='M4 19c0-2.8 2.2-5 5-5s5 2.2 5 5M14 19c0-2.2 1.6-4 3.5-4.5'/%3E%3C/svg%3E");
}

.visa-picker__outcome-body {
  flex: 1;
  min-width: 0;
}

.visa-picker__outcome-body strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a2332;
  margin-bottom: 2px;
}

.visa-picker__outcome-body span {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  color: #5b6472;
}

.visa-picker__outcome-arrow {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: #68707d;
}

.visa-picker__outcome:hover .visa-picker__outcome-arrow {
  color: var(--gold);
}

.visa-picker__stepper {
  margin-bottom: 28px;
  padding: 20px;
  background: #faf8f5;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 16px;
}

.visa-picker__stepper-start {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(26, 35, 50, 0.08);
}

.visa-picker__stepper-start strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: #1a2332;
}

.visa-picker__stepper-start p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #5b6472;
}

.visa-picker__stepper-body {
  margin-bottom: 16px;
}

.visa-picker__stepper-q {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  color: #1a2332;
}

.visa-picker__stepper-actions {
  display: flex;
  gap: 10px;
}

.visa-picker__stepper-actions button {
  flex: 1;
  padding: 12px 16px;
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s ease;
}

.visa-picker__stepper-yes {
  background: var(--gold);
  color: #fff;
  border: none;
}

.visa-picker__stepper-yes:hover {
  background: var(--gold-hover);
}

.visa-picker__stepper-no {
  background: #fff;
  color: #1a2332;
  border: 1px solid rgba(26, 35, 50, 0.14);
}

.visa-picker__stepper-outcomes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visa-picker__stepper-progress {
  margin: 16px 0 0;
  font-size: 12px;
  color: #68707d;
  text-align: center;
}

.visa-picker__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin: 0 -20px;
  padding: 24px 28px;
  background: #0f1520;
  color: #fff;
  border-radius: 0;
}

.visa-picker__bar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(169, 116, 26, 0.2) center/22px no-repeat;
  border: 1px solid rgba(196, 150, 46, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4962e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 01-4 4H8l-5 3V7a4 4 0 014-4h10a4 4 0 014 4v8z'/%3E%3C/svg%3E");
}

.visa-picker__bar-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
}

.visa-picker__bar-text span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.visa-picker__bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.visa-picker__bar-actions .btn {
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 13px;
}

.visa-picker__bar .btn--outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.visa-picker__bar .btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 1024px) {
  .visa-picker__stepper {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .visa-picker__diagram {
    display: none;
  }
}

/* Strategy / consultation section */
.strategy {
  background: #fff;
  padding: 56px 0 64px;
  border-top: 1px solid rgba(26, 35, 50, 0.06);
}

.strategy__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: start;
  max-width: 1280px;
}

.strategy__figure {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26, 35, 50, 0.12);
}

.strategy__figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: left center;
  background: #eef1f5;
}

.strategy__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(26, 35, 50, 0.14);
}

.strategy__badge-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(169, 116, 26, 0.1);
}

.strategy__badge-body strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a2332;
  margin-bottom: 2px;
}

.strategy__badge-body span {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  color: #5b6472;
}

.strategy__badge-body em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 11px;
  line-height: 1.4;
  color: #68707d;
}

.strategy__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c420f;
}

.strategy__title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a2332;
}

.strategy__lead {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.6;
  color: #5c6370;
}

.strategy__panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

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

.strategy__step {
  display: grid;
  grid-template-columns: 28px 40px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.strategy__step-num {
  width: 28px;
  height: 28px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.strategy__step-icon {
  width: 40px;
  height: 40px;
  margin-top: 2px;
  border-radius: 10px;
  background: #faf6ee center/22px no-repeat;
  border: 1px solid rgba(212, 188, 130, 0.45);
}

.strategy__step-icon--analysis {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E");
}

.strategy__step-icon--strategy {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 4V2M12 22v-2M4 12H2M22 12h-2'/%3E%3C/svg%3E");
}

.strategy__step-icon--documents {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z'/%3E%3Cpath d='M14 2v6h6M8 13h8M8 17h5'/%3E%3C/svg%3E");
}

.strategy__step-body strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: #1a2332;
  margin-bottom: 4px;
}

.strategy__step-body span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: #5b6472;
}

.strategy__step-arrow {
  list-style: none;
  padding: 6px 0 6px 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.strategy__includes {
  padding: 20px 18px;
  background: #faf8f5;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 16px;
}

.strategy__includes-title {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a2332;
}

.strategy__includes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.strategy__includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.strategy__includes-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.1) center/18px no-repeat;
}

.strategy__includes-icon--profile {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.5'/%3E%3Cpath d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7'/%3E%3C/svg%3E");
}

.strategy__includes-icon--chances {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V5M4 19h16M8 15v-3M12 15V9M16 15v-5'/%3E%3C/svg%3E");
}

.strategy__includes-icon--category {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 8.5-7 9-4-.5-7-4.5-7-9V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.strategy__includes-icon--roadmap {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6l6-2 6 2 6-2v14l-6 2-6-2-6 2V6z'/%3E%3Ccircle cx='9' cy='10' r='1.5'/%3E%3Ccircle cx='15' cy='14' r='1.5'/%3E%3C/svg%3E");
}

.strategy__includes-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #1a2332;
  margin-bottom: 3px;
}

.strategy__includes-body span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: #5b6472;
}

.strategy__cta {
  display: flex;
  width: 100%;
  border-radius: 12px;
  padding: 15px 24px;
  font-size: 15px;
}

.strategy__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: #68707d;
  text-align: center;
}

.strategy__note svg {
  flex-shrink: 0;
  color: #68707d;
}

/* Cases carousel */
.cases {
  background: #f7f4ef;
  padding: 56px 0 64px;
}

.cases__inner {
  max-width: 1280px;
}

.cases__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.cases__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c420f;
}

.cases__title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a2332;
}

.cases__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5c6370;
}

.cases__slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.cases__viewport {
  overflow: hidden;
}

.cases__track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.cases__card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 20px 18px 18px;
  background: #fff;
  border: 1.5px solid rgba(26, 35, 50, 0.1);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(26, 35, 50, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.cases__card.is-featured {
  border-color: rgba(169, 116, 26, 0.55);
  box-shadow: 0 10px 36px rgba(169, 116, 26, 0.12);
}

.cases__card-head {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.cases__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #eef1f5;
}

.cases__person strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a2332;
  margin-bottom: 2px;
}

.cases__person span {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  color: #5b6472;
}

.cases__visa {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #5c420f;
  background: rgba(169, 116, 26, 0.12);
  border: 1px solid rgba(169, 116, 26, 0.28);
  white-space: nowrap;
}

.cases__compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-bottom: 16px;
  padding: 14px;
  background: #faf8f5;
  border-radius: 12px;
  border: 1px solid rgba(26, 35, 50, 0.06);
}

.cases__compare-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #68707d;
}

.cases__compare-col p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #4b5563;
}

.cases__compare-arrow {
  align-self: center;
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
}

.cases__stats {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  flex: 1;
}

.cases__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.cases__stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.1) center/16px no-repeat;
}

.cases__stat-icon--time {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
}

.cases__stat-icon--shield {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 8.5-7 9-4-.5-7-4.5-7-9V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.cases__stat-icon--star {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.4 4.9 5.4.8-3.9 3.8.9 5.3L12 15.8 7.2 17.8l.9-5.3-3.9-3.8 5.4-.8L12 3z'/%3E%3C/svg%3E");
}

.cases__stat-body strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a2332;
  margin-bottom: 3px;
}

.cases__stat-body span {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  color: #5b6472;
}

.cases__read {
  width: 100%;
  margin-top: auto;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 13px;
}

.cases__nav {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 35, 50, 0.14);
  background: #fff;
  color: #1a2332;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.18s ease;
  box-shadow: 0 4px 16px rgba(26, 35, 50, 0.08);
}

.cases__nav:hover:not(:disabled) {
  border-color: rgba(169, 116, 26, 0.45);
  color: var(--gold);
}

.cases__nav:disabled {
  opacity: 0.35;
  cursor: default;
  box-shadow: none;
}

.cases__dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.cases__dots button {
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cases__dots button::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26, 35, 50, 0.16);
  transition: 0.18s ease;
}

.cases__dots button.is-active::after {
  width: 24px;
  border-radius: 999px;
  background: var(--gold);
}

.cases__cta {
  display: flex;
  width: 100%;
  border-radius: 12px;
  padding: 15px 24px;
  font-size: 15px;
}

.cases__note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #5b6472;
  text-align: center;
}

.cases--about {
  padding-top: 0;
  background: #fff;
}

/* Cases catalog page */
.page-cases {
  background: #fff;
}

.cases-hero {
  padding: clamp(44px, 5vw, 64px) 0 clamp(36px, 4vw, 52px);
  background: #faf8f5;
  overflow: visible;
}

.cases-hero .about-hero__stats-wrap {
  margin-top: clamp(-20px, -1.8vw, -10px);
}

.cases-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-rows: auto auto;
  gap: clamp(24px, 3.5vw, 36px) clamp(24px, 3vw, 40px);
  align-items: start;
  max-width: 1280px;
}

.cases-hero__content {
  grid-column: 1;
  grid-row: 1;
  max-width: 480px;
  padding: clamp(12px, 2vw, 28px) 0;
  z-index: 2;
}

.cases-hero__title {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.1;
  color: var(--navy);
}

.cases-hero__lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #4b5563;
  max-width: 440px;
}

.cases-hero__media {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  min-height: clamp(380px, 38vw, 480px);
  position: relative;
  align-self: stretch;
  border-radius: 0;
  overflow: hidden;
}

.cases-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #faf8f5 0%, rgba(250, 248, 245, 0.75) 6%, transparent 18%);
}

.cases-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 72% center;
}

.cases-seo-intro {
  padding: clamp(28px, 4vw, 44px) 0;
  background: #fff;
  border-bottom: 1px solid #e8e2d6;
}

.cases-seo-intro__inner {
  max-width: 720px;
}

.cases-seo-intro__text {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

.cases-seo-intro__heading {
  margin: 28px 0 10px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a2332;
}

.cases-seo-intro__heading:first-of-type {
  margin-top: 8px;
}

.cases-catalog {
  padding: clamp(24px, 3vw, 36px) 0 56px;
  background: #f7f4ef;
}

.cases-catalog__inner {
  max-width: 1280px;
}

.cases-catalog__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.cases-catalog__filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1.5px solid rgba(169, 116, 26, 0.35);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #5c420f;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(26, 35, 50, 0.05);
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.cases-catalog__filter:hover:not(.is-active) {
  border-color: rgba(169, 116, 26, 0.55);
  box-shadow: 0 4px 14px rgba(169, 116, 26, 0.1);
}

.cases-catalog__filter.is-active {
  border-color: transparent;
  background: linear-gradient(180deg, #c4962e 0%, #a9741a 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(169, 116, 26, 0.28);
}

.cases-catalog__filter-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: center/contain no-repeat;
  opacity: 0.95;
}

.cases-catalog__filter-icon--all {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l8 4.5v7L12 20l-8-6.5v-7L12 2z'/%3E%3Cpath d='M12 2v18M4 6.5l8 4.5 8-4.5'/%3E%3C/svg%3E");
}

.cases-catalog__filter-icon--eb1a {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.6 5.8 6.4.6-4.8 4.2 1.4 6.2L12 17.8 6.4 20l1.4-6.2L3 9.4l6.4-.6L12 3z'/%3E%3C/svg%3E");
}

.cases-catalog__filter-icon--niw {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='9' r='5'/%3E%3Cpath d='M8 14l-2 7 6-3 6 3-2-7'/%3E%3C/svg%3E");
}

.cases-catalog__filter-icon--o1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7'/%3E%3C/svg%3E");
}

.cases-catalog__filter-icon--l1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V5a4 4 0 018 0v2'/%3E%3C/svg%3E");
}

.cases-catalog__filter-icon--h1b {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3H6a2 2 0 00-2 2v14a2 2 0 002 2h12a2 2 0 002-2V9z'/%3E%3Cpath d='M14 3v6h6M9 13h6M9 17h4'/%3E%3C/svg%3E");
}

.cases-catalog__filter-icon--k1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20.5s-6.5-4.2-6.5-9a4.5 4.5 0 019 0c0 4.8-6.5 9-6.5 9z'/%3E%3C/svg%3E");
}

.cases-catalog__filter.is-active .cases-catalog__filter-icon--all {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l8 4.5v7L12 20l-8-6.5v-7L12 2z'/%3E%3Cpath d='M12 2v18M4 6.5l8 4.5 8-4.5'/%3E%3C/svg%3E");
}

.cases-catalog__filter.is-active .cases-catalog__filter-icon--eb1a {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.6 5.8 6.4.6-4.8 4.2 1.4 6.2L12 17.8 6.4 20l1.4-6.2L3 9.4l6.4-.6L12 3z'/%3E%3C/svg%3E");
}

.cases-catalog__filter.is-active .cases-catalog__filter-icon--niw {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='9' r='5'/%3E%3Cpath d='M8 14l-2 7 6-3 6 3-2-7'/%3E%3C/svg%3E");
}

.cases-catalog__filter.is-active .cases-catalog__filter-icon--o1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7'/%3E%3C/svg%3E");
}

.cases-catalog__filter.is-active .cases-catalog__filter-icon--l1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V5a4 4 0 018 0v2'/%3E%3C/svg%3E");
}

.cases-catalog__filter.is-active .cases-catalog__filter-icon--h1b {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3H6a2 2 0 00-2 2v14a2 2 0 002 2h12a2 2 0 002-2V9z'/%3E%3Cpath d='M14 3v6h6M9 13h6M9 17h4'/%3E%3C/svg%3E");
}

.cases-catalog__filter.is-active .cases-catalog__filter-icon--k1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20.5s-6.5-4.2-6.5-9a4.5 4.5 0 019 0c0 4.8-6.5 9-6.5 9z'/%3E%3C/svg%3E");
}

.cases-catalog__filter-label {
  white-space: nowrap;
}

.cases-catalog__filter-count {
  margin-left: 2px;
  font-weight: 600;
  opacity: 0.92;
}

.cases-catalog__filter.is-active .cases-catalog__filter-count {
  color: #fff;
}

.cases-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.cases-catalog__grid .cases__card {
  flex: none;
  min-width: 0;
  height: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.cases-catalog__grid .cases__card:hover {
  border-color: rgba(169, 116, 26, 0.45);
  box-shadow: 0 10px 32px rgba(26, 35, 50, 0.08);
  transform: translateY(-2px);
}

.cases-catalog__grid .cases__card[hidden] {
  display: none;
}

.cases-catalog__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 560px;
  margin: 8px auto 24px;
  padding: clamp(36px, 5vw, 48px) clamp(24px, 4vw, 40px);
  text-align: center;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(26, 35, 50, 0.06);
}

.cases-catalog__empty[hidden] {
  display: none;
}

.cases-catalog__grid[hidden] {
  display: none;
}

.cases-catalog__empty-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(169, 116, 26, 0.22);
  background: rgba(169, 116, 26, 0.06) center/36px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23a9741a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 17h20l-2 19H16L14 17z'/%3E%3Cpath d='M11 17l3-9h20l3 9'/%3E%3Cpath d='M19 17v-2h10v2'/%3E%3Ccircle cx='34' cy='34' r='7'/%3E%3Cpath d='M34 31v3l2 1.5'/%3E%3Cpath d='M32.5 34h3'/%3E%3C/svg%3E");
}

.cases-catalog__empty-title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.25;
  color: var(--navy);
}

.cases-catalog__empty-lead,
.cases-catalog__empty-sublead {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #5b6472;
}

.cases-catalog__empty-sublead {
  margin-bottom: 28px;
}

.cases-catalog__empty-cta {
  width: 100%;
  max-width: 320px;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 15px;
}

.cases-catalog__empty-or {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 20px 0 16px;
  font-size: 13px;
  color: #68707d;
}

.cases-catalog__empty-or span {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  background: #fff;
}

.cases-catalog__empty-or::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(26, 35, 50, 0.1);
}

.cases-catalog__empty-link {
  padding: 0;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: #5b6472;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s;
}

.cases-catalog__empty-link:hover {
  color: var(--gold);
}

.cases-catalog__note {
  margin: 24px 0 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.page-cases .closing-cta {
  margin-top: 0;
}

/* Case detail page */
.page-case {
  background: #fff;
}

.case-breadcrumbs {
  padding: 16px 0 0;
  background: #faf8f5;
}

.case-breadcrumbs__inner {
  max-width: 1280px;
}

.case-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.4;
  color: #5b6472;
}

.case-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
}

.case-breadcrumbs__item:not(:last-child)::after {
  content: "›";
  margin: 0 8px;
  color: #68707d;
}

.case-breadcrumbs__item a {
  color: #4b5563;
  transition: color 0.15s ease;
}

.case-breadcrumbs__item a:hover {
  color: var(--gold);
}

.case-breadcrumbs__item[aria-current="page"] span,
.case-breadcrumbs__item:last-child span {
  color: var(--navy);
  font-weight: 500;
}

.case-hero {
  padding: clamp(28px, 4vw, 44px) 0 clamp(24px, 3vw, 36px);
  background: #faf8f5;
}

.case-hero__grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  max-width: 1280px;
}

.case-hero__media {
  margin: 0;
  width: clamp(200px, 22vw, 280px);
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 12px 36px rgba(26, 35, 50, 0.12);
}

.case-hero__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.case-hero__visa {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(169, 116, 26, 0.35);
  background: rgba(169, 116, 26, 0.1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5c420f;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.case-hero__visa:hover {
  border-color: rgba(169, 116, 26, 0.55);
  background: rgba(169, 116, 26, 0.16);
}

.case-hero__title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  color: var(--navy);
}

.case-hero__role {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.5;
  color: #5b6472;
}

.case-compare {
  padding: 0 0 clamp(32px, 4vw, 44px);
  background: #faf8f5;
}

.case-compare__inner {
  max-width: 1280px;
}

.case-compare__box {
  margin: 0;
}

.case-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
  max-width: 1280px;
}

.case-sidebar {
  order: 2;
}

.case-body__main {
  order: 1;
}

.case-facts__row dd a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.case-facts__row dd a:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}

.case-facts__cta {
  width: 100%;
  margin-top: 20px;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 14px;
}

.case-facts__link {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #5b6472;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.case-facts__link:hover {
  color: var(--gold);
}

.case-page__note {
  padding: 0 0 clamp(32px, 4vw, 40px);
  background: #fff;
}

.case-page__note .cases__note {
  margin: 0;
}

.case-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-hero__stat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid rgba(26, 35, 50, 0.08);
  background: #fff;
}

.case-hero__stat-body strong {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
  line-height: 1.3;
  color: var(--navy);
}

.case-hero__stat-body span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: #5b6472;
}

.case-body {
  padding: clamp(40px, 5vw, 56px) 0 clamp(48px, 6vw, 72px);
}

.case-section {
  margin-bottom: clamp(32px, 4vw, 44px);
}

.case-section:last-child {
  margin-bottom: 0;
}

.case-section__title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

.case-section__prose {
  font-size: 16px;
  line-height: 1.65;
  color: #4b5563;
}

.case-section__prose p {
  margin: 0 0 14px;
}

.case-section__prose p:last-child {
  margin-bottom: 0;
}

.case-section__list {
  margin: 0;
  padding: 0 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.case-section__list li {
  margin-bottom: 10px;
}

.case-section__list li:last-child {
  margin-bottom: 0;
}

.case-section__list li::marker {
  color: var(--gold);
}

.case-section__outcome {
  margin: 0;
  padding: 16px 18px;
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  background: #faf8f5;
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
}

.case-timeline {
  margin-bottom: 0;
}

.case-quote {
  margin: clamp(32px, 4vw, 44px) 0 0;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 16px;
  border: 1px solid rgba(169, 116, 26, 0.22);
  background: linear-gradient(135deg, #faf8f5 0%, #fff 100%);
}

.case-quote__text {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--navy);
}

.case-quote__attribution {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #5c420f;
}

.case-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.case-facts {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(26, 35, 50, 0.08);
  background: #faf8f5;
  box-shadow: 0 8px 24px rgba(26, 35, 50, 0.06);
}

.case-facts__title {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

.case-facts__list {
  margin: 0;
}

.case-facts__row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26, 35, 50, 0.08);
}

.case-facts__row:first-child {
  padding-top: 0;
}

.case-facts__row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.case-facts__row dt {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5b6472;
}

.case-facts__row dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--navy);
}

.case-related {
  padding: clamp(40px, 5vw, 56px) 0;
  background: #f7f4ef;
}

.case-related__inner {
  max-width: 1280px;
}

.case-related__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.case-related__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

.case-related__all {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.15s ease;
}

.case-related__all:hover {
  color: var(--gold-hover);
}

.case-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.case-related__grid .cases__card {
  height: 100%;
}

.page-case .closing-cta {
  margin-top: 0;
}

/* Process section */
.process {
  position: relative;
  background: #fff;
  padding: 56px 0 64px;
  overflow: hidden;
}

.process__skyline {
  position: absolute;
  inset: 0;
  background-color: #f3f5f8;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 32%, rgba(255, 255, 255, 0.28) 52%, rgba(255, 255, 255, 0.06) 68%, transparent 100%),
    var(--process-bg);
  background-size: auto, cover;
  background-position: center, right bottom;
  background-repeat: no-repeat;
  pointer-events: none;
}

.process__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
}

.process__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.process__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c420f;
}

.process__title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a2332;
}

.process__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5c6370;
}

.process__steps-wrap {
  margin-bottom: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.process__steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 4px 0 8px;
  min-width: min(100%, 1120px);
}

.process__step {
  flex: 1 1 0;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 12px 16px;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(26, 35, 50, 0.06);
}

.process__connector {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  list-style: none;
}

.process__step-num {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.process__step-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.1) center/22px no-repeat;
  border: 1px solid rgba(169, 116, 26, 0.22);
}

.process__step-icon--consult {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.5'/%3E%3Cpath d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7'/%3E%3Cpath d='M17 8v2a3 3 0 01-3 3h-1'/%3E%3C/svg%3E");
}

.process__step-icon--plan {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='3' width='14' height='18' rx='2'/%3E%3Cpath d='M9 7h6M9 11h6M9 15h4'/%3E%3C/svg%3E");
}

.process__step-icon--documents {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z'/%3E%3Cpath d='M14 2v6h6M8 13h8M8 17h5'/%3E%3C/svg%3E");
}

.process__step-icon--submit {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 2L11 13M22 2l-7 20-4-9-9-4 20-7z'/%3E%3C/svg%3E");
}

.process__step-icon--support {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11v2a2 2 0 002 2h1l2 3 2-6h3a2 2 0 002-2v-2a8 8 0 00-16 0z'/%3E%3Cpath d='M9 11a3 3 0 016 0'/%3E%3C/svg%3E");
}

.process__step-icon--approval {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 8.5-7 9-4-.5-7-4.5-7-9V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.process__step-title {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a2332;
}

.process__step-text {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: #5b6472;
}

.process__values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.process__value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 14px;
}

.process__value-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.1) center/18px no-repeat;
}

.process__value-icon--transparency {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 8.5-7 9-4-.5-7-4.5-7-9V6l7-3z'/%3E%3C/svg%3E");
}

.process__value-icon--personal {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.5'/%3E%3Cpath d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7'/%3E%3C/svg%3E");
}

.process__value-icon--globe {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M2 12h20M12 3a15 15 0 010 18M12 3a15 15 0 000 18'/%3E%3C/svg%3E");
}

.process__value-icon--privacy {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='11' width='14' height='10' rx='2'/%3E%3Cpath d='M8 11V8a4 4 0 018 0v3'/%3E%3C/svg%3E");
}

.process__value-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #1a2332;
  margin-bottom: 4px;
}

.process__value-body span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: #5b6472;
}

.process__bar {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  background: #faf6ee;
  border: 1px solid rgba(212, 188, 130, 0.45);
  border-radius: 16px;
}

.process__bar-author {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.process__bar-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #eef1f5;
}

.process__bar-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a2332;
  margin-bottom: 4px;
}

.process__bar-author span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: #5b6472;
}

.process__bar-cta {
  border-radius: 12px;
  padding: 14px 28px;
  white-space: nowrap;
}

.process__bar-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: #68707d;
}

.process__bar-note svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* Why Extravisa section */
.why {
  position: relative;
  background: #f7f4ef;
  padding: 56px 0 64px;
  overflow: hidden;
}

.why__skyline {
  position: absolute;
  inset: 0;
  background-image: var(--why-bg);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.why__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
}

.why__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.why__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c420f;
}

.why__title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a2332;
}

.why__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5c6370;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.why__card {
  padding: 24px 22px 22px;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 35, 50, 0.06);
}

.why__card-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #faf6ee center/24px no-repeat;
  border: 1px solid rgba(212, 188, 130, 0.45);
}

.why__card-icon--unique {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z'/%3E%3Cpath d='M14 2v6h6M8 13h8M8 17h5'/%3E%3C/svg%3E");
}

.why__card-icon--experience {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='9' r='5'/%3E%3Cpath d='M8 14l-2 7 6-3 6 3-2-7'/%3E%3Cpath d='M12 7v2M12 4v1'/%3E%3C/svg%3E");
}

.why__card-icon--strategy {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.5'/%3E%3Cpath d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7'/%3E%3Cpath d='M19 8v2M19 5v1'/%3E%3C/svg%3E");
}

.why__card-icon--honest {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v18M7 7h10M6 12h12M7 17h10'/%3E%3Cpath d='M5 7l2 5-2 5M19 7l-2 5 2 5'/%3E%3C/svg%3E");
}

.why__card-icon--support {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11v2a2 2 0 002 2h1l2 3 2-6h3a2 2 0 002-2v-2a8 8 0 00-16 0z'/%3E%3Cpath d='M9 11a3 3 0 016 0'/%3E%3C/svg%3E");
}

.why__card-icon--talent {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 21h8M12 17v4M7 4h10v5a5 5 0 01-10 0V4z'/%3E%3Cpath d='M12 7l1 2 2 .3-1.5 1.5.4 2L12 12l-1.9 1.3.4-2L9 9.3 11 9l1-2z'/%3E%3C/svg%3E");
}

.why__card-title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a2332;
}

.why__card-line {
  display: block;
  width: 36px;
  height: 2px;
  margin-bottom: 12px;
  background: var(--gold);
  border-radius: 999px;
}

.why__card-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #5b6472;
}

.why__banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: 24px 26px;
  background: #faf6ee;
  border: 1px solid rgba(212, 188, 130, 0.45);
  border-radius: 18px;
}

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

.why__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.why__stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.1) center/18px no-repeat;
}

.why__stat-icon--clients {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Ccircle cx='16' cy='9' r='2.5'/%3E%3Cpath d='M3 19c0-3 2.2-5.5 6-5.5s6 2.5 6 5.5M14 19c0-2.2 1.5-4 3.5-4.3'/%3E%3C/svg%3E");
}

.why__stat-icon--approvals {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 8.5-7 9-4-.5-7-4.5-7-9V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.why__stat-icon--years {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M2 12h20M12 3a15 15 0 010 18M12 3a15 15 0 000 18'/%3E%3C/svg%3E");
}

.why__stat-icon--contact {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 01-4 4H8l-5 3V7a4 4 0 014-4h10a4 4 0 014 4v8z'/%3E%3C/svg%3E");
}

.why__stat-body strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a2332;
  margin-bottom: 4px;
}

.why__stat-body span {
  display: block;
  font-size: 11px;
  line-height: 1.45;
  color: #5b6472;
}

.why__banner-cta p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #4b5563;
}

.why__banner-btn {
  display: inline-flex;
  border-radius: 12px;
  padding: 14px 24px;
}

/* Materials section */
.materials {
  background: #fff;
  padding: 56px 0 64px;
  border-top: 1px solid rgba(26, 35, 50, 0.06);
}

.materials__inner {
  max-width: 1280px;
}

.materials__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.materials__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c420f;
}

.materials__title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a2332;
}

.materials__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5c6370;
}

.materials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.materials__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 35, 50, 0.06);
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.materials__card:hover {
  border-color: rgba(169, 116, 26, 0.4);
  box-shadow: 0 10px 32px rgba(26, 35, 50, 0.1);
  transform: translateY(-2px);
}

.materials__card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #eef1f5;
}

.materials__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.materials__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(26, 35, 50, 0.88);
}

.materials__badge-icon {
  width: 16px;
  height: 16px;
  background: center/14px no-repeat;
  flex-shrink: 0;
}

.materials__badge-icon--guides {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 016.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 014 19.5v-15A2.5 2.5 0 016.5 2z'/%3E%3C/svg%3E");
}

.materials__badge-icon--checklists {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='3' width='14' height='18' rx='2'/%3E%3Cpath d='M9 7h6M9 11h6M9 15h4'/%3E%3C/svg%3E");
}

.materials__badge-icon--bulletin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
}

.materials__badge-icon--news {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8a6 6 0 10-12 0c0 7-3 9-3 9h18s-3-2-3-9'/%3E%3Cpath d='M13.7 21a2 2 0 01-3.4 0'/%3E%3C/svg%3E");
}

.materials__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 16px 14px;
}

.materials__card-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a2332;
}

.materials__card-text {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.5;
  color: #5b6472;
  flex: 1;
}

.materials__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.15s ease;
}

.materials__card:hover .materials__card-cta {
  color: var(--gold-hover);
}

.materials__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(26, 35, 50, 0.08);
}

.materials__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  line-height: 1.35;
  color: #68707d;
}

.materials__meta-icon {
  width: 14px;
  height: 14px;
  background: center/12px no-repeat;
  flex-shrink: 0;
}

.materials__meta-icon--time {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.materials__meta-icon--date {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
}

.materials__meta-icon--doc {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z'/%3E%3Cpath d='M14 2v6h6'/%3E%3C/svg%3E");
}

.materials__banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  background: #faf6ee;
  border: 1px solid rgba(212, 188, 130, 0.45);
  border-radius: 16px;
}

.materials__banner-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(169, 116, 26, 0.12) center/26px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 016.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 014 19.5v-15A2.5 2.5 0 016.5 2z'/%3E%3C/svg%3E");
}

.materials__banner-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a2332;
  margin-bottom: 4px;
}

.materials__banner-text span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: #5b6472;
}

.materials__banner-btn {
  border-radius: 12px;
  padding: 14px 24px;
  white-space: nowrap;
}

/* Closing CTA (pre-footer) */
.closing-cta {
  position: relative;
  padding: 72px 0 0;
  color: #fff;
  overflow: hidden;
}

.closing-cta__bg {
  position: absolute;
  inset: 0;
  background-color: #0f1520;
  background-image:
    linear-gradient(to right, rgba(15, 21, 32, 0.94) 0%, rgba(15, 21, 32, 0.82) 38%, rgba(15, 21, 32, 0.45) 62%, rgba(15, 21, 32, 0.25) 100%),
    var(--closing-bg);
  background-size: auto, cover;
  background-position: center, center right;
  background-repeat: no-repeat;
}

.closing-cta__arcs {
  position: absolute;
  right: -8%;
  top: 10%;
  width: 55%;
  height: 80%;
  border: 1px solid rgba(196, 150, 46, 0.22);
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
}

.closing-cta__arcs::before,
.closing-cta__arcs::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(196, 150, 46, 0.16);
  border-radius: 50%;
}

.closing-cta__arcs::after {
  inset: 24%;
  border-color: rgba(196, 150, 46, 0.1);
}

.closing-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
}

.closing-cta__content {
  max-width: 560px;
  padding-bottom: 48px;
}

.closing-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.closing-cta__title {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
}

.closing-cta__title em {
  font-style: normal;
  color: var(--gold-light);
}

.closing-cta__lead {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.closing-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.closing-cta__btns .btn {
  border-radius: 12px;
  padding: 14px 24px;
}

.closing-cta__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 22px 0;
  background: rgba(8, 12, 20, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.closing-cta__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.closing-cta__feature:last-child {
  border-right: none;
}

.closing-cta__feature-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.18) center/18px no-repeat;
  border: 1px solid rgba(196, 150, 46, 0.35);
}

.closing-cta__feature-icon--approach {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4962e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 8.5-7 9-4-.5-7-4.5-7-9V6l7-3z'/%3E%3C/svg%3E");
}

.closing-cta__feature-icon--results {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4962e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.5'/%3E%3Cpath d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.closing-cta__feature-icon--globe {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4962e' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M2 12h20M12 3a15 15 0 010 18M12 3a15 15 0 000 18'/%3E%3C/svg%3E");
}

.closing-cta__feature-icon--support {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4962e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 01-4 4H8l-5 3V7a4 4 0 014-4h10a4 4 0 014 4v8z'/%3E%3C/svg%3E");
}

.closing-cta__feature-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 4px;
}

.closing-cta__feature-body span {
  display: block;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

/* Footer */
.site-footer {
  background: #0c111a;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer__inner {
  max-width: 1280px;
  padding: 48px 20px 28px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__col-title {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.15s ease;
}

.site-footer__links a:hover {
  color: var(--gold-light);
}

.site-footer__contacts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__contact:last-of-type {
  border-right: none;
}

.site-footer__contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.16) center/18px no-repeat;
  border: 1px solid rgba(196, 150, 46, 0.35);
}

.site-footer__contact-icon--location {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4962e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-4.5 7-11a7 7 0 10-14 0c0 6.5 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

.site-footer__contact-icon--phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4962e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 01-2.2 2 19.8 19.8 0 01-8.6-3.1 19.5 19.5 0 01-6-6A19.8 19.8 0 012.1 4.2 2 2 0 014.1 2h3a2 2 0 012 1.7c.1 1 .3 2 .6 2.9a2 2 0 01-.5 2.1L8 9.9a16 16 0 006.1 6.1l1.2-1.2a2 2 0 012.1-.5c.9.3 1.9.5 2.9.6A2 2 0 0122 16.9z'/%3E%3C/svg%3E");
}

.site-footer__contact-icon--email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4962e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E");
}

.site-footer__contact-body span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__contact-body span + span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.site-footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 4px;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.site-footer__social-link:hover {
  color: var(--gold-light);
}

.site-footer__social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.16) center/16px no-repeat;
  border: 1px solid rgba(196, 150, 46, 0.35);
  flex-shrink: 0;
}

.site-footer__social-icon--telegram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4962e' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M21 4L3 11l7 2 2 7 9-16z'/%3E%3C/svg%3E");
}

.site-footer__social-icon--instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4962e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='%23c4962e' stroke='none'/%3E%3C/svg%3E");
}

.site-footer__social-icon--youtube {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c4962e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='6' width='20' height='12' rx='3'/%3E%3Cpath d='M10 9.5v5l5-2.5-5-2.5z'/%3E%3C/svg%3E");
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px 24px;
  align-items: center;
  padding-top: 24px;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.site-footer__logo-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-footer__copy {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__disclaimer {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  white-space: nowrap;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s ease;
}

.site-footer__legal a:hover {
  color: var(--gold-light);
}

.site-footer__legal span {
  color: rgba(255, 255, 255, 0.25);
}

.page-home .site-footer {
  margin-top: 0;
}

/* Legacy alias */
.footer {
  padding: 20px 0;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #e8e2d8;
  background: #f7f4ef;
}
.page-home .footer { margin-top: 0; }

/* Search page */
.search-page {
  padding: 48px 0 72px;
  background: #fff;
}

.search-page__inner {
  max-width: 720px;
}

.search-page h1 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 36px);
  color: #1a2332;
}

.search-page__lead {
  margin: 0 0 24px;
  color: #5b6472;
  font-size: 16px;
}

.search-page__form {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.search-page__form input {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(26, 35, 50, 0.14);
  border-radius: 12px;
  font: inherit;
  font-size: 15px;
}

.search-page__form input:focus {
  outline: none;
  border-color: rgba(169, 116, 26, 0.45);
  box-shadow: 0 0 0 3px rgba(169, 116, 26, 0.12);
}

.search-page__meta {
  margin: 0 0 12px;
  font-size: 13px;
  color: #5b6472;
}

.search-page__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-page__item a {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(26, 35, 50, 0.1);
  border-radius: 12px;
  background: #faf8f5;
  transition: 0.15s ease;
}

.search-page__item a:hover {
  border-color: rgba(169, 116, 26, 0.35);
  background: #fff;
}

.search-page__item strong {
  display: block;
  font-size: 15px;
  color: #1a2332;
  margin-bottom: 4px;
}

.search-page__item span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: #5b6472;
}

.search-page__empty,
.search-page__hint {
  font-size: 14px;
  color: #5b6472;
  line-height: 1.5;
}

.search-page__hint a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Pricing page */
.page-pricing main {
  background: #f7f4ef;
}

.pricing-hero {
  position: relative;
  padding: 48px 0 32px;
  overflow: hidden;
}

.pricing-hero__bg {
  position: absolute;
  inset: 0;
  background-color: #f7f4ef;
  background-image:
    linear-gradient(to right, rgba(247, 244, 239, 0.94) 0%, rgba(247, 244, 239, 0.62) 38%, rgba(247, 244, 239, 0.18) 58%, transparent 100%),
    var(--pricing-bg);
  background-size: auto, cover;
  background-position: center, right center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.pricing-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}

.pricing-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c420f;
}

.pricing-hero__title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  color: #1a2332;
}

.pricing-hero__lead {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #5c6370;
}

.pricing-hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pricing-hero__tag {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.12);
  transition: 0.15s ease;
}

.pricing-hero__tag:hover {
  color: var(--gold);
  border-color: rgba(169, 116, 26, 0.4);
}

.pricing-cards {
  padding: 0 0 48px;
}

.pricing-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 22px 18px 18px;
  background: #fff;
  border: 1.5px solid rgba(26, 35, 50, 0.1);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(26, 35, 50, 0.06);
}

.pricing-card--featured {
  border-color: rgba(169, 116, 26, 0.55);
  box-shadow: 0 12px 40px rgba(169, 116, 26, 0.12);
  transform: translateY(-4px);
}

.pricing-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  min-height: 24px;
}

.pricing-card__badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card__badge--gold {
  color: #fff;
  background: var(--gold);
}

.pricing-card__badge--gold-outline {
  color: #5c420f;
  background: rgba(169, 116, 26, 0.12);
  border: 1px solid rgba(169, 116, 26, 0.35);
}

.pricing-card__badge--navy {
  color: #fff;
  background: #0f1520;
}

.pricing-card__tier {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #68707d;
}

.pricing-card__name {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a2332;
}

.pricing-card__price {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: #1a2332;
}

.pricing-card__price-note {
  margin: 6px 0 12px;
  font-size: 10px;
  line-height: 1.4;
  color: #68707d;
}

.pricing-card__audience {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.5;
  color: #5b6472;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(26, 35, 50, 0.08);
}

.pricing-card__block {
  margin-bottom: 14px;
}

.pricing-card__block-title {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #68707d;
}

.pricing-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pricing-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 11px;
  line-height: 1.45;
  color: #4b5563;
}

.pricing-card__list--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-card__list--no li {
  color: #68707d;
}

.pricing-card__list--no li::before {
  content: "—";
  position: absolute;
  left: 0;
}

.pricing-card__cta {
  width: 100%;
  margin-top: auto;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 12px;
}

.pricing-compare {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid rgba(26, 35, 50, 0.06);
}

.pricing-compare__title {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  text-align: center;
  color: #1a2332;
}

.pricing-compare__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-compare__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13px;
}

.pricing-compare__table th,
.pricing-compare__table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(26, 35, 50, 0.08);
  text-align: center;
}

.pricing-compare__table thead th {
  font-size: 12px;
  font-weight: 700;
  color: #1a2332;
  background: #faf8f5;
}

.pricing-compare__table tbody th {
  text-align: left;
  font-weight: 500;
  color: #4b5563;
  background: #fff;
}

.pricing-compare__yes {
  color: var(--gold);
  font-weight: 700;
}

.pricing-compare__no {
  color: #d1d5db;
}

.pricing-compare__text {
  font-size: 12px;
  color: #4b5563;
}

.pricing-compare__note {
  margin: 14px 0 0;
  font-size: 12px;
  color: #68707d;
  text-align: center;
}

.pricing-compare__note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-guide {
  padding: 48px 0;
  background: #faf8f5;
}

.pricing-guide__title {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  text-align: center;
  color: #1a2332;
}

.pricing-guide__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pricing-guide__item {
  padding: 20px 16px;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 14px;
  text-align: center;
}

.pricing-guide__icon {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.1) center/22px no-repeat;
}

.pricing-guide__icon--simple {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.5'/%3E%3Cpath d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7'/%3E%3C/svg%3E");
}

.pricing-guide__icon--legal {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v18M7 7h10M6 12h12M7 17h10'/%3E%3Cpath d='M5 7l2 5-2 5M19 7l-2 5 2 5'/%3E%3C/svg%3E");
}

.pricing-guide__icon--shield {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 8.5-7 9-4-.5-7-4.5-7-9V6l7-3z'/%3E%3C/svg%3E");
}

.pricing-guide__icon--crown {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M4 18h16M6 18l2-9 4 4 4-4 2 9M8 7l2 2 4-2 2 2'/%3E%3C/svg%3E");
}

.pricing-guide__item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #1a2332;
}

.pricing-guide__item span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: #5b6472;
  margin-bottom: 8px;
}

.pricing-guide__item em {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

.pricing-team {
  padding: 48px 0;
  background: #fff;
}

.pricing-team__title {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  text-align: center;
  color: #1a2332;
}

.pricing-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pricing-team__card {
  padding: 20px 16px;
  text-align: center;
  background: #faf8f5;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 14px;
}

.pricing-team__card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 50%;
  object-fit: cover;
  background: #eef1f5;
}

.pricing-team__card h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: #1a2332;
}

.pricing-team__role {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

.pricing-team__note {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1.45;
  color: #5b6472;
}

.pricing-team__tiers {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  color: #5c420f;
  background: rgba(169, 116, 26, 0.12);
}

.pricing-faq {
  padding: 48px 0;
  background: #faf8f5;
}

.pricing-faq__title {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  text-align: center;
  color: #1a2332;
}

.pricing-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-faq__item {
  padding: 0 16px;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.1);
  border-radius: 12px;
}

.pricing-faq__item summary {
  padding: 14px 24px 14px 0;
  font-size: 13px;
  font-weight: 600;
  color: #1a2332;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.pricing-faq__item summary::-webkit-details-marker {
  display: none;
}

.pricing-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 18px;
  color: var(--gold);
}

.pricing-faq__item[open] summary::after {
  content: "−";
}

.pricing-faq__item p {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.55;
  color: #5b6472;
}

.pricing-bottom {
  position: relative;
  padding: 48px 0 56px;
  color: #fff;
  overflow: hidden;
}

.pricing-bottom__bg {
  position: absolute;
  inset: 0;
  background-color: #0f1520;
  background-image:
    linear-gradient(to right, rgba(15, 21, 32, 0.94) 0%, rgba(15, 21, 32, 0.78) 100%),
    var(--pricing-bottom-bg);
  background-size: auto, cover;
  background-position: center, center right;
}

.pricing-bottom__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 960px;
}

.pricing-bottom__content h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}

.pricing-bottom__lead {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-light);
}

.pricing-bottom__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-bottom__bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.pricing-bottom__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}

.pricing-bottom__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
}

.pricing-bottom__actions .btn {
  border-radius: 12px;
  padding: 14px 20px;
  justify-content: center;
}

.pricing-bottom__legal {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 20px auto 0;
  padding: 0 20px;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.pricing-bottom__legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
}

/* KB pages */
.page-kb main {
  background: #fff;
}

.kb-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.kb-layout--no-sidebar {
  grid-template-columns: 1fr;
}

.kb-layout--no-sidebar .kb-content {
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .kb-layout {
    grid-template-columns: 1fr;
  }
}

/* EB-1A criteria calculator */
.eb1a-calc {
  margin: 28px 0;
  padding: 24px;
  background: #f9fafb;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 12px;
}

.eb1a-calc__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eb1a-calc__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  line-height: 1.4;
  color: #374151;
  cursor: pointer;
  border-bottom: 1px solid rgba(26, 35, 50, 0.06);
}

.eb1a-calc__item:last-child {
  border-bottom: none;
}

.eb1a-calc__item input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.eb1a-calc__result {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--gold);
}

.eb1a-calc__count {
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 8px;
}

.eb1a-calc__count strong {
  color: var(--gold-label);
}

.eb1a-calc__verdict {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #4b5563;
}

/* Relocation cost calculator */
.cost-calc {
  margin: 28px 0;
  padding: 24px;
  background: #f9fafb;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 12px;
}

.cost-calc__field {
  margin-bottom: 16px;
}

.cost-calc__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.cost-calc__field select {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  color: #374151;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.16);
  border-radius: 8px;
}

.cost-calc__result {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--gold);
}

.cost-calc__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.cost-calc__table td {
  padding: 8px 4px;
  border-bottom: 1px solid rgba(26, 35, 50, 0.08);
  color: #4b5563;
}

.cost-calc__table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.cost-calc__total-row td {
  border-top: 1px solid rgba(26, 35, 50, 0.2);
  border-bottom: none;
  padding-top: 12px;
  font-size: 16px;
}

.cost-calc__total-row td:last-child {
  color: var(--gold-label);
}

.cost-calc__note {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #68707d;
}

@media (max-width: 480px) {
  .eb1a-calc, .cost-calc {
    padding: 16px;
  }
}

.kb-hub-article {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(26, 35, 50, 0.08);
  max-width: 820px;
}

/* Breadcrumbs */
.breadcrumbs {
  background: #f9fafb;
  border-bottom: 1px solid rgba(26, 35, 50, 0.07);
  padding: 10px 0;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #68707d;
}

.breadcrumbs__item + .breadcrumbs__item::before {
  content: "/";
  margin-right: 4px;
  color: #d1d5db;
}

.breadcrumbs__item a {
  color: #5b6472;
  text-decoration: none;
}

.breadcrumbs__item a:hover {
  color: var(--gold);
}

.breadcrumbs__item span {
  color: #1a2332;
}

.kb-sidebar {
  position: sticky;
  top: 20px;
  align-self: start;
}

.kb-sidebar__group {
  border-bottom: 1px solid rgba(26, 35, 50, 0.08);
}

.kb-sidebar__group:first-child .kb-sidebar__group-head {
  padding-top: 0;
}

.kb-sidebar__group-head {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  background: none;
  border: 0;
  padding: 12px 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.kb-sidebar__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.kb-sidebar__count {
  font-size: 11px;
  font-weight: 600;
  color: #68707d;
  background: #f3f4f6;
  border-radius: 999px;
  padding: 1px 7px;
}

.kb-sidebar__chevron {
  margin-left: auto;
  color: #68707d;
  transition: transform 0.15s;
  flex-shrink: 0;
}

.kb-sidebar__group.is-open .kb-sidebar__chevron {
  transform: rotate(180deg);
}

.kb-sidebar__group-body {
  display: none;
  padding-bottom: 10px;
}

.kb-sidebar__group.is-open .kb-sidebar__group-body {
  display: block;
}

.kb-sidebar a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  line-height: 1.4;
  color: #4b5563;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s;
}

.kb-sidebar a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .kb-sidebar {
    position: static;
  }
}

/* KB content typography */
.kb-content {
  max-width: 700px;
}

.kb-content h1 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  color: #1a2332;
}

.kb-content h2 {
  margin: 36px 0 12px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a2332;
}

.kb-content h3 {
  margin: 24px 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #1a2332;
}

.kb-content p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

.kb-content ul,
.kb-content ol {
  margin: 0 0 16px;
  padding-left: 1.3rem;
}

.kb-content li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.kb-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kb-content a:hover {
  opacity: 0.8;
}

.kb-content strong {
  font-weight: 700;
  color: #1a2332;
}

.kb-content em {
  font-style: italic;
  color: #5b6472;
  font-size: 13px;
}

.kb-content table {
  width: 100%;
  margin: 0 0 20px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}

.kb-content th,
.kb-content td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid #e5e0d4;
  color: #4b5563;
}

.kb-content th {
  font-weight: 600;
  color: #1a2332;
  background: #f7f4ef;
}

.kb-content tbody tr:nth-child(even) td {
  background: #faf8f4;
}

/* About page */
.page-about { background: #fff; }

.about-hero {
  position: relative;
  padding: clamp(44px, 5vw, 68px) 0 clamp(52px, 6vw, 80px);
  background: #fff;
  overflow: visible;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  grid-template-rows: auto auto;
  gap: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 36px);
  align-items: start;
  max-width: 1280px;
}

.about-hero__content {
  grid-column: 1;
  grid-row: 1;
  max-width: 520px;
  padding: 4px 0 clamp(8px, 1.5vw, 16px);
  z-index: 2;
}

.about-hero__media {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  min-height: clamp(400px, 42vw, 520px);
  position: relative;
  align-self: stretch;
}

.about-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 6%, rgba(255, 255, 255, 0.35) 16%, transparent 30%);
}

.about-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 55% center;
}

.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-hero__eyebrow svg { color: var(--gold); }

.about-hero__title {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.12;
  color: var(--navy);
  font-weight: 600;
}

.about-hero__title em {
  display: block;
  font-style: normal;
  color: var(--gold);
}

.about-hero__rule {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 420px;
  margin: 0 0 20px;
}

.about-hero__rule-line {
  flex: 1;
  height: 1px;
  background: rgba(169, 116, 26, 0.45);
}

.about-hero__rule-star {
  flex-shrink: 0;
  color: var(--gold);
}

.about-hero__lead {
  margin: 0 0 24px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
  color: #4b5563;
}

.about-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-hero__stats-wrap {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  position: relative;
  z-index: 3;
  margin-top: clamp(-28px, -2.5vw, -16px);
  padding-top: 0;
}

.about-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(26, 35, 50, 0.08);
  overflow: hidden;
}

.about-hero__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  border-right: 1px solid rgba(26, 35, 50, 0.08);
}

.about-hero__stat:last-child { border-right: none; }

.about-hero__stat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.1) center/20px no-repeat;
}

.about-hero__stat-icon--calendar {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='16' rx='2'/%3E%3Cpath d='M8 3v4M16 3v4M4 11h16'/%3E%3C/svg%3E");
}

.about-hero__stat-icon--person {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7'/%3E%3C/svg%3E");
}

.about-hero__stat-icon--globe {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c2.5 3 4 6 4 9s-1.5 6-4 9M12 3c-2.5 3-4 6-4 9s1.5 6 4 9'/%3E%3C/svg%3E");
}

.about-hero__stat-icon--stories {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 01-4 4H7l-4 3V7a4 4 0 014-4h10a4 4 0 014 4v8z'/%3E%3C/svg%3E");
}

.about-hero__stat-body strong {
  display: block;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.25;
  color: var(--navy);
}

.about-hero__stat-body span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.4;
  color: #5b6472;
}

.about-origin {
  padding: clamp(56px, 7vw, 80px) 0;
  background: #faf8f5;
}

.about-origin__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 4vw, 52px);
  align-items: start;
  max-width: 1280px;
}

.about-origin__media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26, 35, 50, 0.1);
}

.about-origin__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.about-origin__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-label);
}

.about-origin__eyebrow svg { color: var(--gold); }

.about-origin__title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  color: var(--navy);
}

.about-origin__intro {
  margin: 0 0 22px;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
}

.about-origin__timeline {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  position: relative;
}

.about-origin__timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(169, 116, 26, 0.35);
}

.about-origin__timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 18px;
}

.about-origin__timeline-step:last-child {
  padding-bottom: 0;
}

.about-origin__timeline-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(169, 116, 26, 0.55);
  background: #faf8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.about-origin__timeline-body strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.35;
  color: var(--navy);
}

.about-origin__timeline-body span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: #5b6472;
}

.about-origin__achievements-title,
.about-origin__recognition-title {
  margin: 28px 0 12px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

.about-origin__achievements {
  margin: 0;
  padding: 0 0 0 20px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.about-origin__achievements li {
  margin-bottom: 6px;
}

.about-origin__recognition {
  margin: 0 0 10px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.about-origin__quote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: #f9f7f2;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
  color: var(--navy);
}

.about-origin__values-title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

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

.about-origin__value {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 16px;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(26, 35, 50, 0.04);
}

.about-origin__value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: transparent center/28px no-repeat;
}

.about-origin__value-icon--strategy {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v2M12 20v2M2 12h2M20 12h2'/%3E%3C/svg%3E");
}

.about-origin__value-icon--experience {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='13' rx='2'/%3E%3Cpath d='M8 7V5a4 4 0 018 0v2'/%3E%3C/svg%3E");
}

.about-origin__value-icon--honest {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 8.5-7 9-4-.5-7-4.5-7-9V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.about-origin__value-icon--support {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7'/%3E%3C/svg%3E");
}

.about-origin__value-body strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.3;
  color: var(--navy);
}

.about-origin__value-body span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: #5b6472;
}

.about-pillars {
  padding: 56px 0;
  background: #fff;
}

.about-pillars__head {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.about-pillars__title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 36px);
  color: var(--navy);
}

.about-pillars__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #4b5563;
}

.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-pillars__card {
  padding: 28px 24px;
  background: #faf8f5;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 16px;
}

.about-pillars__icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.1) center/24px no-repeat;
}

.about-pillars__icon--honest {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 8.5-7 9-4-.5-7-4.5-7-9V6l7-3z'/%3E%3C/svg%3E");
}

.about-pillars__icon--founder {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.5'/%3E%3Cpath d='M5 20c0-3.9 3.1-7 7-7s7 3.1 7 7'/%3E%3C/svg%3E");
}

.about-pillars__icon--team {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='9' r='2.5'/%3E%3Ccircle cx='16' cy='9' r='2.5'/%3E%3Cpath d='M4 18c0-2.5 1.8-4.5 4-4.5M20 18c0-2.5-1.8-4.5-4-4.5M12 18c0-2.2 1.2-3.5 2.5-4.5'/%3E%3C/svg%3E");
}

.about-pillars__card-title {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--navy);
}

.about-pillars__card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}

.about-founder {
  padding: 56px 0;
  background: #f7f4ef;
}

.about-founder__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
  max-width: 1280px;
}

.about-founder__media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26, 35, 50, 0.1);
}

.about-founder__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: left center;
}

.about-founder__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-label);
}

.about-founder__title {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 36px);
  color: var(--navy);
}

.about-founder__role {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.about-founder__text {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
}

.about-founder__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.about-founder__highlights li {
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 12px;
}

.about-founder__highlights strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
}

.about-founder__highlights span {
  display: block;
  font-size: 12px;
  color: #5b6472;
}

.about-approach {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
}

.about-approach__bg {
  position: absolute;
  inset: -24px;
  background-image: var(--about-approach-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(10px);
  transform: scale(1.04);
  pointer-events: none;
}

.about-approach__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}

.about-approach__inner {
  position: relative;
  z-index: 1;
}

.about-approach__head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.about-approach__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-label);
}

.about-approach__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 36px);
  color: var(--navy);
}

.about-approach__steps-wrap {
  margin-bottom: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.about-approach__steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 4px 0 8px;
  list-style: none;
  min-width: min(100%, 1120px);
}

.about-approach__step {
  position: relative;
  flex: 1 1 0;
  min-width: 180px;
  padding: 28px 20px 24px;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(26, 35, 50, 0.08);
}

.about-approach__connector {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  list-style: none;
}

.about-approach__step-num {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1;
  color: rgba(169, 116, 26, 0.18);
}

.about-approach__step-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.1) center/22px no-repeat;
  border: 1px solid rgba(169, 116, 26, 0.22);
}

.about-approach__step-icon--search { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6'/%3E%3Cpath d='M16 16l5 5'/%3E%3C/svg%3E"); }
.about-approach__step-icon--target { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='12' cy='12' r='1' fill='%23a9741a'/%3E%3C/svg%3E"); }
.about-approach__step-icon--documents-check { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z'/%3E%3Cpath d='M14 2v6h6M9 15l2 2 4-4'/%3E%3C/svg%3E"); }
.about-approach__step-icon--shield { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 8.5-7 9-4-.5-7-4.5-7-9V6l7-3z'/%3E%3C/svg%3E"); }

.about-approach__step-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.about-approach__step-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #5b6472;
}

.about-approach__footer {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
}

.about-values {
  padding: 56px 0;
  background: #f7f4ef;
}

.about-values__title {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 36px);
  text-align: center;
  color: var(--navy);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-values__card {
  padding: 22px 20px;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 14px;
}

.about-values__icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.1) center/18px no-repeat;
}

.about-values__icon--unique { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l2.4 7.4H22l-6.2 4.5 2.4 7.4L12 17l-6.2 4.3 2.4-7.4L2 9.4h7.6L12 2z'/%3E%3C/svg%3E"); }
.about-values__icon--experience { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 8v8M8 12h8'/%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3C/svg%3E"); }
.about-values__icon--honest { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 8.5-7 9-4-.5-7-4.5-7-9V6l7-3z'/%3E%3C/svg%3E"); }
.about-values__icon--privacy { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='11' width='14' height='10' rx='2'/%3E%3Cpath d='M8 11V8a4 4 0 018 0v3'/%3E%3C/svg%3E"); }
.about-values__icon--talent { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l2.4 7.4H22l-6.2 4.5 2.4 7.4L12 17l-6.2 4.3 2.4-7.4L2 9.4h7.6L12 2z'/%3E%3C/svg%3E"); }
.about-values__icon--open { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M8 12h8M12 8v8'/%3E%3C/svg%3E"); }

.about-values__card-title {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--navy);
}

.about-values__card-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #5b6472;
}

.about-team {
  padding: 56px 0;
  background: #fff;
}

.about-team__head {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}

.about-team__title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 36px);
  color: var(--navy);
}

.about-team__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-team__card {
  padding: 24px 18px;
  text-align: center;
  background: #faf8f5;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 16px;
}

.about-team__card img {
  width: 96px;
  height: 96px;
  margin: 0 auto 14px;
  border-radius: 50%;
  object-fit: cover;
}

.about-team__name {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--navy);
}

.about-team__role {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.about-team__note {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #5b6472;
}

.about-proof {
  padding: 56px 0;
  background: #f7f4ef;
}

.about-proof__head {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}

.about-proof__title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 36px);
  color: var(--navy);
}

.about-proof__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.about-proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.about-proof__stat {
  padding: 20px 16px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 14px;
}

.about-proof__stat-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.1) center/20px no-repeat;
}

.about-proof__stat-icon--approvals { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4L19 6'/%3E%3C/svg%3E"); }
.about-proof__stat-icon--clients { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3.5'/%3E%3Cpath d='M3 20c0-3.9 2.7-7 6-7s6 3.1 6 7'/%3E%3C/svg%3E"); }
.about-proof__stat-icon--globe { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3C/svg%3E"); }
.about-proof__stat-icon--social { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='16' rx='4'/%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3Ccircle cx='17' cy='7' r='1'/%3E%3C/svg%3E"); }

.about-proof__stat strong {
  display: block;
  font-size: 22px;
  color: var(--navy);
}

.about-proof__stat span {
  display: block;
  font-size: 12px;
  color: #5b6472;
}

.social-strip {
  padding: 40px 0 48px;
  background: #faf8f5;
}

.social-strip__head {
  max-width: 640px;
  margin: 0 auto 20px;
  text-align: center;
}

.social-strip__title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 28px);
  color: var(--navy);
}

.social-strip__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #5b6472;
}

.social-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.social-strip__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.social-strip__card:hover {
  border-color: rgba(169, 116, 26, 0.35);
  box-shadow: 0 8px 24px rgba(26, 35, 50, 0.06);
}

.social-strip__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(169, 116, 26, 0.1) center/22px no-repeat;
}

.social-strip__icon--telegram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 4L3 11l7 2 2 7 9-16z'/%3E%3C/svg%3E");
}

.social-strip__icon--instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='16' rx='4'/%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3Ccircle cx='17' cy='7' r='1'/%3E%3C/svg%3E");
}

.social-strip__icon--youtube {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9741a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='18' height='12' rx='3'/%3E%3Cpath d='M11 10l5 2-5 2v-4z'/%3E%3C/svg%3E");
}

.social-strip__body strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
}

.social-strip__body span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #5b6472;
}

.pricing-team--about {
  background: #faf8f5;
}

.pricing-team--about .pricing-team__card {
  padding-bottom: 20px;
}

.about-proof--intro {
  padding-bottom: 24px;
}

.about-proof--intro .about-proof__head {
  margin-bottom: 0;
}

.about-proof__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.about-closing {
  padding: 64px 0;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.about-closing__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.about-closing__title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
}

.about-closing__title em {
  font-style: normal;
  color: var(--gold-light);
}

.about-closing__lead {
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.about-closing__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Responsive */
@media (max-width: 1280px) {
  .header-consult { display: none; }
}

@media (max-width: 1180px) {
  .header-contact { display: none; }
  .header-trust__utils { display: none; }
}

@media (max-width: 1024px) {
  :root {
    --header-trust-h: 0px;
    --header-nav-h: 0px;
    --header-h: var(--header-bar-h);
  }

  .header-trust { display: none; }
  .page-home { --header-h: var(--header-bar-h); }
  .header-search--bar { display: none; }
  .header__nav { display: none; }
  .header__burger { display: block; }
  .header__util--telegram { display: grid; }
  .hero__stage {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: auto;
    padding-bottom: 16px;
  }
  .hero__quiz {
    position: static;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .hero__text { max-width: none; padding-top: 20px; }
  .hero__text::before { display: none; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stat:nth-child(2) { border-right: none; }
  .hero__stat:nth-child(1),
  .hero__stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .hero__routes { grid-template-columns: repeat(2, 1fr); }
  .intent__grid { grid-template-columns: repeat(3, 1fr); }
  .solutions__cards { grid-template-columns: 1fr; }
  .solutions__card-inner { max-width: 68%; }
  .solutions__features { grid-template-columns: repeat(2, 1fr); }
  .solutions__feature:nth-child(2) { border-right: none; }
  .solutions__feature:nth-child(1),
  .solutions__feature:nth-child(2) { border-bottom: 1px solid rgba(26, 35, 50, 0.08); }
  .programs__grid { grid-template-columns: repeat(2, 1fr); }
  .strategy__inner { grid-template-columns: 1fr; gap: 32px; }
  .strategy__figure { max-width: 480px; margin: 0 auto; width: 100%; }
  .cases__card { flex-basis: calc((100% - 16px) / 2); }
  .process__values { grid-template-columns: repeat(2, 1fr); }
  .process__bar { grid-template-columns: 1fr; text-align: center; }
  .process__bar-author { justify-content: center; }
  .process__bar-cta { width: 100%; justify-content: center; }
  .process__bar-note { justify-content: center; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why__stats { grid-template-columns: repeat(2, 1fr); }
  .why__banner { grid-template-columns: 1fr; }
  .materials__grid { grid-template-columns: repeat(2, 1fr); }
  .materials__banner { grid-template-columns: 1fr; text-align: center; }
  .materials__banner-icon { margin: 0 auto; }
  .materials__banner-btn { width: 100%; justify-content: center; }
  .closing-cta__features { grid-template-columns: repeat(2, 1fr); }
  .closing-cta__feature:nth-child(2) { border-right: none; }
  .closing-cta__feature:nth-child(1),
  .closing-cta__feature:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .site-footer__nav { grid-template-columns: repeat(3, 1fr); }
  .site-footer__contacts { grid-template-columns: repeat(2, 1fr); }
  .site-footer__bottom { grid-template-columns: 1fr 1fr; }
  .site-footer__disclaimer { grid-column: 1 / -1; }
  .pricing-cards__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--featured { transform: none; }
  .pricing-guide__grid,
  .pricing-team__grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .cases-hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .cases-hero__content { grid-row: 1; max-width: none; }
  .cases-hero__media {
    grid-column: 1;
    grid-row: 2;
    min-height: clamp(260px, 50vw, 360px);
  }
  .cases-hero__media::after { background: linear-gradient(180deg, #faf8f5 0%, transparent 14%); }
  .cases-hero .about-hero__stats-wrap { grid-row: 3; padding-top: 0; }
  .cases-catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .case-hero__grid { grid-template-columns: 1fr; text-align: center; }
  .case-hero__media { width: min(240px, 70vw); margin: 0 auto; }
  .case-hero__stats { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .case-body__grid { grid-template-columns: 1fr; }
  .case-sidebar { order: 1; position: static; }
  .case-body__main { order: 2; }
  .case-related__grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero__content { max-width: none; grid-row: 1; }
  .about-hero__media {
    grid-column: 1;
    grid-row: 2;
    min-height: clamp(260px, 50vw, 380px);
  }
  .about-hero__media::after {
    background: linear-gradient(180deg, #fff 0%, transparent 14%);
  }
  .about-hero__stats-wrap { grid-row: 3; padding-top: 0; }
  .about-hero__stats { grid-template-columns: repeat(2, 1fr); }
  .about-hero__stat:nth-child(2) { border-right: none; }
  .about-hero__stat:nth-child(1),
  .about-hero__stat:nth-child(2) { border-bottom: 1px solid rgba(26, 35, 50, 0.08); }
  .about-origin__inner { grid-template-columns: 1fr; gap: 28px; }
  .about-origin__media { max-width: 480px; margin: 0 auto; width: 100%; }
  .about-origin__values { grid-template-columns: repeat(2, 1fr); }
  .about-pillars__grid { grid-template-columns: 1fr; }
  .about-founder__inner { grid-template-columns: 1fr; }
  .about-founder__media { max-width: 560px; margin: 0 auto; width: 100%; }
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .about-team__grid { grid-template-columns: repeat(2, 1fr); }
  .about-proof__stats { grid-template-columns: repeat(2, 1fr); }
  .social-strip__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav, .header__cta { display: none; }
  .header__burger { display: block; margin-left: auto; }
  .hero__body { padding-bottom: 32px; }
  .hero__text h1 { max-width: none; }
  .hero__btns .btn { flex: 1; min-width: 140px; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stat { border-right: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .hero__stat:last-child { border-bottom: none; }
  .hero__routes { grid-template-columns: 1fr; }
  .topbar__link { white-space: normal; font-size: 11px; }
  .hero__trust-logos { gap: 14px 18px; }
  .trust-logo { font-size: 13px; }
  .intent { padding: 40px 0 48px; }
  .intent__grid { grid-template-columns: repeat(2, 1fr); }
  .solutions { padding: 40px 0 48px; }
  .solutions__card-inner { max-width: none; padding: 24px 20px 20px; }
  .solutions__card-bg {
    background-image:
      linear-gradient(to bottom, #fff 0%, #fff 55%, rgba(255, 255, 255, 0.88) 72%, rgba(255, 255, 255, 0.5) 100%),
      var(--solutions-bg);
    background-position: center, center;
  }
  .solutions__features { grid-template-columns: 1fr; }
  .solutions__feature { border-right: none !important; border-bottom: 1px solid rgba(26, 35, 50, 0.08); }
  .solutions__feature:last-child { border-bottom: none; }
  .programs { padding: 40px 0 48px; }
  .programs__grid { grid-template-columns: 1fr; }
  .programs__card-body { max-width: none; }
  .programs__card-bg {
    background-image:
      linear-gradient(to bottom, #fff 0%, #fff 58%, rgba(255, 255, 255, 0.9) 72%, rgba(255, 255, 255, 0.55) 100%),
      var(--programs-bg);
    background-position: center, center;
  }
  .strategy { padding: 40px 0 48px; }
  .strategy__panels { grid-template-columns: 1fr; }
  .strategy__figure { max-width: none; }
  .cases { padding: 40px 0 48px; }
  .cases__slider { grid-template-columns: 1fr; gap: 0; }
  .cases__nav { display: none; }
  .cases__card { flex-basis: 100%; }
  .cases__stats { grid-template-columns: 1fr; gap: 12px; }
  .cases__stats li { flex-direction: row; text-align: left; }
  .process { padding: 40px 0 48px; }
  .process__steps { min-width: 920px; }
  .process__values { grid-template-columns: 1fr; }
  .process__connector { padding: 0 2px; font-size: 14px; }
  .why { padding: 40px 0 48px; }
  .why__grid { grid-template-columns: 1fr; }
  .why__stats { grid-template-columns: 1fr 1fr; }
  .why__banner-btn { width: 100%; justify-content: center; }
  .materials { padding: 40px 0 48px; }
  .materials__grid { grid-template-columns: 1fr; }
  .visa-picker { padding-top: 40px; }
  .visa-picker__bar {
    grid-template-columns: 1fr;
    margin: 0;
    padding: 20px;
    text-align: center;
  }
  .visa-picker__bar-icon { margin: 0 auto; }
  .visa-picker__bar-actions { justify-content: center; }
  .visa-picker__bar-actions .btn { width: 100%; }
  .closing-cta { padding-top: 48px; }
  .closing-cta__content { max-width: none; padding-bottom: 32px; }
  .closing-cta__btns { flex-direction: column; }
  .closing-cta__btns .btn { width: 100%; }
  .closing-cta__features { grid-template-columns: 1fr; }
  .closing-cta__feature { border-right: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.12); padding: 14px 0; }
  .closing-cta__feature:last-child { border-bottom: none; }
  .closing-cta__arcs { display: none; }
  .pricing-cards__grid { grid-template-columns: 1fr; }
  .pricing-guide__grid,
  .pricing-team__grid,
  .pricing-faq__grid { grid-template-columns: 1fr; }
  .pricing-bottom__inner { grid-template-columns: 1fr; text-align: center; }
  .pricing-bottom__actions { min-width: 0; }
  .pricing-bottom__actions .btn { width: 100%; }
  .about-hero__stats { grid-template-columns: 1fr; }
  .about-hero__stat { border-right: none; border-bottom: 1px solid rgba(26, 35, 50, 0.08); }
  .about-hero__stat:last-child { border-bottom: none; }
  .about-origin__values { grid-template-columns: 1fr; }
  .cases-catalog__grid { grid-template-columns: 1fr; }
  .cases-catalog__filters { gap: 8px; }
  .case-hero__stats { grid-template-columns: 1fr; }
  .case-related__grid { grid-template-columns: 1fr; }
  .case-related__head { flex-direction: column; align-items: flex-start; }
  .case-facts__row { grid-template-columns: 1fr; gap: 4px; }
  .about-values__grid,
  .about-team__grid,
  .about-proof__stats { grid-template-columns: 1fr; }
  .about-hero__btns,
  .about-closing__btns { flex-direction: column; }
  .about-hero__btns .btn,
  .about-closing__btns .btn { width: 100%; }
  .site-footer__nav { grid-template-columns: repeat(2, 1fr); }
  .site-footer__contacts { grid-template-columns: 1fr 1fr; }
  .site-footer__contact { border-right: none; padding-right: 0; }
  .site-footer__social { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  .site-footer__bottom { grid-template-columns: 1fr; text-align: center; }
  .site-footer__brand { justify-content: center; }
  .site-footer__legal { justify-content: center; }
  .site-footer__disclaimer { text-align: center; }
}

@media (max-width: 560px) {
  .logo__mark { width: 48px; height: 48px; }
  .logo__name { font-size: 18px; }
  .logo__tag { font-size: 10px; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; }
  .intent__grid { grid-template-columns: 1fr; }
}

/* ── Homepage packages teaser ── */
.packages-home {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%);
}

.packages-home__head {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.packages-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.packages-home__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a2332;
}

.packages-home__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5b6578;
}

.packages-home__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.packages-home__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 16px;
  background: #fff;
  border: 1.5px solid rgba(26, 35, 50, 0.1);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.packages-home__card:hover {
  border-color: rgba(169, 116, 26, 0.45);
  box-shadow: 0 8px 28px rgba(26, 35, 50, 0.08);
  transform: translateY(-2px);
}

.packages-home__card--featured {
  border-color: rgba(169, 116, 26, 0.55);
  box-shadow: 0 10px 32px rgba(169, 116, 26, 0.1);
}

.packages-home__badge {
  align-self: flex-start;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
}

.packages-home__name {
  font-size: 20px;
  font-weight: 700;
  color: #1a2332;
}

.packages-home__price {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}

.packages-home__summary {
  font-size: 13px;
  line-height: 1.45;
  color: #5b6472;
}

.packages-home__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.packages-home__note {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: #68707d;
}

.packages-home__note a {
  color: var(--gold);
}

/* ── Visa page pricing embed ── */
.pricing-teaser {
  padding: 48px 0 56px;
  background: #f3f5f8;
  border-top: 1px solid rgba(26, 35, 50, 0.08);
}

.pricing-teaser__head {
  max-width: 720px;
  margin-bottom: 28px;
}

.pricing-teaser__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.pricing-teaser__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: #1a2332;
}

.pricing-teaser__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #5b6578;
}

.pricing-teaser__visa-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  background: rgba(169, 116, 26, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  line-height: 1.55;
  color: #4b5563;
}

.pricing-teaser__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-teaser__card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 14px;
  background: #fff;
  border: 1.5px solid rgba(26, 35, 50, 0.1);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-teaser__card:hover {
  border-color: rgba(169, 116, 26, 0.45);
  box-shadow: 0 6px 20px rgba(26, 35, 50, 0.07);
}

.pricing-teaser__card--featured {
  border-color: rgba(169, 116, 26, 0.5);
}

.pricing-teaser__badge {
  align-self: flex-start;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
}

.pricing-teaser__name {
  font-size: 17px;
  font-weight: 700;
  color: #1a2332;
}

.pricing-teaser__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.pricing-teaser__highlight {
  font-size: 12px;
  line-height: 1.4;
  color: #5b6472;
}

.pricing-teaser__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.pricing-teaser__note {
  margin: 0;
  font-size: 13px;
  color: #68707d;
}

.pricing-teaser__note a {
  color: var(--gold);
}

/* ── Terms / Guarantee Policy ── */
.page-terms main {
  background: #fff;
}

.terms {
  padding: 48px 0 64px;
}

.terms__inner {
  max-width: 760px;
}

.terms__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.terms__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: #1a2332;
}

.terms__updated {
  margin: 0 0 20px;
  font-size: 13px;
  color: #68707d;
}

.terms__intro {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.65;
  color: #4b5563;
}

.terms__section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(26, 35, 50, 0.08);
}

.terms__section:last-child {
  border-bottom: none;
}

.terms__section h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #1a2332;
}

.terms__section p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
}

.terms__section ul {
  margin: 0 0 12px;
  padding-left: 1.25rem;
}

.terms__section li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: #4b5563;
}

.terms__foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 35, 50, 0.1);
}

.terms__foot p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #5b6472;
}

.terms__foot a {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .packages-home__grid,
  .pricing-teaser__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .packages-home__grid,
  .pricing-teaser__grid { grid-template-columns: 1fr; }
  .packages-home__actions,
  .pricing-teaser__foot { flex-direction: column; }
  .packages-home__actions .btn,
  .pricing-teaser__foot .btn { width: 100%; justify-content: center; }
}

/* ── Services page ─────────────────────────────────────────── */
.page-services { background: var(--bg); }

/* Hero */
.services-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--text-on-dark);
}
.services-hero__media {
  position: absolute;
  inset: 0;
  background-image: var(--services-hero-bg);
  background-size: cover;
  background-position: center 20%;
  will-change: transform;
}
.services-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 15, 28, 0.85) 0%,
    rgba(10, 15, 28, 0.65) 55%,
    rgba(10, 15, 28, 0.3) 100%
  );
}
.services-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
.services-hero__content { max-width: 620px; }
.services-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 20px;
}
.services-hero__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 20px;
  color: var(--white);
}
.services-hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.services-hero__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted-on-dark);
  margin: 0 0 32px;
  max-width: 520px;
}
.services-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Service format cards */
.svc-formats {
  padding: 80px 0;
  background: var(--bg);
}
.svc-formats__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.svc-formats__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.svc-formats__title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}
.svc-formats__lead {
  font-size: 16px;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}
.svc-formats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

/* Individual service card */
.svc-card {
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.svc-card:hover {
  box-shadow: 0 8px 32px rgba(26, 35, 50, 0.1);
  border-color: rgba(169, 116, 26, 0.3);
}
.svc-card--featured {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(169, 116, 26, 0.14);
}
.svc-card__head { display: flex; flex-direction: column; gap: 8px; }
.svc-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-label);
  background: var(--gold-label-bg);
  border: 1px solid var(--gold-label-border);
  border-radius: 20px;
  padding: 3px 10px;
  align-self: flex-start;
}
.svc-card__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.svc-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}
.svc-card__amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.svc-card__note {
  font-size: 13px;
  color: #5b6472;
}
.svc-card__summary {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}
.svc-card__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.svc-card__points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}
.svc-card__points li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}
.svc-card__cta { margin-top: auto; }

@media (max-width: 640px) {
  .services-hero { min-height: 480px; }
  .services-hero__btns { flex-direction: column; }
  .svc-formats__grid { grid-template-columns: 1fr; }
}

/* ── Services categories block ──────────────────────────────── */
.svc-categories {
  padding: 80px 0 0;
  background: #f8f6f2;
}
.svc-categories__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.svc-categories__title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
}
.svc-categories__lead {
  font-size: 16px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}

/* 4-col grid */
.svc-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

/* Category card */
.svc-cat-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.09);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.svc-cat-card:hover {
  box-shadow: 0 6px 24px rgba(26, 35, 50, 0.09);
  border-color: rgba(169, 116, 26, 0.28);
  transform: translateY(-2px);
}

/* Icon — outline SVG style via CSS masks */
.svc-cat-card__icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
  background: var(--gold);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.svc-cat-card__icon--star    { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 3l3.3 10H29l-8.3 6 3.2 10L16 23.5 8.1 29l3.2-10L3 13h9.7L16 3z' stroke='%23000' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 3l3.3 10H29l-8.3 6 3.2 10L16 23.5 8.1 29l3.2-10L3 13h9.7L16 3z' stroke='%23000' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.svc-cat-card__icon--card    { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Crect x='4' y='8' width='24' height='16' rx='2' stroke='%23000' stroke-width='1.8'/%3E%3Cpath d='M4 13h24' stroke='%23000' stroke-width='1.8'/%3E%3Ccircle cx='22' cy='21' r='2.5' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M18 21h-7' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Crect x='4' y='8' width='24' height='16' rx='2' stroke='%23000' stroke-width='1.8'/%3E%3Cpath d='M4 13h24' stroke='%23000' stroke-width='1.8'/%3E%3Ccircle cx='22' cy='21' r='2.5' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M18 21h-7' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); }
.svc-cat-card__icon--briefcase { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Crect x='3' y='11' width='26' height='16' rx='2' stroke='%23000' stroke-width='1.8'/%3E%3Cpath d='M11 11V8a2 2 0 012-2h6a2 2 0 012 2v3M3 19h26' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Crect x='3' y='11' width='26' height='16' rx='2' stroke='%23000' stroke-width='1.8'/%3E%3Cpath d='M11 11V8a2 2 0 012-2h6a2 2 0 012 2v3M3 19h26' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); }
.svc-cat-card__icon--building { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Crect x='5' y='4' width='22' height='24' rx='1' stroke='%23000' stroke-width='1.8'/%3E%3Cpath d='M10 9h4M18 9h4M10 14h4M18 14h4M10 19h4M18 19h4M13 28v-6h6v6' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Crect x='5' y='4' width='22' height='24' rx='1' stroke='%23000' stroke-width='1.8'/%3E%3Cpath d='M10 9h4M18 9h4M10 14h4M18 14h4M10 19h4M18 19h4M13 28v-6h6v6' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); }
.svc-cat-card__icon--graduation { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 5L3 12l13 7 13-7-13-7z' stroke='%23000' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M8 15v7c0 2 3.6 4 8 4s8-2 8-4v-7' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M29 12v7' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 5L3 12l13 7 13-7-13-7z' stroke='%23000' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M8 15v7c0 2 3.6 4 8 4s8-2 8-4v-7' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M29 12v7' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); }
.svc-cat-card__icon--family  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='11' cy='9' r='3.5' stroke='%23000' stroke-width='1.8'/%3E%3Ccircle cx='21' cy='9' r='3.5' stroke='%23000' stroke-width='1.8'/%3E%3Cpath d='M4 27c0-4 3-7 7-7h10c4 0 7 3 7 7' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='11' cy='9' r='3.5' stroke='%23000' stroke-width='1.8'/%3E%3Ccircle cx='21' cy='9' r='3.5' stroke='%23000' stroke-width='1.8'/%3E%3Cpath d='M4 27c0-4 3-7 7-7h10c4 0 7 3 7 7' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); }
.svc-cat-card__icon--document { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M19 4H8a2 2 0 00-2 2v20a2 2 0 002 2h16a2 2 0 002-2V11l-7-7z' stroke='%23000' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M19 4v7h7M10 17h12M10 21h8' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M19 4H8a2 2 0 00-2 2v20a2 2 0 002 2h16a2 2 0 002-2V11l-7-7z' stroke='%23000' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M19 4v7h7M10 17h12M10 21h8' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); }
.svc-cat-card__icon--shield  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 3l11 4v9c0 6-5 10-11 13C5 26 0 22 0 16V7l11-4z' stroke='%23000' stroke-width='1.8' stroke-linejoin='round' transform='translate(5,3) scale(0.7)'/%3E%3Cpath d='M16 4l10 3.5v8.5c0 5.5-4.5 9.5-10 12-5.5-2.5-10-6.5-10-12V7.5L16 4z' stroke='%23000' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M11 16l3.5 3.5 6.5-7' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 4l10 3.5v8.5c0 5.5-4.5 9.5-10 12-5.5-2.5-10-6.5-10-12V7.5L16 4z' stroke='%23000' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M11 16l3.5 3.5 6.5-7' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

.svc-cat-card__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
}
.svc-cat-card__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: #4b5563;
  margin: 0;
  flex: 1;
}
.svc-cat-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.svc-cat-card__tag {
  font-size: 11px;
  font-weight: 500;
  background: rgba(169, 116, 26, 0.08);
  color: var(--gold-label);
  border: 1px solid rgba(169, 116, 26, 0.18);
  border-radius: 20px;
  padding: 2px 8px;
  white-space: nowrap;
}
.svc-cat-card__more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
}

/* All programs strip */
.svc-all-programs {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(26, 35, 50, 0.08);
}
.svc-all-programs__title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.svc-all-programs__lead {
  font-size: 14px;
  color: #5b6472;
  margin: 0 0 32px;
}
.svc-all-programs__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-bottom: 32px;
}
.svc-visa-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 90px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
}
.svc-visa-chip:hover { opacity: 0.75; }
.svc-visa-chip__icon {
  display: block;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  -webkit-mask-size: 60%;
  mask-size: 60%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: rgba(169, 116, 26, 0.12);
}
/* Reuse svc-cat-card icon masks for visa chip */
.svc-visa-chip__icon--star       { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 3l3.3 10H29l-8.3 6 3.2 10L16 23.5 8.1 29l3.2-10L3 13h9.7L16 3z' stroke='%23a9741a' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 3l3.3 10H29l-8.3 6 3.2 10L16 23.5 8.1 29l3.2-10L3 13h9.7L16 3z' stroke='%23a9741a' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); background-color: rgba(169,116,26,0.12); -webkit-mask-size: 55%; mask-size: 55%; }
.svc-visa-chip__icon--card       { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Crect x='4' y='8' width='24' height='16' rx='2' stroke='%23a9741a' stroke-width='2'/%3E%3Cpath d='M4 13h24' stroke='%23a9741a' stroke-width='2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Crect x='4' y='8' width='24' height='16' rx='2' stroke='%23a9741a' stroke-width='2'/%3E%3Cpath d='M4 13h24' stroke='%23a9741a' stroke-width='2'/%3E%3C/svg%3E"); background-color: rgba(169,116,26,0.12); -webkit-mask-size: 55%; mask-size: 55%; }
.svc-visa-chip__icon--briefcase  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Crect x='3' y='11' width='26' height='16' rx='2' stroke='%23a9741a' stroke-width='2'/%3E%3Cpath d='M11 11V8a2 2 0 012-2h6a2 2 0 012 2v3' stroke='%23a9741a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Crect x='3' y='11' width='26' height='16' rx='2' stroke='%23a9741a' stroke-width='2'/%3E%3Cpath d='M11 11V8a2 2 0 012-2h6a2 2 0 012 2v3' stroke='%23a9741a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-color: rgba(169,116,26,0.12); -webkit-mask-size: 55%; mask-size: 55%; }
.svc-visa-chip__icon--transfer   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M4 10h24M22 6l6 4-6 4M28 22H4M10 18l-6 4 6 4' stroke='%23a9741a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M4 10h24M22 6l6 4-6 4M28 22H4M10 18l-6 4 6 4' stroke='%23a9741a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-color: rgba(169,116,26,0.12); -webkit-mask-size: 55%; mask-size: 55%; }
.svc-visa-chip__icon--globe      { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='16' cy='16' r='12' stroke='%23a9741a' stroke-width='2'/%3E%3Cpath d='M4 16h24M16 4c-3 4-5 7.5-5 12s2 8 5 12M16 4c3 4 5 7.5 5 12s-2 8-5 12' stroke='%23a9741a' stroke-width='1.8'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='16' cy='16' r='12' stroke='%23a9741a' stroke-width='2'/%3E%3Cpath d='M4 16h24M16 4c-3 4-5 7.5-5 12s2 8 5 12M16 4c3 4 5 7.5 5 12s-2 8-5 12' stroke='%23a9741a' stroke-width='1.8'/%3E%3C/svg%3E"); background-color: rgba(169,116,26,0.12); -webkit-mask-size: 55%; mask-size: 55%; }
.svc-visa-chip__icon--building   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Crect x='5' y='4' width='22' height='24' rx='1' stroke='%23a9741a' stroke-width='2'/%3E%3Cpath d='M10 9h4M18 9h4M10 14h4M18 14h4M13 28v-6h6v6' stroke='%23a9741a' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Crect x='5' y='4' width='22' height='24' rx='1' stroke='%23a9741a' stroke-width='2'/%3E%3Cpath d='M10 9h4M18 9h4M10 14h4M18 14h4M13 28v-6h6v6' stroke='%23a9741a' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); background-color: rgba(169,116,26,0.12); -webkit-mask-size: 55%; mask-size: 55%; }
.svc-visa-chip__icon--people     { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='16' cy='10' r='4' stroke='%23a9741a' stroke-width='2'/%3E%3Cpath d='M7 28c0-5 4-9 9-9s9 4 9 9' stroke='%23a9741a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='16' cy='10' r='4' stroke='%23a9741a' stroke-width='2'/%3E%3Cpath d='M7 28c0-5 4-9 9-9s9 4 9 9' stroke='%23a9741a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-color: rgba(169,116,26,0.12); -webkit-mask-size: 55%; mask-size: 55%; }
.svc-visa-chip__icon--graduation { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 5L3 12l13 7 13-7-13-7z' stroke='%23a9741a' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M8 15v7c0 2 3.6 4 8 4s8-2 8-4v-7' stroke='%23a9741a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 5L3 12l13 7 13-7-13-7z' stroke='%23a9741a' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M8 15v7c0 2 3.6 4 8 4s8-2 8-4v-7' stroke='%23a9741a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-color: rgba(169,116,26,0.12); -webkit-mask-size: 55%; mask-size: 55%; }
.svc-visa-chip__icon--exchange   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M4 10h20M18 6l6 4-6 4M28 22H8M14 18l-6 4 6 4' stroke='%23a9741a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M4 10h20M18 6l6 4-6 4M28 22H8M14 18l-6 4 6 4' stroke='%23a9741a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-color: rgba(169,116,26,0.12); -webkit-mask-size: 55%; mask-size: 55%; }
.svc-visa-chip__icon--heart      { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 27S4 20 4 11.5A6.5 6.5 0 0116 8a6.5 6.5 0 0112 3.5C28 20 16 27 16 27z' stroke='%23a9741a' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 27S4 20 4 11.5A6.5 6.5 0 0116 8a6.5 6.5 0 0112 3.5C28 20 16 27 16 27z' stroke='%23a9741a' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); background-color: rgba(169,116,26,0.12); -webkit-mask-size: 55%; mask-size: 55%; }
.svc-visa-chip__icon--family     { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='11' cy='9' r='3.5' stroke='%23a9741a' stroke-width='2'/%3E%3Ccircle cx='21' cy='9' r='3.5' stroke='%23a9741a' stroke-width='2'/%3E%3Cpath d='M4 27c0-4 3-7 7-7h10c4 0 7 3 7 7' stroke='%23a9741a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='11' cy='9' r='3.5' stroke='%23a9741a' stroke-width='2'/%3E%3Ccircle cx='21' cy='9' r='3.5' stroke='%23a9741a' stroke-width='2'/%3E%3Cpath d='M4 27c0-4 3-7 7-7h10c4 0 7 3 7 7' stroke='%23a9741a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-color: rgba(169,116,26,0.12); -webkit-mask-size: 55%; mask-size: 55%; }

.svc-visa-chip__code {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}
.svc-visa-chip__label {
  font-size: 11px;
  color: #5b6472;
  text-align: center;
  line-height: 1.4;
}
.svc-all-programs__cta { margin-top: 4px; }

@media (max-width: 1100px) {
  .svc-categories__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-categories { padding: 56px 0 0; }
  .svc-categories__grid { grid-template-columns: 1fr; }
  .svc-all-programs { padding: 28px 20px; }
  .svc-visa-chip { width: 72px; }
}

/* ── Why Services section ───────────────────────────────────── */
.svc-why {
  padding: 80px 0;
  background: #f8f6f2;
}
.svc-why__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.svc-why__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
}
.svc-why__lead {
  font-size: 16px;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}
.svc-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Why card */
.svc-why-card {
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
}
.svc-why-card__icon {
  display: block;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--gold);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.svc-why-card__icon--target {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Ccircle cx='24' cy='24' r='18' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='24' cy='24' r='10' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='24' cy='24' r='3' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M33 10l5-5M38 5v5h-5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M33 15l-9 9' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Ccircle cx='24' cy='24' r='18' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='24' cy='24' r='10' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='24' cy='24' r='3' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M33 10l5-5M38 5v5h-5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M33 15l-9 9' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.svc-why-card__icon--briefcase {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Crect x='5' y='16' width='38' height='24' rx='3' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M16 16v-4a3 3 0 013-3h10a3 3 0 013 3v4M5 28h38' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Crect x='19' y='25' width='10' height='6' rx='1' stroke='%23000' stroke-width='1.8'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Crect x='5' y='16' width='38' height='24' rx='3' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M16 16v-4a3 3 0 013-3h10a3 3 0 013 3v4M5 28h38' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Crect x='19' y='25' width='10' height='6' rx='1' stroke='%23000' stroke-width='1.8'/%3E%3C/svg%3E");
}
.svc-why-card__icon--scales {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 8v32M16 40h16' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M24 8L10 14M24 8l14 6' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cellipse cx='10' cy='28' rx='7' ry='3' stroke='%23000' stroke-width='2'/%3E%3Cellipse cx='38' cy='28' rx='7' ry='3' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M3 14l14 14M31 14l14 14' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 8v32M16 40h16' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M24 8L10 14M24 8l14 6' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cellipse cx='10' cy='28' rx='7' ry='3' stroke='%23000' stroke-width='2'/%3E%3Cellipse cx='38' cy='28' rx='7' ry='3' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M3 14l14 14M31 14l14 14' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.svc-why-card__icon--shield-check {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 5l17 6v13c0 9-7 16-17 19C7 40 0 33 0 24V11l17-6z' stroke='%23000' stroke-width='2' stroke-linejoin='round' transform='translate(7,2) scale(0.72)'/%3E%3Cpath d='M24 6l16 5.5v12.5C40 33 33 39 24 42 15 39 8 33 8 24V11.5L24 6z' stroke='%23000' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M16 24l6 6 10-10' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M24 6l16 5.5v12.5C40 33 33 39 24 42 15 39 8 33 8 24V11.5L24 6z' stroke='%23000' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M16 24l6 6 10-10' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.svc-why-card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
}
.svc-why-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
  flex: 1;
}
.svc-why-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--gold);
  border-radius: 50%;
  border: 1.5px solid rgba(169, 116, 26, 0.3);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  margin-top: auto;
  text-decoration: none;
}
.svc-why-card__arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

@media (max-width: 900px) {
  .svc-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .svc-why__grid { grid-template-columns: 1fr; }
  .svc-why-card { min-height: auto; }
}

/* ── Process Services section ───────────────────────────────── */
.svc-process {
  padding: 80px 0;
  background: #f8f6f2;
}
.svc-process__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.svc-process__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
}
.svc-process__lead {
  font-size: 16px;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}
.svc-process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.svc-process__step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-process__connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 52px;
  font-size: 22px;
  color: var(--gold);
  opacity: 0.6;
  font-weight: 300;
  list-style: none;
  width: 40px;
}
.svc-process__icon {
  display: block;
  width: 56px;
  height: 56px;
  background: var(--gold);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  flex-shrink: 0;
}
.svc-process__icon--search-doc {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M28 6H12a2 2 0 00-2 2v32a2 2 0 002 2h24a2 2 0 002-2V18l-10-12z' stroke='%23000' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M28 6v12h10' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='21' cy='30' r='5' stroke='%23000' stroke-width='1.8'/%3E%3Cpath d='M25 34l4 4' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M28 6H12a2 2 0 00-2 2v32a2 2 0 002 2h24a2 2 0 002-2V18l-10-12z' stroke='%23000' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M28 6v12h10' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='21' cy='30' r='5' stroke='%23000' stroke-width='1.8'/%3E%3Cpath d='M25 34l4 4' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}
.svc-process__icon--strategy-board {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Crect x='8' y='6' width='32' height='36' rx='2' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M16 6v-2M32 6v-2' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M16 20l4 4 4-6 4 8' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 14h20' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/%3E%3Ccircle cx='28' cy='33' r='2' stroke='%23000' stroke-width='1.6'/%3E%3Cpath d='M30 33h4M14 33h10' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Crect x='8' y='6' width='32' height='36' rx='2' stroke='%23000' stroke-width='2'/%3E%3Cpath d='M16 6v-2M32 6v-2' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M16 20l4 4 4-6 4 8' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 14h20' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/%3E%3Ccircle cx='28' cy='33' r='2' stroke='%23000' stroke-width='1.6'/%3E%3Cpath d='M30 33h4M14 33h10' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}
.svc-process__icon--folder-docs {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M6 14a2 2 0 012-2h12l4 4h16a2 2 0 012 2v20a2 2 0 01-2 2H8a2 2 0 01-2-2V14z' stroke='%23000' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M16 24h16M16 30h10' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M6 14a2 2 0 012-2h12l4 4h16a2 2 0 012 2v20a2 2 0 01-2 2H8a2 2 0 01-2-2V14z' stroke='%23000' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M16 24h16M16 30h10' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}
.svc-process__icon--handshake {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M6 16l8 8 4-2 8 6 8-4 8 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 16c2-4 6-6 10-4l6 3 6-3c4-2 8 0 10 4' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M18 22l-6 8c-1 2 0 4 2 4s4-1 5-3l5-7' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M30 24l4 6c1 2 0 4-2 4s-3-1-4-3l-4-5' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M6 16l8 8 4-2 8 6 8-4 8 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 16c2-4 6-6 10-4l6 3 6-3c4-2 8 0 10 4' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M18 22l-6 8c-1 2 0 4 2 4s4-1 5-3l5-7' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M30 24l4 6c1 2 0 4-2 4s-3-1-4-3l-4-5' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.svc-process__num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.svc-process__step-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
}
.svc-process__step-text {
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}

@media (max-width: 900px) {
  .svc-process__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .svc-process__connector {
    padding: 8px 0;
    transform: rotate(90deg);
    width: auto;
    height: 32px;
    justify-content: flex-start;
    padding-left: 4px;
  }
  .svc-process__step { gap: 10px; padding-bottom: 8px; }
}

/* ── Business page ─────────────────────────────────────────── */
.page-biznes { background: var(--bg); }

/* Split Hero */
.biz-hero {
  background: #fff;
  overflow: hidden;
}
.biz-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  align-items: center;
  gap: 0;
}
.biz-hero__content {
  padding: 80px 48px 80px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.biz-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
}
.biz-hero__eyebrow-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--gold);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  flex-shrink: 0;
}
.biz-hero__eyebrow-icon--building {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Crect x='3' y='3' width='14' height='14' rx='1' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M7 6h2M11 6h2M7 9h2M11 9h2M8 17v-4h4v4' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Crect x='3' y='3' width='14' height='14' rx='1' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M7 6h2M11 6h2M7 9h2M11 9h2M8 17v-4h4v4' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.biz-hero__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin: 0;
}
.biz-hero__lead {
  font-size: 16px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
  max-width: 480px;
}
.biz-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.biz-hero__audience {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 35, 50, 0.08);
}
.biz-hero__aud-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.biz-hero__aud-icon {
  display: block;
  width: 36px;
  height: 36px;
  background: rgba(169, 116, 26, 0.1);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
/* audience icons via pseudo — simple shapes */
.biz-hero__aud-icon::after {
  content: '';
  position: absolute;
  inset: 8px;
  background: var(--gold);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.biz-hero__aud-icon--entrepreneur::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='6' r='3' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M3 18c0-4 3-7 7-7s7 3 7 7' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M14 8l2 2-2 2M16 10h-3' stroke='%23000' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='6' r='3' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M3 18c0-4 3-7 7-7s7 3 7 7' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M14 8l2 2-2 2M16 10h-3' stroke='%23000' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.biz-hero__aud-icon--building::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Crect x='3' y='3' width='14' height='14' rx='1' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M7 6h2M11 6h2M7 9h2M11 9h2M8 17v-4h4v4' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Crect x='3' y='3' width='14' height='14' rx='1' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M7 6h2M11 6h2M7 9h2M11 9h2M8 17v-4h4v4' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.biz-hero__aud-icon--investor::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M3 15l4-4 3 3 4-5 3 2' stroke='%23000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 8h2v2' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M3 15l4-4 3 3 4-5 3 2' stroke='%23000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 8h2v2' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); }
.biz-hero__aud-icon--globe::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='7' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M3 10h14M10 3c-2 2.5-3 4.5-3 7s1 4.5 3 7M10 3c2 2.5 3 4.5 3 7s-1 4.5-3 7' stroke='%23000' stroke-width='1.2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='7' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M3 10h14M10 3c-2 2.5-3 4.5-3 7s1 4.5 3 7M10 3c2 2.5 3 4.5 3 7s-1 4.5-3 7' stroke='%23000' stroke-width='1.2'/%3E%3C/svg%3E"); }
.biz-hero__aud-label {
  font-size: 12px;
  color: #4b5563;
  line-height: 1.3;
  max-width: 80px;
}
.biz-hero__media {
  height: 100%;
  min-height: 640px;
  overflow: hidden;
  position: relative;
}
.biz-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
  display: block;
}

/* Programs section */
.biz-programs {
  padding: 80px 0;
  background: #f8f6f2;
}
.biz-programs__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.biz-programs__title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}
.biz-programs__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.biz-programs__lead {
  font-size: 16px;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

/* Program cards grid */
.biz-prog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.biz-prog-card {
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.biz-prog-card:hover {
  box-shadow: 0 8px 28px rgba(26, 35, 50, 0.1);
  transform: translateY(-2px);
}
.biz-prog-card__icon {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-label-bg);
  position: relative;
  flex-shrink: 0;
}
.biz-prog-card__icon::after {
  content: '';
  position: absolute;
  inset: 12px;
  background: var(--gold);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.biz-prog-card__icon--group::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='7' cy='6' r='2.5' stroke='%23000' stroke-width='1.4'/%3E%3Ccircle cx='13' cy='6' r='2.5' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M1 17c0-3.5 2.5-6 6-6M19 17c0-3.5-2.5-6-6-6M7 17c0-3 1.3-5.5 3-6.5C11.7 11.5 13 14 13 17' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='7' cy='6' r='2.5' stroke='%23000' stroke-width='1.4'/%3E%3Ccircle cx='13' cy='6' r='2.5' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M1 17c0-3.5 2.5-6 6-6M19 17c0-3.5-2.5-6-6-6M7 17c0-3 1.3-5.5 3-6.5C11.7 11.5 13 14 13 17' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); }
.biz-prog-card__icon--globe::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='7' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M3 10h14M10 3c-2 2.5-3 4.5-3 7s1 4.5 3 7M10 3c2 2.5 3 4.5 3 7s-1 4.5-3 7' stroke='%23000' stroke-width='1.2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='7' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M3 10h14M10 3c-2 2.5-3 4.5-3 7s1 4.5 3 7M10 3c2 2.5 3 4.5 3 7s-1 4.5-3 7' stroke='%23000' stroke-width='1.2'/%3E%3C/svg%3E"); }
.biz-prog-card__icon--chart::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M3 15l4-4 3 3 4-5 3 2' stroke='%23000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Crect x='3' y='3' width='14' height='14' rx='1' stroke='%23000' stroke-width='1.4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M3 15l4-4 3 3 4-5 3 2' stroke='%23000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Crect x='3' y='3' width='14' height='14' rx='1' stroke='%23000' stroke-width='1.4'/%3E%3C/svg%3E"); }
.biz-prog-card__icon--briefcase::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Crect x='2' y='7' width='16' height='11' rx='2' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M7 7V5a1 1 0 011-1h4a1 1 0 011 1v2M2 12h16' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Crect x='2' y='7' width='16' height='11' rx='2' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M7 7V5a1 1 0 011-1h4a1 1 0 011 1v2M2 12h16' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); }
.biz-prog-card__icon--flag::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4 3v14M4 3h12l-3 4.5L16 12H4' stroke='%23000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4 3v14M4 3h12l-3 4.5L16 12H4' stroke='%23000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.biz-prog-card__icon--australia::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='7' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M10 3v14M3 10h14' stroke='%23000' stroke-width='1.2' stroke-dasharray='2 2'/%3E%3Cpath d='M10 7c1 .5 2 1.5 2 3s-1 2.5-2 3' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='7' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M10 3v14M3 10h14' stroke='%23000' stroke-width='1.2' stroke-dasharray='2 2'/%3E%3Cpath d='M10 7c1 .5 2 1.5 2 3s-1 2.5-2 3' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.biz-prog-card__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.1;
}
.biz-prog-card__text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}
.biz-prog-card__for {
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(26, 35, 50, 0.07);
}
.biz-prog-card__for strong {
  color: var(--navy);
  font-weight: 600;
}
.biz-prog-card__cta {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 10px 16px;
}
@media (max-width: 900px) {
  .biz-prog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .biz-prog__grid { grid-template-columns: 1fr; }
}

/* Long-form article section on business hub */
.biz-article {
  padding: 72px 0;
  background: #fff;
  border-top: 1px solid rgba(26, 35, 50, 0.06);
}
.biz-article .kb-content {
  max-width: 820px;
  margin: 0 auto;
}

/* Audience cards */
.biz-audience {
  padding: 80px 0 64px;
  background: #fff;
}
.biz-audience__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.biz-audience__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.biz-audience__title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.15;
}
.biz-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
.biz-aud-card {
  background: #faf9f7;
  border: 1px solid rgba(169, 116, 26, 0.2);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.biz-aud-card__top {
  padding: 36px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.biz-aud-card__icon {
  display: block;
  width: 64px;
  height: 64px;
  background: rgba(169, 116, 26, 0.1);
  border-radius: 50%;
  border: 1.5px solid rgba(169, 116, 26, 0.25);
  position: relative;
  flex-shrink: 0;
}
.biz-aud-card__icon::after {
  content: '';
  position: absolute;
  inset: 14px;
  background: var(--gold);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.biz-aud-card__icon--briefcase::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Crect x='2' y='7' width='16' height='11' rx='2' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M7 7V5a1 1 0 011-1h4a1 1 0 011 1v2M2 12h16' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Crect x='2' y='7' width='16' height='11' rx='2' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M7 7V5a1 1 0 011-1h4a1 1 0 011 1v2M2 12h16' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); }
.biz-aud-card__icon--building::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Crect x='3' y='3' width='14' height='14' rx='1' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M7 6h2M11 6h2M7 9h2M11 9h2M8 17v-4h4v4' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Crect x='3' y='3' width='14' height='14' rx='1' stroke='%23000' stroke-width='1.4'/%3E%3Cpath d='M7 6h2M11 6h2M7 9h2M11 9h2M8 17v-4h4v4' stroke='%23000' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.biz-aud-card__icon--investor::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M3 15l4-4 3 3 4-5 3 2' stroke='%23000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 8h2v2' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M3 15l4-4 3 3 4-5 3 2' stroke='%23000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 8h2v2' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); }
.biz-aud-card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.biz-aud-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}
.biz-aud-card__photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  margin-top: auto;
}
.biz-aud-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.biz-aud-card__photo::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 80px;
  background: linear-gradient(to bottom, #faf9f7, transparent);
  z-index: 1;
}
/* Section footer with divider */
.biz-audience__footer {
  text-align: center;
  padding-top: 8px;
}
.biz-audience__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.biz-audience__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(169, 116, 26, 0.3), transparent);
}
.biz-audience__divider-icon {
  flex-shrink: 0;
}
.biz-audience__note {
  font-size: 15px;
  color: #5b6472;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* svc-cat icons for business programs */
.svc-cat-card__icon--transfer { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M4 10h24M22 6l6 4-6 4M28 22H4M10 18l-6 4 6 4' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M4 10h24M22 6l6 4-6 4M28 22H4M10 18l-6 4 6 4' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.svc-cat-card__icon--invest { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M4 24l6-6 4 4 6-8 6 4' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 10h6v6' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M4 24l6-6 4 4 6-8 6 4' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 10h6v6' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); }
.svc-cat-card__icon--people { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='16' cy='10' r='4' stroke='%23000' stroke-width='1.8'/%3E%3Cpath d='M7 28c0-5 4-9 9-9s9 4 9 9' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='16' cy='10' r='4' stroke='%23000' stroke-width='1.8'/%3E%3Cpath d='M7 28c0-5 4-9 9-9s9 4 9 9' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); }

@media (max-width: 900px) {
  .biz-hero__inner { grid-template-columns: 1fr; }
  .biz-hero__media { min-height: 320px; order: -1; }
  .biz-hero__content { padding: 48px 0; }
  .biz-audience__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .biz-hero__audience { gap: 16px; }
  .biz-hero__btns { flex-direction: column; }
}

/* Quiz page */
.page-quiz .quiz-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 72px;
}

.quiz-page__head {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}

.quiz-page__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5c420f;
  background: #faf6ee;
  border: 1px solid #d4bc82;
  border-radius: 999px;
}

.quiz-page__head h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.2;
  color: #1a2332;
}

.quiz-page__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.quiz-page__hero img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(26, 35, 50, 0.08);
}

.quiz-page__card {
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(26, 35, 50, 0.06);
}

.quiz-page__progress {
  height: 4px;
  background: #f3f4f6;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}

.quiz-page__progress-bar {
  display: block;
  height: 100%;
  width: 25%;
  background: var(--gold);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.quiz-page__step {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 600;
  color: #68707d;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.quiz-page__question { display: none; }
.quiz-page__question.is-active { display: block; }

.quiz-page__question-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  color: #1a2332;
}

.quiz-page__options {
  display: grid;
  gap: 10px;
}

.quiz-page__option {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.45;
  color: #1a2332;
  background: #fafafa;
  border: 1px solid rgba(26, 35, 50, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.quiz-page__option:hover {
  border-color: var(--gold);
  background: #faf6ee;
}

.quiz-page__result-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.quiz-page__result-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 26px;
  color: #1a2332;
}

.quiz-page__result-text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.quiz-page__result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.quiz-page__restart {
  padding: 0;
  font-size: 14px;
  color: #5b6472;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

.quiz-page__restart:hover { color: var(--gold); }

/* KB hub */
.kb-hub-hero {
  background: linear-gradient(135deg, #faf6ee 0%, #fff 60%);
  border-bottom: 1px solid rgba(26, 35, 50, 0.06);
}

.kb-hub-hero__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
  padding: 48px 20px;
}

.kb-hub-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.kb-hub-hero__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  color: #1a2332;
}

.kb-hub-hero__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.kb-hub-hero__media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(26, 35, 50, 0.08);
}

.kb-hub__inner {
  padding: 40px 20px 72px;
}

.kb-hub__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.kb-hub__chip {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  background: #fff;
  border: 1px solid rgba(26, 35, 50, 0.12);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s;
}

.kb-hub__chip:hover {
  border-color: var(--gold);
  color: #5c420f;
}

.kb-hub__chip.is-active {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.kb-hub__empty {
  text-align: center;
  color: #5b6472;
  padding: 32px 0;
}

/* FAQ page */
.faq-page__head {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 24px;
  text-align: center;
}

.faq-page__head h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  color: #1a2332;
}

.faq-page__lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.faq-page__cta { margin-bottom: 8px; }

.page-faq .pricing-faq__title {
  font-size: 20px;
}

@media (max-width: 768px) {
  .quiz-page__head,
  .kb-hub-hero__inner {
    grid-template-columns: 1fr;
  }
  .quiz-page__hero { order: -1; max-width: 320px; }
}

/* AI trust widget */
.ai-trust {
  padding: 56px 0;
  background: #f9fafb;
  border-top: 1px solid rgba(26, 35, 50, 0.06);
  border-bottom: 1px solid rgba(26, 35, 50, 0.06);
}

.ai-trust__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.ai-trust__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #1a2332;
  margin: 0 0 8px;
}

.ai-trust__lead {
  color: #5b6472;
  font-size: 15px;
  margin: 0 0 24px;
}

.ai-trust__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ai-trust__btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.15s;
}

.ai-trust__btn:hover {
  opacity: 0.88;
}

.ai-trust__btn--perplexity { background: #20808d; }
.ai-trust__btn--chatgpt { background: #10a37f; }
.ai-trust__btn--claude { background: #cc785c; }
.ai-trust__btn--gemini { background: #4285f4; }
.ai-trust__btn--grok { background: #111827; }

/* Floating Telegram quick-message button */
.fab-telegram {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--gold, #b8860b);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(26, 35, 50, 0.22);
  transition: transform 0.15s, box-shadow 0.15s;
}

.fab-telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 35, 50, 0.28);
}

.fab-telegram svg {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .fab-telegram span {
    display: none;
  }
  .fab-telegram {
    padding: 12px;
  }
}
