:root {
  --purple: #7b2d8e;
  --purple-deep: #351142;
  --purple-dark: #24102d;
  --gold: #d4a843;
  --gold-deep: #b88b1f;
  --cream: #fdf4e0;
  --paper: #fffaf1;
  --ink: #34322d;
  --muted: #6b665d;
  --line: rgba(52, 50, 45, 0.14);
  --blue: #0081f2;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(36, 16, 45, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 241, 0.9);
  border-bottom: 1px solid rgba(52, 50, 45, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  width: 188px;
  overflow: hidden;
}

.brand img {
  width: 188px;
  height: 74px;
  object-fit: contain;
  object-position: center;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

nav a:hover {
  color: var(--purple);
}

.header-cta,
.button,
.callback-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 12px 18px;
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(123, 45, 142, 0.22);
}

.button {
  padding: 15px 22px;
}

.button.primary {
  background: var(--gold);
  color: #2d230d;
  box-shadow: 0 18px 34px rgba(212, 168, 67, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.button.dark {
  background: var(--purple-deep);
}

.button:hover,
.header-cta:hover,
.callback-form button:hover {
  transform: translateY(-2px);
}

.button svg,
.header-cta svg,
.callback-form button svg,
article > svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 82vh;
  padding: 118px clamp(18px, 4vw, 56px) 42px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36, 16, 45, 0.93) 0%, rgba(53, 17, 66, 0.82) 50%, rgba(53, 17, 66, 0.58) 100%),
    url("/assets/brand-bg.png") center / cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: end;
  gap: clamp(34px, 6vw, 88px);
  max-width: 1180px;
  min-height: calc(82vh - 160px);
  margin: 0 auto;
}

.hero-copy {
  padding-bottom: clamp(8px, 4vh, 52px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5vw, 4.85rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
}

.trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 470px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto 8% 0 0;
  height: 72%;
  border: 1px solid rgba(212, 168, 67, 0.38);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.08);
  box-shadow: var(--shadow);
}

.till {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  margin-left: auto;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.advisor-strip {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 30px;
  display: grid;
  gap: 2px;
  min-width: 230px;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(36, 16, 45, 0.26);
}

.advisor-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.advisor-strip strong {
  color: var(--purple);
  font-size: 1.28rem;
}

.advisor-strip small {
  color: var(--gold-deep);
  font-weight: 800;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

section:not(.hero) {
  padding: clamp(64px, 9vw, 112px) 0;
}

.problem-section {
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  color: var(--purple-deep);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  color: var(--purple-deep);
  font-size: 1.2rem;
  line-height: 1.15;
}

.problem-list,
.pillar-grid,
.cta-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.problem-list article,
.pillar-grid article,
.cta-choice-grid article,
.call-panel,
.facts {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(52, 50, 45, 0.08);
}

.problem-list article,
.pillar-grid article,
.cta-choice-grid article {
  padding: 26px;
}

.problem-list article > svg,
.cta-choice-grid article > svg {
  margin-bottom: 20px;
  color: var(--gold-deep);
}

.problem-list p,
.pillar-grid p,
.cta-choice-grid p,
.section-copy,
.quote-block p,
.sandra-copy p {
  color: var(--muted);
}

.principle-section {
  background: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-bottom: 34px;
}

.split img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-copy {
  max-width: 620px;
  font-size: 1.08rem;
}

.pillar-grid article {
  background: var(--paper);
}

.pillar-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold-deep);
  font-size: 0.84rem;
  font-weight: 900;
}

.advisor-section {
  background: var(--purple-deep);
  color: var(--white);
}

.advisor-section h2 {
  color: var(--white);
}

.advisor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.quote-block p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.facts {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.facts div {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.facts div:last-child {
  border-bottom: 0;
}

.facts strong {
  display: block;
  color: var(--gold);
  font-size: 2.25rem;
  line-height: 1;
}

.facts span {
  color: rgba(255, 255, 255, 0.78);
}

.sandra-section {
  background: var(--white);
}

.sandra-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.85fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.call-panel {
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(140deg, rgba(123, 45, 142, 0.97), rgba(53, 17, 66, 0.98)),
    url("/assets/brand-bg.png") center / cover;
  color: var(--white);
}

.call-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #37d163;
  box-shadow: 0 0 0 0 rgba(55, 209, 99, 0.65);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(55, 209, 99, 0.65); }
  70% { box-shadow: 0 0 0 14px rgba(55, 209, 99, 0); }
  100% { box-shadow: 0 0 0 0 rgba(55, 209, 99, 0); }
}

.phone-number {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
}

.callback-form {
  display: grid;
  gap: 12px;
}

.callback-form label {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.field-row input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.callback-form button {
  min-height: 52px;
  padding: 0 18px;
  background: var(--gold);
  color: #2d230d;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.final-cta {
  background: var(--cream);
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
  text-align: left;
}

.cta-choice-grid article {
  display: grid;
  align-content: start;
  gap: 4px;
}

.cta-choice-grid .button {
  width: fit-content;
  margin-top: 14px;
}

footer {
  padding: 30px 0;
  background: var(--purple-dark);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner img {
  width: 150px;
  height: 58px;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer-copy {
  display: grid;
  gap: 10px;
}

.footer-inner p {
  max-width: 650px;
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--purple-dark);
}

.legal-header img {
  width: 180px;
  height: 70px;
  object-fit: contain;
}

.legal-main {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) 0;
}

.legal-main h1 {
  color: var(--purple-deep);
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.legal-main h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.legal-main a {
  color: var(--purple);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    position: sticky;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-inner,
  .problem-grid,
  .split,
  .advisor-grid,
  .sandra-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    max-width: 520px;
  }

  .hero-visual::before {
    inset: 16% 0 0 12%;
  }

  .problem-list,
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand,
  .brand img {
    width: 144px;
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 12px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .hero-actions,
  .button,
  .field-row,
  .footer-inner {
    width: 100%;
  }

  .button,
  .field-row,
  .footer-inner {
    flex-direction: column;
  }

  .button {
    min-height: 54px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .callback-form button {
    width: 100%;
  }

  .cta-choice-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
  }
}
