:root {
  --bg: #070a18;
  --bg-deep: #040610;
  --panel: #10142a;
  --panel-light: #171d38;
  --text: #f7f9ff;
  --muted: #aeb6cf;
  --blue: #4bbcff;
  --cyan: #18e6ff;
  --money-green: #59ddb0;
  --purple: #8e66ff;
  --line: rgba(176, 194, 255, 0.15);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

.section-shell { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  width: min(1280px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand img { width: 84px; height: 60px; object-fit: contain; display: block; }
.header-link { color: var(--muted); font-size: 0.9rem; transition: color .2s ease; }
.header-link:hover { color: var(--text); }

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  grid-template-areas: "copy visual" "detail visual";
  align-items: center;
  gap: 40px;
  padding: 72px 0 82px;
}

.hero-copy { grid-area: copy; align-self: end; }
.hero-detail { grid-area: detail; align-self: start; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }

h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 680px; margin-bottom: 24px; font-size: clamp(3.1rem, 6vw, 5.25rem); line-height: .98; letter-spacing: -.065em; }
h1 span { color: var(--money-green); }
.hero-copy h1 { margin-bottom: 14px; }
.hero-service-note { max-width: 620px; margin: 14px 0 0; color: #fff; font-size: clamp(1.18rem, 2vw, 1.55rem); font-weight: 900; line-height: 1.15; letter-spacing: -.025em; }
.title-money-emoji { display: inline-block; margin-left: .24em; color: initial; font-size: .56em; line-height: 1; vertical-align: .18em; letter-spacing: 0; }
.hero-text { max-width: 500px; margin-bottom: 32px; color: var(--muted); font-size: 1.12rem; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 54px; padding: 0 22px; border-radius: 12px; font-size: .92rem; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #05251f; background: var(--money-green); box-shadow: 0 10px 28px rgba(45, 215, 165, .25); }
.button-primary:hover { background: #70e8bd; box-shadow: 0 14px 36px rgba(45, 215, 165, .38); }
.button-whatsapp { color: #fff; background: #25d366; box-shadow: 0 10px 28px rgba(37, 211, 102, .28); animation: whatsapp-pulse 4s ease-in-out infinite; transform-origin: center; }
.button-whatsapp:hover { background: #20bd5a; box-shadow: 0 14px 36px rgba(37, 211, 102, .4); animation: none; }
.button-whatsapp:focus-visible, .button-whatsapp:active { animation: none; }

@keyframes whatsapp-pulse {
  0%, 75%, 89%, 100% { transform: scale(1); box-shadow: 0 10px 28px rgba(37, 211, 102, .28); }
  82% { transform: scale(1.035); box-shadow: 0 14px 38px rgba(37, 211, 102, .52); }
}

@media (prefers-reduced-motion: reduce) {
  .button-whatsapp { animation: none; }
}
.whatsapp-icon { width: 23px; height: 23px; flex: 0 0 23px; }
.button-light { color: #12152a; background: #f6f8ff; }
.text-link { color: var(--muted); font-size: .9rem; }
.text-link:hover { color: var(--text); }
.microcopy { margin: 22px 0 0; color: #7f89aa; font-size: .78rem; }
.microcopy span { color: var(--cyan); margin-right: 5px; }

.hero-visual { position: relative; min-height: 500px; display: grid; grid-template-rows: auto auto; place-items: center; align-content: center; }
.hero-visual { grid-area: visual; }
.hero-photo img { position: relative; z-index: 1; display: block; width: min(100%, 620px); height: auto; filter: drop-shadow(0 28px 28px rgba(0, 0, 0, .32)); }
.hero-visual-caption { position: relative; z-index: 2; margin-top: -8px; text-align: center; }
.hero-visual-caption strong { display: block; color: #f7f9ff; font-size: clamp(1.15rem, 2.1vw, 1.65rem); line-height: 1.08; letter-spacing: -.04em; }
.hero-visual-caption strong span { color: var(--money-green); }
.hero-visual-caption small { display: block; margin-top: 9px; color: var(--muted); font-size: .78rem; }

.proof-strip { background: #0b0f22; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid { min-height: 106px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.proof-grid > div:not(.proof-arrow) { display: flex; flex-direction: column; gap: 2px; }
.proof-grid strong { font-size: .94rem; }
.proof-grid span { color: var(--muted); font-size: .77rem; }
.proof-arrow { color: var(--blue); font-size: 1.3rem; }

.process { padding: 128px 0 100px; }
.section-heading { max-width: 650px; margin-bottom: 46px; }
.section-heading h2, .cta-card h2 { margin-bottom: 14px; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.02; letter-spacing: -.05em; }
.section-heading > p:last-child, .cta-card p:last-child { color: var(--muted); font-size: 1rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card { position: relative; min-height: 265px; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: rgba(16, 20, 42, .6); }
.step-card-highlight { border-color: rgba(75, 188, 255, .48); background: linear-gradient(145deg, rgba(26, 74, 110, .55), rgba(16, 20, 42, .7)); }
.step-number { position: absolute; top: 23px; right: 25px; color: #657092; font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.step-icon { display: grid; place-items: center; width: 45px; height: 45px; margin: 35px 0 28px; border-radius: 12px; color: var(--cyan); background: rgba(24, 230, 255, .09); font-size: 1.7rem; }
.step-card h3 { margin-bottom: 9px; font-size: 1.16rem; }
.step-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.cta-section { padding-bottom: 112px; }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 48px 52px; border-radius: 24px; background: radial-gradient(circle at 82% 25%, rgba(35, 177, 243, .25), transparent 28%), linear-gradient(135deg, #1c2b5a, #172144 58%, #121832); box-shadow: var(--shadow); }
.cta-card .eyebrow { margin-bottom: 14px; }
.cta-card h2 { margin-bottom: 10px; }
.cta-card p { margin-bottom: 0; }
.cta-card .button { flex: 0 0 auto; }

.site-footer { border-top: 1px solid var(--line); background: var(--bg-deep); }
.footer-inner { min-height: 128px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 72px; height: 46px; object-fit: contain; }
.footer-brand span { max-width: 200px; color: #7883a4; font-size: .75rem; }
.footer-meta { display: flex; align-items: center; justify-content: flex-end; gap: 18px; color: #7883a4; font-size: .72rem; flex-wrap: wrap; }
.footer-meta a { color: var(--blue); }

.modal-backdrop { position: fixed; inset: 0; z-index: 20; display: grid; place-items: center; padding: 20px; background: rgba(2, 4, 13, .78); backdrop-filter: blur(7px); }
.modal-backdrop[hidden] { display: none; }
.whatsapp-modal { position: relative; width: min(100%, 430px); padding: 24px 30px 30px; border: 1px solid rgba(176, 194, 255, .2); border-radius: 22px; background: linear-gradient(145deg, #151c3b, #0c1025); box-shadow: 0 28px 90px rgba(0, 0, 0, .58); }
.modal-kicker { margin: 0 0 10px; color: var(--money-green); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.whatsapp-modal .eyebrow { margin-bottom: 15px; }
.whatsapp-modal h2 { margin: 0 0 10px; font-size: clamp(1.8rem, 5vw, 2.35rem); line-height: 1.05; letter-spacing: -.045em; }
.modal-text { margin-bottom: 24px; color: var(--muted); }
.modal-close { position: absolute; top: 12px; right: 15px; width: 34px; height: 34px; border: 0; border-radius: 50%; color: var(--muted); background: transparent; font-size: 1.7rem; line-height: 1; cursor: pointer; }
.modal-close:hover { color: var(--text); background: rgba(255, 255, 255, .08); }
.whatsapp-modal label { display: block; margin: 16px 0 8px; color: var(--text); font-size: .86rem; font-weight: 700; }
.whatsapp-modal form > label:first-child { margin-top: 0; }
.whatsapp-modal input[type="tel"], .whatsapp-modal input[type="text"] { width: 100%; height: 54px; padding: 0 15px; border: 1px solid rgba(176, 194, 255, .28); border-radius: 11px; outline: 0; color: var(--text); background: rgba(4, 6, 16, .62); font: inherit; font-size: 1rem; }
.whatsapp-modal input:focus { border-color: var(--money-green); box-shadow: 0 0 0 3px rgba(89, 221, 176, .14); }
.consent-text { margin: 17px 0 0; color: var(--muted); font-size: .75rem; line-height: 1.45; }
.phone-validation { min-height: 18px; margin: 7px 0 -5px; font-size: .76rem; line-height: 1.35; }
.phone-validation.is-checking { color: #aeb8d8; }
.phone-validation.is-valid { color: var(--money-green); }
.phone-validation.is-invalid { color: #ff9f9f; }
.phone-validation.is-unavailable { color: #e7c97d; }
.city-validation { min-height: 18px; margin: 7px 0 -5px; font-size: .76rem; line-height: 1.35; }
.city-validation.is-checking { color: #aeb8d8; }
.city-validation.is-valid { color: var(--money-green); }
.city-validation.is-invalid { color: #ff9f9f; }
.city-validation.is-unavailable { color: #e7c97d; }
.whatsapp-modal input.input-valid { border-color: rgba(89, 221, 176, .8); }
.whatsapp-modal input.input-invalid { border-color: rgba(255, 118, 118, .78); box-shadow: 0 0 0 3px rgba(255, 118, 118, .1); }
.whatsapp-modal input.city-input-valid { border-color: rgba(89, 221, 176, .8); }
.whatsapp-modal input.city-input-invalid { border-color: rgba(255, 118, 118, .78); box-shadow: 0 0 0 3px rgba(255, 118, 118, .1); }
.modal-note { margin: 9px 0 0; color: #7f89aa; font-size: .74rem; }
.modal-error { margin: 10px 0 0; color: #ff9f9f; font-size: .8rem; }
.modal-submit { width: 100%; margin-top: 22px; border: 0; cursor: pointer; }
.modal-submit:disabled { opacity: .65; cursor: wait; transform: none; }
.modal-success { display: grid; gap: 7px; padding: 22px; border: 1px solid rgba(89, 221, 176, .35); border-radius: 14px; color: var(--text); background: rgba(89, 221, 176, .08); }
.modal-success[hidden] { display: none; }
.modal-success strong { color: var(--money-green); font-size: 1.08rem; }
.modal-success span { color: var(--muted); font-size: .9rem; }
.photo-step[hidden] { display: none; }
.photo-benefit { margin: 0 0 12px; color: var(--money-green); font-size: clamp(1.45rem, 5.3vw, 2rem); font-weight: 900; line-height: 1.08; letter-spacing: -.035em; }
.photo-instruction { margin: 0 0 15px; color: var(--muted); font-size: .88rem; line-height: 1.4; }
.photo-examples { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.photo-example { margin: 0; overflow: hidden; border: 1px solid rgba(176, 194, 255, .2); border-radius: 12px; background: rgba(4, 6, 16, .55); }
.photo-example img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.photo-example figcaption { padding: 8px 7px 9px; color: var(--text); font-size: .72rem; font-weight: 800; text-align: center; }
.photo-input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.photo-upload-button { display: block; width: 100%; margin-top: 10px; border: 0; cursor: pointer; }
.photo-upload-button[aria-disabled="true"] { opacity: .72; }
.photo-upload-button[aria-disabled="true"] { pointer-events: none; }
.photo-upload-secondary { padding: 7px 8px; color: #9aa7cc; background: transparent; font: inherit; font-size: .84rem; font-weight: 700; text-align: center; }
.photo-upload-secondary:hover { color: var(--text); text-decoration: underline; }
.photo-camera-button { display: block; width: 100%; margin: 16px 0 0; padding: 14px 18px; border: 0; border-radius: 12px; color: #07130c; background: var(--money-green); font: inherit; font-size: .98rem; font-weight: 900; cursor: pointer; box-shadow: 0 10px 22px rgba(34, 211, 110, .22); }
.photo-camera-button:hover { filter: brightness(1.06); }
.photo-camera-button:disabled { opacity: .6; cursor: wait; }
.photo-submit-button { width: 100%; margin-top: 12px; border: 0; cursor: pointer; }
.photo-submit-button:disabled { opacity: .65; cursor: wait; transform: none; }
.photo-selected { margin: 8px 0 0; color: var(--money-green); font-size: .76rem; text-align: center; }
.photo-timer { display: flex; align-items: center; justify-content: center; gap: 9px; margin: 14px 0 16px; padding: 10px 12px; border: 1px solid rgba(89, 221, 176, .34); border-radius: 12px; color: var(--money-green); background: rgba(34, 211, 110, .08); font-size: .86rem; font-weight: 800; line-height: 1.25; text-align: center; }
.photo-timer-icon { font-size: 1.18rem; line-height: 1; }
.photo-timer.is-done { color: var(--muted); border-color: rgba(176, 194, 255, .22); background: rgba(176, 194, 255, .06); }
.address-step[hidden] { display: none; }
.address-benefit { margin: 0 0 10px; color: var(--money-green); font-size: clamp(1.45rem, 5.3vw, 2rem); font-weight: 900; line-height: 1.08; letter-spacing: -.035em; }
.address-instruction { margin: 0 0 20px; color: var(--text); font-size: 1.02rem; font-weight: 700; line-height: 1.35; }
.address-timer { display: flex; align-items: center; justify-content: center; gap: 9px; margin: 0 0 18px; padding: 11px 13px; border: 1px solid rgba(89, 221, 176, .34); border-radius: 12px; color: var(--money-green); background: rgba(34, 211, 110, .08); font-size: .88rem; font-weight: 800; line-height: 1.25; text-align: center; }
.address-timer-icon { font-size: 1.18rem; line-height: 1; }
.address-timer.is-done { color: var(--muted); border-color: rgba(176, 194, 255, .22); background: rgba(176, 194, 255, .06); }
.address-step textarea { display: block; width: 100%; min-height: 112px; padding: 14px 15px; border: 1px solid rgba(176, 194, 255, .28); border-radius: 11px; outline: 0; resize: vertical; color: var(--text); background: rgba(4, 6, 16, .62); font: inherit; font-size: 1rem; line-height: 1.4; }
.address-step textarea:focus { border-color: var(--money-green); box-shadow: 0 0 0 3px rgba(89, 221, 176, .14); }
.address-note { margin: 12px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.45; }
.address-submit { margin-top: 18px; }
.modal-open { overflow: hidden; }

@media (max-width: 820px) {
  .hero { display: flex; flex-direction: column; gap: 0; padding-top: 54px; }
  .hero-copy { width: 100%; order: 1; }
  .hero-visual { display: contents; }
  .hero-detail { display: contents; }
  .hero-photo img { order: 2; width: min(100%, 620px); margin: 0 auto; }
  .hero-actions { width: 100%; order: 3; margin-top: 14px; }
  .hero-visual-caption { width: 100%; order: 4; margin-top: 14px; }
  .hero-text { width: 100%; order: 4; margin-top: 28px; }
  .microcopy { width: 100%; order: 5; }
  .hero-copy { max-width: 680px; }
  .proof-grid { flex-wrap: wrap; justify-content: center; padding: 22px 0; }
  .proof-arrow { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 220px; }
  .cta-card { align-items: flex-start; flex-direction: column; padding: 36px 28px; }
  .footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; padding: 25px 0; }
  .footer-meta { justify-content: flex-start; }
}

@media (max-width: 520px) {
  .section-shell, .site-header { width: min(100% - 32px, 1160px); }
  .site-header { height: 72px; }
  .brand img { width: 73px; }
  .header-link { font-size: .78rem; }
  h1 { font-size: clamp(2.5rem, 12.5vw, 3.65rem); }
  .hero { min-height: calc(100svh - 90px); padding: 20px 0 32px; gap: 0; justify-content: flex-start; }
  .hero-copy { text-align: center; }
  .hero-copy h1 { margin-bottom: 8px; }
  .hero-text { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .button-primary { width: 100%; }
  .text-link { text-align: center; }
  .hero-photo img { width: min(100%, 430px); }
  .hero-visual-caption { margin-top: 14px; }
  .process { padding: 85px 0 75px; }
  .cta-section { padding-bottom: 75px; }
  .footer-meta { gap: 9px; flex-direction: column; align-items: flex-start; }
  .whatsapp-modal { padding: 30px 22px 24px; }
}
