:root {
  --ink: #19191c;
  --muted: #6e6a72;
  --paper: #fbfaf7;
  --white: #fff;
  --yellow: #f6c916;
  --yellow-soft: #fff7cb;
  --violet: #7c59d9;
  --violet-soft: #eee8ff;
  --green: #257b64;
  --line: #e7e2dd;
  --danger: #ba3f42;
  --shadow: 0 28px 80px rgba(35, 28, 20, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; color: var(--ink); background: var(--paper); font-family: "DM Sans", system-ui, sans-serif; }
button, input { font: inherit; }
button { cursor: pointer; }

.site-header { width: min(1180px, calc(100% - 40px)); height: 92px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.logo-link { display: block; width: 245px; height: 70px; overflow: hidden; }
.logo-link img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.header-action { color: var(--ink); text-decoration: none; padding: 11px 17px; border: 1px solid var(--ink); border-radius: 999px; font-size: 12px; font-weight: 800; transition: .2s ease; }
.header-action:hover { color: var(--white); background: var(--ink); }

main { overflow: hidden; }
.hero, .calculator-section, .how-it-works { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hero { min-height: 700px; padding: 60px 0 110px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 58px; position: relative; }
.hero::before { content: ""; position: absolute; width: 440px; height: 440px; left: -360px; top: 0; border-radius: 50%; background: rgba(246,201,22,.12); filter: blur(2px); }
.eyebrow, .section-kicker { color: var(--violet); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; }
.eyebrow span { width: 26px; height: 3px; border-radius: 999px; background: linear-gradient(90deg, var(--yellow), var(--violet)); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(45px, 5.5vw, 67px); line-height: 1.02; letter-spacing: -.06em; }
h1 em { color: var(--violet); font-style: normal; }
.hero-lead { max-width: 610px; margin-bottom: 31px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.primary-link { display: inline-flex; align-items: center; gap: 15px; padding: 16px 21px; border-radius: 13px; color: var(--ink); background: var(--yellow); text-decoration: none; font-weight: 800; box-shadow: 0 13px 30px rgba(246,201,22,.25); transition: .2s ease; }
.primary-link:hover { transform: translateY(-2px); background: #ffda35; }
.trust-row { margin-top: 23px; display: flex; gap: 24px; color: var(--muted); font-size: 11px; }
.trust-row b { display: inline-grid; width: 18px; height: 18px; margin-right: 5px; place-items: center; border-radius: 50%; color: var(--green); background: #e2f3ed; font-size: 10px; }

.hero-media { position: relative; display: grid; gap: 20px; }
.hero-photo { height: auto; margin: 0; border-radius: 28px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); position: relative; }
.hero-photo img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: contain; object-position: center; background: var(--white); }
.hero-photo::after { display: none; }
.hero-photo figcaption { position: static; padding: 12px 16px; display: flex; align-items: center; gap: 8px; color: var(--ink); background: var(--white); font-size: 10px; font-weight: 800; }
.hero-photo figcaption span { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); }
.promise-card { width: 100%; padding: 25px 27px; border-radius: 21px; background: var(--ink); color: var(--white); position: relative; display: grid; grid-template-columns: auto 1fr; gap: 17px; align-items: flex-start; box-shadow: 0 22px 50px rgba(25,25,28,.24); overflow: hidden; }
.promise-card::after { content: ""; position: absolute; width: 230px; height: 230px; right: -105px; top: -105px; border-radius: 50%; border: 55px solid rgba(124,89,217,.25); }
.promise-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; color: var(--ink); background: var(--yellow); font: 800 21px/1 "Manrope", sans-serif; }
.promise-label { margin-bottom: 12px; color: #c9bfdf; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.promise-card h2 { max-width: 410px; margin-bottom: 8px; font-size: 24px; line-height: 1.12; letter-spacing: -.04em; }
.promise-card > div > p:last-child { margin-bottom: 0; color: #c9c7cd; font-size: 10px; line-height: 1.5; }

.calculator-section { padding: 90px 0 110px; }
.section-intro { margin-bottom: 40px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 50px; }
.section-kicker { margin: 0 0 11px; }
.section-intro h2, .how-heading h2 { margin: 0; max-width: 700px; font-size: clamp(35px, 4vw, 52px); line-height: 1.08; letter-spacing: -.05em; }
.section-intro > p { max-width: 420px; margin: 0 0 4px auto; color: var(--muted); font-size: 13px; line-height: 1.65; }
.calculator-card { display: grid; grid-template-columns: 1fr 1fr; border-radius: 29px; overflow: hidden; box-shadow: var(--shadow); }
.quote-form { padding: 48px; background: var(--white); }
.form-title { margin-bottom: 33px; display: flex; align-items: center; gap: 15px; }
.form-title > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #5c4800; background: var(--yellow-soft); font-size: 11px; font-weight: 800; }
.form-title small { display: block; margin-bottom: 2px; color: var(--violet); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.form-title h3 { margin: 0; font-size: 23px; letter-spacing: -.035em; }
.field { display: grid; gap: 8px; margin-bottom: 22px; }
.field > span:first-child { font-size: 13px; font-weight: 800; }
.field small { color: var(--muted); font-size: 10px; }
.field .suggestion { padding: 8px 10px; border-radius: 9px; color: #51379a; background: var(--violet-soft); font-weight: 700; line-height: 1.45; }
.money-input { min-height: 55px; display: flex; align-items: center; border: 1px solid var(--line); border-radius: 13px; background: #fcfbf9; transition: .2s ease; }
.money-input:focus-within { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(124,89,217,.09); background: var(--white); }
.money-input.invalid { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(186,63,66,.08); }
.money-input b { padding-left: 17px; color: var(--violet); }
.money-input input { width: 100%; padding: 16px 17px 16px 8px; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 16px; font-weight: 700; }
.money-input input::placeholder { color: #aaa4ac; font-weight: 400; }
.error { min-height: 0; color: var(--danger) !important; font-weight: 700; }
.calculate-button, .copy-button { width: 100%; border: 0; border-radius: 13px; font-weight: 800; transition: .2s ease; }
.calculate-button { margin-top: 7px; padding: 16px 20px; display: flex; justify-content: center; gap: 12px; color: var(--ink); background: var(--yellow); box-shadow: 0 12px 26px rgba(246,201,22,.2); }
.calculate-button:hover { transform: translateY(-1px); background: #ffda35; }
.reset-button { display: block; margin: 15px auto 0; padding: 0; border: 0; color: var(--muted); background: transparent; font-size: 10px; text-decoration: underline; text-underline-offset: 3px; }

.results-panel { min-height: 650px; padding: 48px; color: var(--white); background: linear-gradient(150deg, #201f24 0%, #151418 100%); position: relative; }
.results-panel::after { content: ""; position: absolute; width: 270px; height: 270px; right: -150px; bottom: -150px; border-radius: 50%; border: 58px solid rgba(124,89,217,.2); pointer-events: none; }
.empty-result { min-height: 550px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
.chart-icon { width: 78px; height: 78px; margin-bottom: 31px; padding: 19px; display: flex; align-items: end; gap: 7px; border-radius: 21px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.chart-icon span { flex: 1; border-radius: 4px 4px 1px 1px; background: linear-gradient(180deg, var(--yellow), var(--violet)); }
.chart-icon span:nth-child(1) { height: 38%; opacity: .55; }.chart-icon span:nth-child(2) { height: 66%; opacity: .78; }.chart-icon span:nth-child(3) { height: 100%; }
.empty-result > p { margin-bottom: 10px; color: #d4bd57; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.empty-result h3 { max-width: 430px; margin-bottom: 15px; font-size: 35px; line-height: 1.15; letter-spacing: -.045em; }
.empty-result small { max-width: 390px; color: #aaa5af; line-height: 1.6; }
.result-content { position: relative; z-index: 1; }
.result-topline { margin-bottom: 24px; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.result-topline small { display: block; margin-bottom: 4px; color: #d4bd57; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.result-topline h3 { margin: 0; font-size: 22px; letter-spacing: -.035em; }
.result-topline > span { padding: 7px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); color: #bbb6c1; font-size: 9px; }
.relief-highlight { padding: 25px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.relief-highlight span { display: block; margin-bottom: 5px; color: #bbb5c2; font-size: 11px; }
.relief-highlight strong { display: block; margin-bottom: 5px; color: #f9df69; font: 800 clamp(37px, 4vw, 48px)/1.1 "Manrope", sans-serif; letter-spacing: -.05em; }
.relief-highlight small { color: #aaa5af; }
.result-grid { margin: 14px 0; display: grid; grid-template-columns: 1.4fr .6fr; gap: 10px; }
.result-grid article { padding: 16px; border-radius: 13px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.result-grid article.wide { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.result-grid span { display: block; margin-bottom: 5px; color: #aaa5af; font-size: 10px; }
.result-grid strong { font: 700 20px/1.2 "Manrope", sans-serif; letter-spacing: -.035em; }
.result-grid .wide span { margin: 0; }.result-grid .wide strong { color: #d9cdfb; }
.pay-later-note { padding: 15px; display: flex; align-items: center; gap: 12px; border-radius: 13px; background: var(--yellow-soft); color: var(--ink); }
.pay-later-note > span { flex: 0 0 auto; width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); font-weight: 800; }
.pay-later-note p { margin: 0; font-size: 11px; line-height: 1.3; }.pay-later-note strong, .pay-later-note small { display: block; }.pay-later-note small { margin-top: 3px; color: #746d57; font-size: 9px; }
.review-note { margin-top: 11px; padding: 11px 13px; border: 1px solid rgba(246,201,22,.35); border-radius: 11px; color: #f9df69; background: rgba(246,201,22,.09); font-size: 9px; line-height: 1.5; }
.comparison { margin: 16px 0 0; }
.comparison div { padding: 8px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.09); font-size: 10px; }.comparison dt { color: #aaa5af; }.comparison dd { margin: 0; font-weight: 700; }
.whatsapp-label { width: max-content; margin: 18px 0 7px; padding: 5px 9px; border-radius: 999px; color: #13281f; background: #bff6dc; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.whatsapp-button { padding: 18px 17px; display: flex; align-items: center; gap: 13px; border: 2px solid #54e3a1; border-radius: 15px; color: var(--white); background: linear-gradient(135deg, #25b875, #128653); text-decoration: none; box-shadow: 0 0 0 5px rgba(37,184,117,.15), 0 16px 34px rgba(20,151,93,.32); transition: .2s ease; animation: whatsappPulse 2.4s ease-in-out infinite; }
.whatsapp-button:hover { transform: translateY(-2px) scale(1.01); background: linear-gradient(135deg, #2bca82, #15935c); animation: none; }
.whatsapp-icon { flex: 0 0 auto; width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; color: #168457; background: var(--white); font-size: 20px; font-weight: 800; }
.whatsapp-button > span:nth-child(2) { flex: 1; }.whatsapp-button > b { font-size: 23px; }
.whatsapp-button strong, .whatsapp-button small { display: block; }.whatsapp-button strong { font-size: 12px; letter-spacing: .01em; }.whatsapp-button small { margin-top: 3px; color: #d9f4e8; font-size: 9px; font-weight: 500; }
@keyframes whatsappPulse { 0%,100% { box-shadow: 0 0 0 5px rgba(37,184,117,.13), 0 16px 34px rgba(20,151,93,.28); } 50% { box-shadow: 0 0 0 10px rgba(37,184,117,.04), 0 18px 38px rgba(20,151,93,.4); } }
.copy-button { margin-top: 18px; padding: 13px; color: var(--white); background: #342f3e; border: 1px solid rgba(255,255,255,.12); }.copy-button:hover { background: #443b55; }
.copy-status { min-height: 14px; margin: 7px 0 0; color: #f9df69; text-align: center; font-size: 9px; }

.how-it-works { padding: 100px 0 70px; }
.how-showcase { margin-bottom: 44px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 50px; align-items: center; }
.advisor-photo { height: 390px; margin: 0; border-radius: 24px; overflow: hidden; position: relative; box-shadow: var(--shadow); }
.advisor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.advisor-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(25,25,28,.55)); pointer-events: none; }
.advisor-photo figcaption { position: absolute; left: 21px; right: 21px; bottom: 18px; z-index: 1; color: var(--white); font-size: 11px; font-weight: 800; }
.how-heading { max-width: 650px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.how-heading > p:last-child { max-width: 560px; margin: 20px 0 0; color: var(--muted); line-height: 1.65; }
.steps article { min-height: 230px; padding: 29px; border-radius: 20px; background: var(--white); border: 1px solid var(--line); }
.steps article:nth-child(2) { background: var(--yellow-soft); border-color: #f2df7d; }.steps article:nth-child(3) { background: var(--violet-soft); border-color: #dcd0ff; }
.steps span { display: inline-grid; width: 35px; height: 35px; margin-bottom: 35px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 10px; font-weight: 800; }
.steps h3 { margin-bottom: 9px; font-size: 20px; }.steps p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.final-note { margin-top: 48px; padding: 24px 0 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; border-top: 1px solid var(--line); color: var(--muted); }
.final-note p { margin: 0; font-size: 12px; }.final-note small { max-width: 620px; font-size: 9px; line-height: 1.65; text-align: right; }

[hidden] { display: none !important; }
@media (max-width: 900px) {
  .hero { min-height: 0; padding-top: 45px; grid-template-columns: 1fr; gap: 50px; }
  .hero-media { max-width: 650px; }
  .section-intro { grid-template-columns: 1fr; gap: 18px; }.section-intro > p { margin-left: 0; }
  .calculator-card { grid-template-columns: 1fr; }.results-panel { min-height: 590px; }.empty-result { min-height: 490px; }
  .how-showcase { grid-template-columns: 1fr; }.advisor-photo { max-width: 650px; }
}
@media (max-width: 650px) {
  .site-header, .hero, .calculator-section, .how-it-works { width: min(100% - 28px, 1180px); }
  .site-header { height: 78px; }.logo-link { width: 190px; height: 58px; }.header-action { padding: 9px 12px; font-size: 10px; }
  .hero { padding: 45px 0 70px; }.hero h1 { font-size: 40px; }.hero-lead { font-size: 15px; }.trust-row { display: grid; gap: 10px; }
  .hero-media { padding-bottom: 0; gap: 16px; }.hero-photo { height: auto; border-radius: 21px; }.promise-card { width: 100%; padding: 20px; grid-template-columns: 1fr; }.promise-card h2 { font-size: 23px; }.promise-icon { display: none; }
  .calculator-section, .how-it-works { padding-top: 70px; }.quote-form, .results-panel { padding: 31px 22px; }.calculator-card { border-radius: 21px; }
  .results-panel { min-height: 0; }.empty-result { min-height: 430px; }.result-grid { grid-template-columns: 1fr; }.result-grid article.wide { grid-column: 1; display: block; }.result-grid .wide span { margin-bottom: 5px; }
  .steps { grid-template-columns: 1fr; }.steps article { min-height: 0; }.final-note { display: grid; gap: 16px; }.final-note small { text-align: left; }
  .advisor-photo { height: 300px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } }
