:root {
  --brand-navy-950: #08111f;
  --brand-navy-900: #0c1628;
  --brand-navy-800: #182235;
  --brand-ink: #202633;
  --brand-ivory: #f6f2ea;
  --brand-sand: #ebe3d7;
  --brand-white: #ffffff;
  --brand-gold: #b99562;
  --brand-gold-hover: #a98455;
  --brand-success: #3f7058;
  --brand-danger: #a84646;
  --brand-text: #222936;
  --brand-text-muted: #687080;
  --brand-border: #d9d1c5;
  --brand-border-dark: rgba(255,255,255,.16);
  --shadow-soft: 0 18px 60px rgba(10,18,32,.10);
  --shadow-float: 0 20px 70px rgba(4,10,20,.18);
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  color: var(--brand-text);
  background: var(--brand-ivory);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid var(--brand-gold); outline-offset: 3px; }

.container { width: min(1280px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.section.dark { color: var(--brand-white); background: var(--brand-navy-900); }
.premium-wave {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.40), rgba(246,242,234,.55)),
    var(--brand-ivory);
}
.premium-wave::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .23;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='420' viewBox='0 0 1200 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23b99562' stroke-width='1.2' stroke-linecap='round' opacity='.42'%3E%3Cpath d='M-80 82 C 70 12 178 152 330 82 S 585 12 735 82 990 152 1140 82 1365 12 1515 82'/%3E%3Cpath d='M-80 148 C 70 78 178 218 330 148 S 585 78 735 148 990 218 1140 148 1365 78 1515 148'/%3E%3Cpath d='M-80 214 C 70 144 178 284 330 214 S 585 144 735 214 990 284 1140 214 1365 144 1515 214'/%3E%3Cpath d='M-80 280 C 70 210 178 350 330 280 S 585 210 735 280 990 350 1140 280 1365 210 1515 280'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 1200px 420px;
}
.premium-wave > .container {
  position: relative;
  z-index: 1;
}
.eyebrow {
  color: var(--brand-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  color: inherit;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: .98;
  letter-spacing: 0;
}
h1 { max-width: 780px; font-size: clamp(44px, 6vw, 76px); }
h2 { max-width: 820px; font-size: clamp(36px, 4.8vw, 58px); }
h3 { font-size: clamp(26px, 2.4vw, 34px); }
.lead { max-width: 720px; font-size: clamp(18px, 2vw, 21px); }
.muted { color: var(--brand-text-muted); }
.dark .muted { color: rgba(255,255,255,.74); }
.section-head { display: grid; gap: 18px; margin-bottom: 42px; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 22px;
  cursor: pointer;
  font-weight: 700;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary-dark { background: var(--brand-gold); color: var(--brand-navy-950); }
.btn.primary-dark:hover { background: var(--brand-gold-hover); }
.btn.primary-light { background: var(--brand-navy-900); color: var(--brand-white); }
.btn.secondary-dark { border-color: var(--brand-border-dark); color: var(--brand-white); }
.btn.secondary-light { border-color: var(--brand-border); color: var(--brand-navy-900); background: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246,242,234,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217,209,197,.8);
}
.nav { display: flex; min-height: var(--header-height); align-items: center; justify-content: space-between; gap: 24px; }
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-navy-950);
  font-weight: 800;
}
.logo img {
  width: 41px;
  height: 52px;
  flex: 0 0 auto;
}
.logo span {
  max-width: 150px;
  font-size: 15px;
  line-height: 1.15;
}
.nav__links { display: flex; gap: 22px; align-items: center; font-size: 15px; font-weight: 700; }
.nav__links a { position: relative; padding: 30px 0; }
.nav__links a:hover::after { width: 100%; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 0;
  height: 2px;
  background: var(--brand-gold);
  transition: width .18s ease;
}
.nav__actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--brand-border); border-radius: 10px; background: var(--brand-white); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--brand-white);
  background:
    linear-gradient(90deg, rgba(8,17,31,.99) 0%, rgba(8,17,31,.94) 32%, rgba(8,17,31,.58) 58%, rgba(8,17,31,.18) 100%),
    linear-gradient(180deg, rgba(8,17,31,.10), rgba(8,17,31,.34)),
    url("../image/Frame_427320716_1.jpg") center right / cover no-repeat,
    var(--brand-navy-950);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
.hero .container { position: relative; display: grid; min-height: 720px; grid-template-columns: minmax(0, 720px) 1fr; align-items: center; gap: 56px; padding-block: 72px; }
.hero__copy { display: grid; gap: 24px; max-width: 720px; }
.hero__actions, .inline-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.microcopy { color: rgba(255,255,255,.72); font-size: 15px; }
.proof-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.proof {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  border-top: 1px solid var(--brand-border-dark);
  padding-top: 14px;
  color: rgba(255,255,255,.84);
  font-size: 14px;
  line-height: 1.45;
}
.proof svg {
  width: 22px;
  height: 22px;
  color: var(--brand-white);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .9;
}
.founder-badge {
  position: absolute;
  right: clamp(20px, 7vw, 92px);
  bottom: clamp(56px, 9vw, 118px);
  z-index: 1;
  display: grid;
  gap: 4px;
  width: min(360px, 34vw);
  border: 1px solid rgba(255,255,255,.2);
  border-left: 3px solid var(--brand-gold);
  border-radius: 16px;
  background: rgba(8,17,31,.58);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-float);
  padding: 18px 20px;
  color: var(--brand-white);
}
.founder-badge span {
  color: var(--brand-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 2.4vw, 38px);
  font-weight: 600;
  line-height: 1;
}
.founder-badge strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.metric {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  background: var(--brand-white);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.metric::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(185,149,98,.28);
  border-radius: 50%;
}
.metric strong {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin-bottom: 36px;
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  color: var(--brand-gold);
  background: #fbf7ef;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}
.metric h3 {
  margin-bottom: 12px;
  color: var(--brand-navy-900);
}
.metric p {
  margin: 0;
  color: var(--brand-text-muted);
}

.quiz-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: start; }
.panel, .card {
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  background: var(--brand-white);
  box-shadow: var(--shadow-soft);
}
.panel { padding: 30px; }
.progress { height: 8px; overflow: hidden; border-radius: 99px; background: var(--brand-sand); }
.progress span { display: block; height: 100%; width: 0; background: var(--brand-gold); transition: width .2s ease; }
.answer-grid { display: grid; gap: 12px; margin: 22px 0; }
.answer {
  display: flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  background: var(--brand-white);
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.answer:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.answer[aria-pressed="true"] { border-color: var(--brand-gold); background: #fbf7ef; box-shadow: inset 0 0 0 1px var(--brand-gold); }
.quiz-result { display: none; border-left: 4px solid var(--brand-success); margin-top: 18px; padding: 16px; background: #edf5ef; }
.quiz-contact {
  display: grid;
  gap: 16px;
  margin: 22px 0;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { padding: 26px; box-shadow: none; }
.card.dark-card { background: var(--brand-navy-800); color: var(--brand-white); border-color: var(--brand-border-dark); }
.card .number { color: var(--brand-gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 44px; line-height: 1; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .6em; width: 10px; height: 10px; border: 2px solid var(--brand-success); border-radius: 50%; }

#debts .card { padding: 30px; }
#debts .check-list { gap: 22px; margin-top: 18px; }
#debts .check-list li { line-height: 1.7; }

.consequences-section { background: var(--brand-ivory); color: var(--brand-text); }
.consequences-head {
  max-width: none;
  justify-items: center;
  margin-bottom: 48px;
  text-align: center;
}
.consequences-head .eyebrow,
.consequences-head .lead { display: block; }
.consequences-head .eyebrow {
  font-size: 15px;
}
.consequences-head h2 {
  color: var(--brand-navy-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 5.4vw, 72px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: .98;
  text-transform: none;
}
.consequences-head .lead {
  max-width: 820px;
  font-size: clamp(11px, 1.2vw, 15px);
  line-height: 1.55;
}
.consequence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.consequence-panel,
.consequence-mini,
.consequence-cta {
  border: 1px solid var(--brand-border);
  background: var(--brand-white);
  box-shadow: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.consequence-panel:hover,
.consequence-mini:hover {
  transform: translateY(-3px);
  border-color: var(--brand-gold-soft);
  box-shadow: var(--shadow-soft);
}
.consequence-panel {
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 100%;
  border-radius: 16px;
  padding: 30px;
}
.consequence-panel h3,
.consequence-mini h3,
.consequence-cta h3 {
  margin: 0;
  font-family: Manrope, Inter, Arial, sans-serif;
  color: var(--brand-navy-950);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}
.consequence-checks {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.consequence-checks li {
  position: relative;
  padding-left: 30px;
  color: var(--brand-text);
  line-height: 1.55;
}
.consequence-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .08em;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(185,149,98,.5);
  border-radius: 50%;
  color: var(--brand-gold);
  background: rgba(185,149,98,.10);
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  font-weight: 800;
}
.consequence-checks li::after { display: none; }
.consequence-note {
  margin: 2px 0 0;
  border-left: 0;
  padding-left: 0;
  color: var(--brand-text-muted);
  font-size: 13px;
  line-height: 1.55;
}
.limit-list { display: grid; gap: 14px; }
.limit-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: start;
  border-top: 0;
  padding-top: 0;
  color: var(--brand-text);
}
.limit-row strong {
  position: relative;
  color: var(--brand-navy-950);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}
.limit-row strong::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--brand-gold);
  vertical-align: 1px;
}
.limit-row span { color: var(--brand-text); line-height: 1.55; }
.consequence-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 78px;
}
.consequence-mini {
  min-height: 178px;
  display: grid;
  gap: 8px;
  align-content: center;
  justify-items: center;
  border: 0;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--brand-border);
  box-shadow: none;
}
.consequence-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 0;
  background: transparent;
  color: var(--brand-navy-900);
}
.consequence-icon svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.consequence-mini h3 { order: 2; font-size: 18px; font-weight: 800; }
.consequence-mini p {
  order: 3;
  margin: 0;
  color: var(--brand-text-muted);
  font-size: 14px;
  line-height: 1.55;
}
.consequence-mini__lead { max-width: 260px; }
.consequence-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 54px;
  border-radius: 16px;
  padding: 28px 32px;
  background: var(--brand-sand);
  border-color: var(--brand-border);
}
.consequence-cta p {
  max-width: 700px;
  margin: 10px 0 0;
  color: var(--brand-text-muted);
  line-height: 1.65;
}
.consequence-cta__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.consequence-cta__actions a {
  color: var(--brand-navy-900);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.consequence-legal {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--brand-text-muted);
  font-size: 14px;
  line-height: 1.65;
}

