:root {
  --bg: #080605;
  --bg-soft: #0d0907;
  --panel: #15100c;
  --panel-2: #1b130d;
  --text: #f7efe4;
  --muted: #b9aa98;
  --muted-2: #8f8173;
  --gold: #d3a45d;
  --gold-light: #f1d39a;
  --gold-deep: #8f5826;
  --line: rgba(214, 170, 99, .22);
  --danger: #ffaaa0;
  --success: #d8efc5;
  --shadow: 0 26px 72px rgba(0, 0, 0, .5);
  --radius: 22px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(211, 164, 93, .3); color: #fff; }

.container { width: min(100% - 28px, 1080px); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 999;
  padding: 11px 14px;
  border-radius: 10px;
  background: var(--gold-light);
  color: #180f08;
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.ambient { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.ambient__orb { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .1; }
.ambient__orb--one { width: 340px; height: 340px; left: -180px; top: 18%; background: #a86225; }
.ambient__orb--two { width: 420px; height: 420px; right: -240px; bottom: -120px; background: #72280e; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 64px;
  border-bottom: 1px solid rgba(214, 170, 99, .12);
  background: rgba(8, 6, 5, .78);
  backdrop-filter: blur(18px);
}
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.brand__mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(211, 164, 93, .58);
  color: var(--gold-light);
  transform: rotate(45deg);
}
.brand__mark i { font-style: normal; font-size: 10px; transform: rotate(-45deg); }
.brand__text { min-width: 0; display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: var(--serif); font-weight: 500; font-size: 16px; letter-spacing: .035em; white-space: nowrap; }
.brand__text small { margin-top: 4px; color: var(--muted-2); font-size: 7px; text-transform: uppercase; letter-spacing: .16em; white-space: nowrap; }

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 720;
  font-size: 14px;
  letter-spacing: .01em;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,.22), transparent 75%);
  transform: translateX(-115%);
  transition: transform .65s ease;
}
.button:hover::before { transform: translateX(115%); }
.button:hover { transform: translateY(-1px); }
.button--header {
  min-height: 38px;
  padding: 0 15px;
  border-color: rgba(211, 164, 93, .48);
  background: rgba(12, 8, 6, .58);
  color: var(--gold-light);
  font-size: 11px;
}
.button__desktop { display: none; }
.button--primary {
  color: #1a1008;
  background: linear-gradient(120deg, #ad712f, #f0ce87 48%, #c78a3d);
  box-shadow: 0 13px 32px rgba(154, 92, 28, .25), inset 0 1px rgba(255,255,255,.5);
}
.button--outline {
  border-color: rgba(211, 164, 93, .5);
  color: var(--gold-light);
  background: rgba(18, 12, 8, .62);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 9px;
  font-weight: 760;
}
.eyebrow > span { width: 30px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

.hero {
  position: relative;
  min-height: 550px;
  padding-top: 64px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #090605;
}
.hero__media {
  position: absolute;
  inset: 64px 0 0;
  background-image: url('../img/vasilissa-hero.webp');
  background-size: cover;
  background-position: 69% center;
  transform: none;
  animation: none;
}
.hero__overlay {
  position: absolute;
  inset: 64px 0 0;
  background:
    linear-gradient(180deg, rgba(6,4,3,.2) 0%, rgba(7,5,4,.14) 26%, rgba(7,5,4,.62) 64%, #080605 100%),
    linear-gradient(90deg, rgba(5,4,3,.82) 0%, rgba(5,4,3,.36) 58%, rgba(5,4,3,.18) 100%);
}
.hero__ornament { position: absolute; right: -42px; bottom: 72px; width: 230px; height: 230px; opacity: .35; }
.hero__ornament span { position: absolute; inset: 0; border: 1px solid rgba(211, 164, 93, .25); border-radius: 50%; }
.hero__ornament span:nth-child(2) { inset: 18%; }
.hero__ornament span:nth-child(3) { inset: 36%; }
.hero__inner { position: relative; z-index: 2; width: 100%; padding: 0 0 72px; }
.hero__content { max-width: 430px; }
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 14.7vw, 70px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.045em;
  text-shadow: 0 12px 42px rgba(0,0,0,.6);
}
.hero h1 em { color: var(--gold-light); font-weight: 400; }
.hero__lead { max-width: 340px; margin: 20px 0 18px; color: #d9ccbd; font-size: 15px; line-height: 1.65; }
.hero__free {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(240, 211, 154, .34);
  border-radius: 14px;
  background: linear-gradient(105deg, rgba(211,164,93,.18), rgba(211,164,93,.05));
  box-shadow: 0 12px 30px rgba(71,39,16,.24);
}
.hero__free-icon { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(240,211,154,.44); border-radius: 50%; color: var(--gold-light); }
.hero__free > span:last-child { display: flex; flex-direction: column; line-height: 1.1; }
.hero__free small { color: #c3b5a6; font-size: 8px; text-transform: uppercase; letter-spacing: .11em; }
.hero__free strong { margin-top: 4px; color: #fff2d8; font-size: 17px; text-transform: uppercase; letter-spacing: .04em; }
.hero__points { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin: 13px 0 0; padding: 0; }
.hero__points li { padding: 5px 9px; border-radius: 999px; background: rgba(12,8,6,.5); border: 1px solid rgba(211,164,93,.16); color: #d6cabd; font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }

.lead-section { position: relative; z-index: 4; margin-top: -42px; padding-bottom: 52px; scroll-margin-top: 76px; }
.lead-card {
  position: relative;
  max-width: 610px;
  margin-inline: auto;
  padding: 21px 18px 19px;
  border: 1px solid rgba(234, 197, 130, .3);
  border-radius: 23px;
  background: linear-gradient(155deg, rgba(29,20,13,.98), rgba(12,8,6,.98));
  box-shadow: var(--shadow);
  overflow: visible;
}
.lead-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(140deg, rgba(255,255,255,.07), transparent 25%, transparent 73%, rgba(211,164,93,.05)); }
.lead-card__halo { position: absolute; right: 0; top: -72px; width: 180px; height: 180px; border-radius: 50%; background: rgba(213, 147, 66, .19); filter: blur(60px); pointer-events: none; }
.lead-card__head { position: relative; margin-bottom: 17px; }
.lead-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(240, 211, 154, .3);
  border-radius: 999px;
  background: rgba(211,164,93,.09);
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.lead-card__badge > span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 4px rgba(211,164,93,.08), 0 0 13px rgba(240,211,154,.44); }
.lead-card h2 { margin: 0; font: 400 34px/.98 var(--serif); letter-spacing: -.035em; }
.lead-card h2 em { color: var(--gold-light); font-weight: 400; }
.lead-card__head p { margin: 11px 0 0; max-width: 440px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.form-grid { display: grid; gap: 13px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field > span { color: #ded1c2; font-size: 11px; }
.field input, .field select {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(211,164,93,.2);
  border-radius: 12px;
  outline: 0;
  background: rgba(5,4,3,.58);
  color: var(--text);
  padding: 13px 14px;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input::placeholder { color: #82776c; }
.field select {
  appearance: none;
  padding-right: 36px;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 19px) 21px, calc(100% - 14px) 21px;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.field select option { background: #17100c; color: #f7efe4; }
.field input:focus, .field select:focus { border-color: rgba(240,211,154,.6); background-color: rgba(7,5,4,.8); box-shadow: 0 0 0 3px rgba(211,164,93,.08); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid .country-picker__trigger { border-color: rgba(255,150,140,.64); }
.field--phone { position: relative; z-index: 10; }
.phone-control { display: grid; grid-template-columns: 111px minmax(0, 1fr); gap: 8px; }
.phone-control input { min-width: 0; letter-spacing: .015em; }
.country-picker { position: relative; min-width: 0; }
.country-picker__trigger {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid rgba(211,164,93,.2);
  border-radius: 12px;
  outline: 0;
  background: rgba(5,4,3,.58);
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.country-picker__trigger:hover { border-color: rgba(240,211,154,.42); }
.country-picker__trigger:focus-visible, .country-picker.is-open .country-picker__trigger { border-color: rgba(240,211,154,.6); background: rgba(7,5,4,.82); box-shadow: 0 0 0 3px rgba(211,164,93,.08); }
.country-picker__trigger img, .country-option img { width: 27px; height: 20px; flex: 0 0 auto; object-fit: cover; border-radius: 3px; box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 3px 8px rgba(0,0,0,.24); }
.country-picker__trigger strong { min-width: 31px; color: #f0e5d6; font-size: 12px; font-weight: 700; text-align: left; }
.country-picker__trigger svg { width: 10px; margin-left: auto; fill: none; stroke: var(--gold); stroke-width: 1.4; transition: transform .2s ease; }
.country-picker.is-open .country-picker__trigger svg { transform: rotate(180deg); }
.country-picker__menu {
  position: absolute;
  z-index: 70;
  top: calc(100% + 8px);
  left: 0;
  width: min(326px, calc(100vw - 48px));
  max-height: min(330px, 58vh);
  padding: 7px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(230,190,122,.3);
  border-radius: 14px;
  background: rgba(18,12,8,.99);
  box-shadow: 0 22px 58px rgba(0,0,0,.62), inset 0 1px rgba(255,255,255,.05);
  backdrop-filter: blur(18px);
}
.country-picker__menu::-webkit-scrollbar { width: 6px; }
.country-picker__menu::-webkit-scrollbar-thumb { border: 2px solid #120c08; border-radius: 999px; background: rgba(211,164,93,.4); }
.country-option {
  width: 100%;
  min-height: 43px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: #eee4d6;
  text-align: left;
}
.country-option:hover, .country-option:focus-visible { outline: 0; border-color: rgba(211,164,93,.18); background: rgba(211,164,93,.09); }
.country-option[aria-selected="true"] { border-color: rgba(240,211,154,.26); background: linear-gradient(100deg, rgba(211,164,93,.16), rgba(211,164,93,.04)); color: #fff4e3; }
.country-option span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; }
.country-option strong { color: var(--gold-light); font-size: 12px; }
.phone-hint { color: #8b7d70; font-size: 9px; line-height: 1.35; }
.field__error { min-height: 0; color: var(--danger); font-size: 10px; line-height: 1.3; }
.field__error:not(:empty) { min-height: 13px; }
.field__error--consent { margin-top: -7px; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; color: #a89c8e; font-size: 10px; line-height: 1.45; cursor: pointer; }
.consent input { position: absolute; opacity: 0; pointer-events: none; }
.consent__box { width: 17px; height: 17px; display: grid; place-items: center; margin-top: 1px; border: 1px solid rgba(211,164,93,.4); border-radius: 5px; }
.consent input:checked + .consent__box { border-color: transparent; background: linear-gradient(135deg, #c2873a, #f0d095); }
.consent input:checked + .consent__box::after { content: "✓"; color: #190f08; font-size: 11px; font-weight: 900; }
.consent.is-invalid .consent__box { border-color: rgba(255,150,140,.7); box-shadow: 0 0 0 3px rgba(255,150,140,.06); }
.consent a { color: #d7bc8a; text-decoration: underline; text-underline-offset: 2px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.button--submit { width: 100%; margin-top: 16px; }
.button--submit svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button--submit.is-loading { pointer-events: none; opacity: .76; }
.button--submit.is-loading::after { content: ""; width: 16px; height: 16px; border: 2px solid rgba(26,16,8,.3); border-top-color: #1a1008; border-radius: 50%; animation: spin .8s linear infinite; }
.button--submit.is-loading svg { display: none; }
.form-note { margin: 10px 0 0; text-align: center; color: #817568; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.form-status { display: none; margin-top: 12px; padding: 12px 13px; border-radius: 10px; font-size: 12px; line-height: 1.45; }
.form-status.is-visible { display: block; }
.form-status.is-success { border: 1px solid rgba(160,206,119,.27); background: rgba(112,150,77,.13); color: var(--success); }
.form-status.is-error { border: 1px solid rgba(255,144,130,.24); background: rgba(170,70,55,.12); color: #ffc0b7; }

.section { position: relative; padding: 56px 0; }
.section-heading { max-width: 650px; margin: 0 auto 25px; text-align: center; }
.section-heading--left { margin-left: 0; text-align: left; }
.section-heading h2 { margin: 0; font: 400 37px/.98 var(--serif); letter-spacing: -.035em; }
.section-heading h2 em { color: var(--gold-light); font-weight: 400; }
.section-heading > p:last-child { margin: 15px auto 0; max-width: 530px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.section-heading--left > p:last-child { margin-left: 0; }
.section-heading .eyebrow { justify-content: center; }
.section-heading--left .eyebrow { justify-content: flex-start; }

.situations { padding-top: 48px; background: radial-gradient(circle at 50% 0%, rgba(126,77,29,.12), transparent 38%), var(--bg); }
.situation-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.situation-card {
  min-width: 0;
  border: 1px solid rgba(211,164,93,.17);
  border-radius: 17px;
  background: linear-gradient(155deg, rgba(25,17,12,.93), rgba(11,8,6,.98));
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.situation-card:hover { transform: translateY(-3px); border-color: rgba(211,164,93,.35); box-shadow: 0 19px 44px rgba(0,0,0,.3); }
.situation-card__visual { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #110b08; }
.situation-card__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 54%, rgba(8,6,5,.58) 100%); pointer-events: none; }
.situation-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.situation-card:hover .situation-card__visual img { transform: scale(1.035); }
.situation-card__visual span { position: absolute; z-index: 2; right: 9px; top: 8px; display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid rgba(240,211,154,.28); border-radius: 50%; background: rgba(8,6,5,.54); color: var(--gold-light); font: 400 10px var(--serif); }
.situation-card__body { padding: 13px 12px 15px; }
.situation-card h3 { margin: 0 0 6px; font: 400 21px/1.05 var(--serif); letter-spacing: -.025em; }
.situation-card p { margin: 0; color: var(--muted); font-size: 11.5px; line-height: 1.45; }
.center-action { display: flex; justify-content: center; margin-top: 24px; }
.center-action .button { width: 100%; max-width: 340px; }

.compact-info { padding-top: 52px; background: #0d0907; overflow: hidden; }
.compact-info::before { content: ""; position: absolute; inset: 0; opacity: .26; background-image: linear-gradient(rgba(211,164,93,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(211,164,93,.035) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(180deg, #000, transparent 84%); pointer-events: none; }
.compact-info__inner { position: relative; display: grid; gap: 14px; }
.profile-card {
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 15px;
  border: 1px solid rgba(211,164,93,.2);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(29,20,14,.93), rgba(12,8,6,.96));
  box-shadow: 0 20px 52px rgba(0,0,0,.28);
}
.profile-card__photo { position: relative; height: 138px; overflow: hidden; border-radius: 14px 14px 36px 14px; border: 1px solid rgba(240,211,154,.24); }
.profile-card__photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 35px rgba(0,0,0,.18); pointer-events: none; }
.profile-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 49% 29%; }
.profile-card__content { min-width: 0; }
.profile-card__content .eyebrow { margin-bottom: 8px; font-size: 7px; letter-spacing: .14em; }
.profile-card__content .eyebrow > span { width: 18px; }
.profile-card h2 { margin: 0; font: 400 24px/1.03 var(--serif); letter-spacing: -.03em; }
.profile-card h2 em { color: var(--gold-light); font-weight: 400; }
.profile-card__content > p { margin: 10px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.profile-card__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 11px; }
.profile-card__tags span { padding: 4px 7px; border: 1px solid rgba(211,164,93,.18); border-radius: 999px; background: rgba(211,164,93,.06); color: #d7c9ba; font-size: 7.5px; text-transform: uppercase; letter-spacing: .05em; }
.steps-block { padding: 20px 17px 18px; border: 1px solid rgba(211,164,93,.16); border-radius: 20px; background: rgba(12,8,6,.72); }
.steps-block__head .eyebrow { margin-bottom: 8px; }
.steps-block__head h2 { margin: 0 0 15px; font: 400 30px/1 var(--serif); letter-spacing: -.03em; }
.steps { list-style: none; display: grid; gap: 8px; margin: 0 0 16px; padding: 0; }
.steps li { display: grid; grid-template-columns: 39px minmax(0, 1fr); gap: 11px; align-items: center; min-height: 68px; padding: 10px 11px; border: 1px solid rgba(211,164,93,.13); border-radius: 14px; background: rgba(26,18,13,.56); }
.steps li > strong { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(211,164,93,.28); border-radius: 50%; color: var(--gold-light); font: 400 12px var(--serif); }
.steps li span { display: flex; flex-direction: column; gap: 2px; }
.steps li b { color: #f2e9dc; font-size: 13px; }
.steps li small { color: var(--muted); font-size: 10.5px; line-height: 1.4; }
.steps-block .button { width: 100%; }

.faq { padding-top: 52px; }
.faq__inner { display: grid; gap: 4px; }
.accordion { border-top: 1px solid rgba(211,164,93,.17); }
.accordion details { border-bottom: 1px solid rgba(211,164,93,.16); }
.accordion summary { list-style: none; position: relative; padding: 18px 40px 18px 0; color: #eee4d6; font: 400 18px/1.3 var(--serif); cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary > span { position: absolute; right: 4px; top: 50%; width: 24px; height: 24px; transform: translateY(-50%); border: 1px solid rgba(211,164,93,.3); border-radius: 50%; }
.accordion summary > span::before, .accordion summary > span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 9px; height: 1px; background: var(--gold-light); transform: translate(-50%, -50%); transition: transform .2s ease; }
.accordion summary > span::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion details[open] summary > span::after { transform: translate(-50%, -50%) rotate(0); }
.accordion details > div { padding: 0 34px 17px 0; }
.accordion details p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.final-cta { position: relative; padding: 54px 0 60px; overflow: hidden; background: radial-gradient(circle at 50% 30%, rgba(161,98,35,.26), transparent 48%), linear-gradient(180deg, #100b08, #080605); border-top: 1px solid rgba(211,164,93,.12); }
.final-cta::before, .final-cta::after { content: ""; position: absolute; left: 50%; top: 50%; border: 1px solid rgba(211,164,93,.12); border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.final-cta::before { width: 310px; height: 310px; }
.final-cta::after { width: 210px; height: 210px; }
.final-cta__inner { position: relative; z-index: 2; max-width: 570px; text-align: center; }
.final-cta__star { display: grid; place-items: center; width: 39px; height: 39px; margin: 0 auto 14px; border: 1px solid rgba(240,211,154,.35); border-radius: 50%; color: var(--gold-light); }
.final-cta p { margin: 0 0 10px; color: var(--gold-light); font-size: 9px; font-weight: 760; text-transform: uppercase; letter-spacing: .14em; }
.final-cta h2 { margin: 0 0 22px; font: 400 39px/.96 var(--serif); letter-spacing: -.035em; }
.final-cta h2 em { color: var(--gold-light); font-weight: 400; }
.final-cta .button { width: 100%; max-width: 330px; }

.site-footer { padding: 27px 0 28px; border-top: 1px solid rgba(211,164,93,.11); background: #070504; }
.site-footer__inner { display: grid; gap: 17px; }
.site-footer strong { font: 400 18px var(--serif); }
.site-footer p { margin: 8px 0 0; max-width: 680px; color: #796e63; font-size: 9px; line-height: 1.6; }
.site-footer__links { display: flex; align-items: center; justify-content: space-between; gap: 14px; color: #9a8d80; font-size: 10px; }
.site-footer__links a { color: #c7ad7f; text-decoration: underline; text-underline-offset: 3px; }

.sticky-cta {
  position: fixed;
  z-index: 60;
  left: max(12px, env(safe-area-inset-left));
  right: max(12px, env(safe-area-inset-right));
  bottom: max(10px, env(safe-area-inset-bottom));
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: linear-gradient(120deg, #ae732f, #edcb85 50%, #c68a3d);
  color: #1a1008;
  box-shadow: 0 16px 42px rgba(0,0,0,.48), 0 10px 30px rgba(143,83,26,.25);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(0);
  opacity: 1;
  transition: opacity .25s ease, transform .25s ease;
}
.sticky-cta i { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: rgba(27,17,8,.14); font-style: normal; font-size: 18px; }
.sticky-cta.is-hidden { opacity: 0; transform: translateY(88px); pointer-events: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible, .reveal--visible { opacity: 1; transform: none; }

@keyframes heroBreath { from { transform: scale(1.015); } to { transform: scale(1.055); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 359px) {
  .container { width: min(100% - 22px, 1080px); }
  .brand__text strong { font-size: 14px; }
  .button--header { padding-inline: 12px; }
  .hero h1 { font-size: 45px; }
  .situation-card__body { padding-inline: 10px; }
  .situation-card h3 { font-size: 19px; }
  .situation-card p { font-size: 10.5px; }
  .profile-card { grid-template-columns: 92px minmax(0, 1fr); gap: 11px; padding: 12px; }
  .profile-card__photo { height: 129px; }
  .profile-card h2 { font-size: 21px; }
  .profile-card__content > p { font-size: 10px; }
}

@media (min-width: 620px) {
  body { padding-bottom: 0; }
  .container { width: min(100% - 40px, 1080px); }
  .site-header { height: 72px; }
  .site-header__inner { height: 72px; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__text strong { font-size: 18px; }
  .brand__text small { font-size: 8px; }
  .button--header { min-height: 42px; padding: 0 18px; font-size: 12px; }
  .button__desktop { display: inline; }
  .button__mobile { display: none; }
  .hero { min-height: 650px; padding-top: 72px; }
  .hero__media { inset: 72px 0 0; background-position: 66% center; transform: scale(1.015); animation: heroBreath 12s ease-in-out infinite alternate; }
  .hero__overlay { inset: 72px 0 0; background: linear-gradient(90deg, rgba(5,4,3,.92) 0%, rgba(5,4,3,.62) 45%, rgba(5,4,3,.16) 80%), linear-gradient(180deg, rgba(5,4,3,.1), rgba(5,4,3,.12) 48%, #080605 100%); }
  .hero__inner { padding-bottom: 92px; }
  .hero__content { max-width: 510px; }
  .hero h1 { font-size: 80px; }
  .hero__lead { max-width: 450px; font-size: 17px; }
  .lead-section { margin-top: -58px; padding-bottom: 70px; }
  .lead-card { padding: 28px 28px 24px; }
  .lead-card h2 { font-size: 42px; }
  .lead-card__head p { font-size: 13px; }
  .form-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-grid > .field:first-child { grid-column: 1; grid-row: 1; }
  .form-grid > .field--phone { grid-column: 1 / -1; grid-row: 2; }
  .form-grid > .field:nth-child(3) { grid-column: 2; grid-row: 1; }
  .consent, .field__error--consent { grid-column: 1 / -1; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2 { font-size: 48px; }
  .section-heading > p:last-child { font-size: 14px; }
  .situation-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
  .situation-card h3 { font-size: 24px; }
  .situation-card p { font-size: 12px; }
  .center-action .button { width: auto; }
  .compact-info__inner { grid-template-columns: 1.02fr .98fr; align-items: stretch; gap: 16px; }
  .profile-card { grid-template-columns: 150px minmax(0,1fr); gap: 20px; padding: 20px; }
  .profile-card__photo { height: 210px; }
  .profile-card h2 { font-size: 34px; }
  .profile-card__content > p { font-size: 13px; }
  .profile-card__tags span { font-size: 8px; padding: 5px 8px; }
  .steps-block { padding: 25px 22px 22px; }
  .steps-block__head h2 { font-size: 35px; }
  .steps li { min-height: 72px; }
  .faq__inner { grid-template-columns: .7fr 1.3fr; gap: 60px; align-items: start; }
  .accordion summary { font-size: 20px; }
  .final-cta { padding: 72px 0 76px; }
  .final-cta h2 { font-size: 52px; }
  .site-footer__inner { grid-template-columns: 1fr auto; align-items: end; }
  .site-footer__links { min-width: 260px; justify-content: flex-end; }
  .sticky-cta { display: none; }
}

@media (min-width: 980px) {
  .hero { min-height: 710px; }
  .hero__inner { padding-bottom: 105px; }
  .hero h1 { font-size: 92px; }
  .hero__lead { font-size: 18px; }
  .lead-section { margin-top: -72px; }
  .lead-card { max-width: 660px; padding: 32px 32px 26px; }
  .lead-card h2 { font-size: 46px; }
  .section { padding: 88px 0; }
  .section-heading h2 { font-size: 56px; }
  .situation-card__body { padding: 16px 15px 18px; }
  .situation-card h3 { font-size: 27px; }
  .profile-card { grid-template-columns: 180px minmax(0,1fr); }
  .profile-card__photo { height: 245px; }
  .profile-card h2 { font-size: 39px; }
  .profile-card__content > p { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