#property-section .check-list { gap: 24px; }
#property-section .check-list li { line-height: 1.75; }
#property-section .check-list li::before,
#debts .check-list li::before { top: .7em; }
#property-section .dark-card .btn { margin-top: 32px; }

.stages-layout { display: grid; gap: 36px; align-items: start; }
.stages-layout .section-head {
  max-width: 760px;
  margin-bottom: 0;
}
.stages-layout .section-head h2 { max-width: none; }
.stages { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.stages::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(185,149,98,.14), rgba(185,149,98,.72), rgba(63,112,88,.16));
}
.stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--brand-border);
  background: rgba(255,255,255,.82);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(10,18,32,.06);
  transition: opacity .7s ease, transform .7s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
  transition-delay: calc(var(--stage-index, 0) * 45ms);
}
.stage:hover {
  transform: translateY(-4px);
  border-color: var(--brand-gold-soft);
  background: var(--brand-white);
  box-shadow: 0 24px 70px rgba(10,18,32,.10);
}
.stage__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(185,149,98,.48);
  border-radius: 14px;
  color: var(--brand-navy-950);
  background: var(--brand-white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
}
.stage h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.2; }
.stage p { margin: 0; color: var(--brand-text-muted); font-size: 15px; line-height: 1.55; }

.differences {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.difference-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  background: var(--brand-white);
  padding: 0;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.difference-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-gold-soft);
  box-shadow: var(--shadow-soft);
}
.difference-card__visual {
  position: relative;
  display: grid;
  min-height: 190px;
  place-items: center;
  color: var(--brand-navy-900);
  background:
    linear-gradient(145deg, rgba(8,17,31,.72), rgba(8,17,31,.18)),
    linear-gradient(135deg, #e7dfd2, #f8f4ee);
}
.difference-card__visual svg {
  width: min(72%, 300px);
  height: auto;
  fill: none;
  opacity: .92;
  stroke: rgba(255,255,255,.88);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.difference-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.difference-card__visual span {
  position: absolute;
  left: 22px;
  top: 20px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 12px;
  color: var(--brand-white);
  background: rgba(8,17,31,.34);
  font-weight: 800;
  backdrop-filter: blur(10px);
}
.difference-card__visual--app {
  background:
    linear-gradient(145deg, rgba(8,17,31,.70), rgba(63,112,88,.24)),
    linear-gradient(135deg, #dbe7df, #f7f3ed);
}
.difference-card__visual--honest {
  background:
    linear-gradient(145deg, rgba(8,17,31,.68), rgba(185,149,98,.28)),
    linear-gradient(135deg, #eadcc8, #f8f4ee);
}
.difference-card__visual--contract {
  background:
    linear-gradient(145deg, rgba(8,17,31,.72), rgba(80,92,112,.22)),
    linear-gradient(135deg, #dce1e8, #f8f4ee);
}
.difference-card__visual--complex {
  background:
    linear-gradient(145deg, rgba(8,17,31,.74), rgba(168,70,70,.18)),
    linear-gradient(135deg, #ead8d2, #f8f4ee);
}
.difference-card__body {
  padding: 26px;
}
.difference-card--image {
  grid-template-columns: minmax(190px, 38%) 1fr;
  min-height: 320px;
}
.difference-card--image .difference-card__visual {
  min-height: 320px;
}
.difference-card--image .difference-card__body {
  display: grid;
  align-content: center;
  padding: 34px;
}
.difference-card h3 { margin-bottom: 10px; }
.difference-card p { margin: 0; }
.difference-card__note {
  margin-top: 12px !important;
  border-left: 3px solid var(--brand-gold);
  padding-left: 12px;
  color: var(--brand-text-muted);
  font-size: 14px;
}

.app-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 50%, rgba(63,112,88,.26), transparent 34%),
    radial-gradient(circle at 8% 12%, rgba(185,149,98,.12), transparent 28%),
    var(--brand-navy-900);
}
.app-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  pointer-events: none;
}
.app-section__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}
.app-section__content {
  display: grid;
  justify-items: start;
  gap: 22px;
}
.app-section__content h2 {
  max-width: 720px;
}
.app-section__content .lead {
  margin: 0;
}
.app-benefits {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 720px;
  margin: 6px 0 10px;
  padding: 0;
  list-style: none;
}
.app-benefits li {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 58px;
  padding-left: 72px;
}
.app-benefits li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: var(--brand-navy-950);
  background: var(--brand-gold);
  content: "✓";
  font-size: 22px;
  font-weight: 800;
}
.app-benefits strong {
  color: var(--brand-white);
  font-size: 17px;
}
.app-benefits span {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.5;
}
.app-section__button {
  min-width: 232px;
}
.app-section__note {
  margin: -12px 0 0;
  color: rgba(255,255,255,.56);
  font-size: 13px;
}
.app-section__visual {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
}
.app-section__visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  height: auto;
  filter: drop-shadow(0 32px 48px rgba(0,0,0,.3));
}
.app-section__glow {
  position: absolute;
  width: min(82%, 390px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  filter: blur(2px);
  box-shadow: 0 0 100px rgba(104,167,144,.22);
}

.review-card {
  display: grid;
  gap: 18px;
  min-width: calc((100% - 44px) / 3);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  background: var(--brand-white);
  padding: 26px;
  box-shadow: 0 18px 58px rgba(10,18,32,.06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.review-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-gold-soft);
  box-shadow: var(--shadow-soft);
}
.reviews-slider {
  display: grid;
  gap: 22px;
}
.reviews-slider__viewport {
  overflow: hidden;
  padding: 4px;
  margin: -4px;
}
.reviews-slider__track {
  display: flex;
  gap: 22px;
  transition: transform .45s ease;
  will-change: transform;
}
.reviews-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.reviews-slider__button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  color: var(--brand-navy-900);
  background: var(--brand-white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}
.reviews-slider__button:hover {
  color: var(--brand-white);
  border-color: var(--brand-navy-900);
  background: var(--brand-navy-900);
}
.reviews-slider__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.reviews-slider__dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: var(--brand-border);
  cursor: pointer;
  padding: 0;
  transition: width .18s ease, border-radius .18s ease, background .18s ease;
}
.reviews-slider__dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--brand-gold);
}
.review-card__top {
  display: flex;
  gap: 14px;
  align-items: center;
}
.review-card__avatar {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--brand-navy-950);
  background: var(--brand-sand);
  font-weight: 800;
}
.review-card h3 {
  margin: 0;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.25;
}
.review-card__stars {
  margin-top: 4px;
  color: var(--brand-gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.review-card p {
  margin: 0;
  color: var(--brand-text-muted);
  line-height: 1.65;
}
.reviews-link-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.reviews-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-navy-900);
  border-radius: 10px;
  padding: 13px 22px;
  color: var(--brand-navy-900);
  background: transparent;
  font-weight: 800;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.reviews-link:hover {
  transform: translateY(-2px);
  color: var(--brand-white);
  background: var(--brand-navy-900);
}

.cases-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(185,149,98,.14), transparent 28%),
    linear-gradient(180deg, #f0e8dc 0%, var(--brand-ivory) 100%);
}
.cases-section::before {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 159.5h160M159.5 0v160' fill='none' stroke='%23b99562' stroke-opacity='.09'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}
.cases-section > .container {
  position: relative;
  z-index: 1;
}
.cases-section.reveal,
.cases-section .case-card.reveal {
  opacity: 1;
  transform: none;
}
.cases-head { max-width: 880px; }
.cases-slider { display: grid; gap: 22px; }
.cases-slider__toolbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cases-slider.is-ready .cases-slider__toolbar { display: flex; }
.cases-slider__status {
  margin: 0;
  color: var(--brand-text-muted);
  font-size: 15px;
}
.cases-slider__status strong {
  color: var(--brand-navy-900);
  font-size: 22px;
}
.cases-slider__buttons {
  display: flex;
  gap: 10px;
}
.cases-slider__button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--brand-navy-900);
  border-radius: 10px;
  color: var(--brand-white);
  background: var(--brand-navy-900);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.cases-slider__button:hover {
  color: var(--brand-navy-900);
  background: transparent;
  transform: translateY(-2px);
}
.cases-slider__button:active { transform: translateY(0); }
.cases-slider__button:disabled {
  cursor: default;
  opacity: .45;
  transform: none;
}
.cases-slider__viewport {
  overflow: visible;
  border-radius: 20px;
}
.cases-slider.is-ready .cases-slider__viewport { overflow: hidden; }
.cases-list {
  display: grid;
  gap: 32px;
}
.cases-slider.is-ready .cases-list {
  display: flex;
  align-items: flex-start;
  gap: 0;
  transition: transform .42s cubic-bezier(.22,.75,.24,1);
  will-change: transform;
}
.case-card {
  display: grid;
  flex: 0 0 100%;
  grid-template-columns: minmax(300px, 36%) 1fr;
  align-self: flex-start;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  border-radius: 20px;
  background: var(--brand-white);
  box-shadow: 0 22px 70px rgba(10,18,32,.08);
}
.case-card[data-case-order="1"] { order: 1; }
.case-card[data-case-order="2"] { order: 2; }
.case-card[data-case-order="3"] { order: 3; }
.case-card[data-case-order="4"] { order: 4; }
.case-card__media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--brand-sand);
}
.case-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(8,17,31,.3));
  content: "";
  pointer-events: none;
}
.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transition: transform .45s ease;
}
.case-card:hover .case-card__media img { transform: scale(1.015); }
.case-card__number {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 14px;
  color: var(--brand-white);
  background: rgba(8,17,31,.66);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.case-card__content {
  display: grid;
  align-content: center;
  gap: 24px;
  min-width: 0;
  padding: clamp(30px, 4vw, 54px);
}
.case-card__intro {
  display: grid;
  gap: 14px;
}
.case-card__intro h3 {
  max-width: 760px;
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: 1.04;
}
.case-card__meta {
  margin: 0;
  color: var(--brand-text-muted);
  font-size: 15px;
  font-weight: 700;
}
.case-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.case-results div {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 106px;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 16px;
  background: var(--brand-ivory);
}
.case-results strong {
  color: var(--brand-navy-900);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.1;
}
.case-results span {
  color: var(--brand-text-muted);
  font-size: 13px;
  line-height: 1.4;
}
.case-card__summary {
  max-width: 760px;
  margin: 0;
  color: var(--brand-text-muted);
}
.case-details { border-top: 1px solid var(--brand-border); }
.case-details summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0 0;
  cursor: pointer;
  color: var(--brand-navy-900);
  font-weight: 800;
  list-style: none;
}
.case-details summary::-webkit-details-marker { display: none; }
.case-details__icon {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid var(--brand-border);
  border-radius: 9px;
  background: var(--brand-ivory);
}
.case-details__icon::before,
.case-details__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--brand-navy-900);
  content: "";
  transform: translate(-50%, -50%);
}
.case-details__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .18s ease;
}
.case-details[open] .case-details__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}
.case-details__body {
  display: grid;
  gap: 22px;
  padding: 18px 0 2px;
}
.case-details__body > div {
  display: grid;
  gap: 10px;
}
.case-details__body h4 {
  margin: 0;
  color: var(--brand-navy-900);
  font-size: 17px;
}
.case-details__body p {
  margin: 0;
  color: var(--brand-text-muted);
  font-size: 15px;
}
.case-details__body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: var(--brand-text-muted);
  font-size: 15px;
}
.cases-slider__dots {
  display: none;
  justify-content: center;
  gap: 9px;
}
.cases-slider.is-ready .cases-slider__dots { display: flex; }
.cases-slider__dots button {
  width: 36px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(12,22,40,.2);
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}
.cases-slider__dots button.is-active {
  width: 56px;
  background: var(--brand-gold);
}
.cases-note {
  max-width: 820px;
  margin: 28px 0 0;
  color: var(--brand-text-muted);
  font-size: 13px;
}

.founder { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: center; }
.photo-box { min-height: 440px; border-radius: 18px; border: 1px solid var(--brand-border-dark); background: linear-gradient(145deg, rgba(185,149,98,.24), rgba(255,255,255,.04)), var(--brand-navy-800); display: grid; align-content: end; padding: 26px; }
.founder-photo {
  min-height: 560px;
  background:
    linear-gradient(180deg, rgba(8,17,31,.04), rgba(8,17,31,.22)),
    url("../image/processed-1763390424.png.webp") center top / cover no-repeat;
}
.founder-quote {
  margin: 0;
  border-left: 3px solid var(--brand-gold);
  padding: 2px 0 2px 18px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.65;
}
.founder-video-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 10px;
}
.founder-video {
  overflow: hidden;
  border: 1px solid var(--brand-border-dark);
  border-radius: 8px;
  background: var(--brand-navy-950);
  aspect-ratio: 9 / 16;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}
.founder-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.faq { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--brand-border); border-radius: 14px; background: var(--brand-white); overflow: hidden; }
.faq-item button { width: 100%; min-height: 58px; padding: 18px 20px; border: 0; background: transparent; color: var(--brand-navy-900); cursor: pointer; text-align: left; font-weight: 800; }
.faq-item div {
  display: grid;
  grid-template-rows: 0fr;
  color: var(--brand-text-muted);
  transition: grid-template-rows .22s ease;
}
.faq-item div > p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
}
.faq-item.open div { grid-template-rows: 1fr; }
.faq-item.open div > p { padding-bottom: 20px; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.lead-form {
  display: grid;
  width: min(100%, 560px);
  justify-self: center;
  gap: 12px;
}
.lead-form__title {
  margin: 0 0 4px;
  color: var(--brand-navy-950);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.2;
  font-weight: 800;
}
.lead-form .form-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}
label { font-weight: 800; font-size: 14px; }
input, select, textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  background: var(--brand-white);
  padding: 13px 14px;
  color: var(--brand-text);
}
textarea { min-height: 112px; resize: vertical; }
.consent-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--brand-text-muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}
.consent-field input {
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--brand-gold);
}
.consent-field a {
  color: var(--brand-navy-900);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-error { color: var(--brand-danger); min-height: 22px; font-size: 14px; }
.form-success { display: none; margin-top: 16px; border-left: 4px solid var(--brand-success); padding: 14px; background: #edf5ef; color: var(--brand-text); }

.footer { padding: 70px 0 34px; color: rgba(255,255,255,.78); background: var(--brand-navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; }
.footer h3 { color: var(--brand-white); font-family: Manrope, Inter, Arial, sans-serif; font-size: 17px; line-height: 1.2; }
.footer a { display: block; margin: 8px 0; }
.footer-details {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  border-top: 1px solid var(--brand-border-dark);
  padding-top: 22px;
}
.footer-details p { margin: 0; }
.footer-details strong { color: var(--brand-white); }
.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.footer-legal a {
  margin: 0;
  color: var(--brand-white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.disclaimer { margin-top: 34px; border-top: 1px solid var(--brand-border-dark); padding-top: 24px; font-size: 14px; }

.simple-page { background: var(--brand-ivory); }
.simple-page .site-header { position: sticky; }
.simple-hero h1 {
  max-width: 860px;
  margin: 12px 0 34px;
  color: var(--brand-navy-950);
}
.contact-panel {
  display: grid;
  gap: 18px;
  max-width: 820px;
}
.contact-panel h2,
.contact-panel h3 {
  color: var(--brand-navy-950);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.25;
}
.contact-phone {
  color: var(--brand-navy-950);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
}
.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: var(--brand-text);
}
.document-frame {
  width: 100%;
  min-height: 70vh;
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  background: var(--brand-white);
  box-shadow: var(--shadow-soft);
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  gap: 8px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(246,242,234,.94);
  border-top: 1px solid var(--brand-border);
  backdrop-filter: blur(14px);
}

@media (max-width: 1020px) {
  .nav__links, .nav__actions .phone, .nav__actions .desktop-cta { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav__links {
    position: fixed;
    inset: 82px 16px auto;
    display: none;
    padding: 20px;
    border: 1px solid var(--brand-border);
    border-radius: 16px;
    background: var(--brand-white);
    box-shadow: var(--shadow-float);
  }
  body.menu-open .nav__links { display: grid; gap: 4px; }
  .nav__links a { padding: 12px 0; }
  .hero .container, .quiz-wrap, .founder { grid-template-columns: 1fr; }
  .hero .container { min-height: auto; }
  .consequence-grid, .consequence-cards, .consequence-cta { grid-template-columns: 1fr; }
  .consequence-cta__actions { align-items: stretch; flex-direction: column; }
  .stages-layout { gap: 30px; }
  .stages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stages::before { display: none; }
  .app-section__layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
    gap: 34px;
  }
  .app-section__visual { min-height: 470px; }
  .founder-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(420px, 100%);
    margin-top: -18px;
  }
  .founder-video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .proof-row, .metrics, .grid-3, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { min-width: calc((100% - 22px) / 2); }
  .case-card,
  .case-card:nth-child(even) {
    grid-template-columns: minmax(260px, 34%) 1fr;
  }
  .case-card:nth-child(even) .case-card__media { order: 0; }
  .case-card__media { min-height: 520px; }
  .case-results { grid-template-columns: 1fr; }
  .case-results div { min-height: 0; }
}

@media (max-width: 680px) {
  body { font-size: 16px; padding-bottom: 72px; }
  .container { width: min(100% - 32px, 1280px); }
  .section { padding: 72px 0; }
  .hero {
    background:
      linear-gradient(180deg, rgba(8,17,31,.96) 0%, rgba(8,17,31,.84) 48%, rgba(8,17,31,.64) 100%),
      linear-gradient(90deg, rgba(8,17,31,.92), rgba(8,17,31,.34)),
      url("../image/Frame_427320716_1.jpg") 66% center / cover no-repeat,
      var(--brand-navy-950);
  }
  .hero .container { padding-block: 56px; }
  .hero__actions, .inline-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .proof-row, .metrics, .grid-2, .grid-3, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .founder-badge { display: none; }
  .founder-video-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }
  .founder-video {
    flex: 0 0 min(72vw, 260px);
    scroll-snap-align: start;
  }
  .consequences-head { margin-bottom: 34px; }
  .consequences-head h2 { font-size: clamp(36px, 10vw, 48px); }
  .consequences-head .lead { font-size: clamp(14px, 3vw, 16px); }
  .consequence-panel { padding: 24px; }
  .consequence-mini { margin-inline: 12px; padding: 24px; }
  .consequence-cards { gap: 34px; margin-top: 46px; }
  .consequence-cta { margin-top: 44px; padding: 24px; }
  .limit-row { grid-template-columns: 82px 1fr; gap: 14px; }
  .limit-row strong { font-size: 15px; }
  .stages { grid-template-columns: 1fr; }
  .stage { grid-template-columns: 54px 1fr; gap: 16px; padding: 18px; }
  .stage__number { width: 54px; height: 54px; border-radius: 12px; font-size: 25px; }
  .stage h3 { font-size: 20px; }
  .differences { grid-template-columns: 1fr; }
  .difference-card--image {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .difference-card__visual { min-height: 170px; }
  .difference-card--image .difference-card__visual { min-height: 240px; }
  .difference-card__body { padding: 22px; }
  .difference-card--image .difference-card__body { padding: 22px; }
  .app-section__layout { grid-template-columns: 1fr; gap: 30px; }
  .app-section__content { justify-items: stretch; }
  .app-section__content h2 { font-size: clamp(38px, 11vw, 52px); }
  .app-section__content .lead { font-size: 17px; }
  .app-benefits li { padding-left: 64px; }
  .app-benefits li::before { width: 46px; height: 46px; }
  .app-section__visual { min-height: 390px; }
  .app-section__visual img { width: min(92%, 360px); }
  .app-section__button { width: 100%; }
  .app-section__note { text-align: center; }
  .form-field.full { grid-column: auto; }
  .mobile-bar { display: grid; grid-template-columns: 1fr 1.4fr; }
  .review-card { min-width: 100%; }
  .reviews-slider__controls { gap: 12px; }
  .cases-slider { gap: 16px; }
  .cases-slider__toolbar { align-items: flex-end; }
  .cases-slider__button {
    width: 48px;
    height: 48px;
  }
  .cases-slider__viewport { border-radius: 16px; }
  .case-card,
  .case-card:nth-child(even) {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .case-card__media {
    min-height: 300px;
    max-height: 360px;
  }
  .case-card__media img { object-position: center 43%; }
  .case-card__number {
    right: 18px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 23px;
  }
  .case-card__content {
    gap: 20px;
    padding: 24px 20px;
  }
  .case-card__intro h3 { font-size: clamp(29px, 9vw, 38px); }
  .case-results { grid-template-columns: 1fr; }
  .case-details summary { min-height: 62px; }
}

@media (max-width: 420px) {
  .limit-row { grid-template-columns: 1fr; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
