:root {
  --navy-950: #081b30;
  --navy-900: #102f52;
  --navy-800: #173f69;
  --blue-600: #2f72ad;
  --blue-500: #3f89c5;
  --steel-700: #5f7081;
  --steel-500: #8694a2;
  --steel-300: #c8d1d9;
  --steel-100: #e9eef2;
  --soft: #f5f8fb;
  --white: #ffffff;
  --ink: #162436;
  --muted: #657486;
  --success: #17795c;
  --danger: #a64444;
  --shadow-sm: 0 12px 30px rgba(16, 47, 82, .08);
  --shadow-lg: 0 28px 70px rgba(8, 27, 48, .16);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 86px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .82em; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.section--soft { background: var(--soft); }
.section--navy { color: var(--white); background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); overflow: hidden; position: relative; }
.section--navy::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; right: -210px; top: -250px; background: radial-gradient(circle, rgba(63, 137, 197, .35), transparent 70%); }

.skip-link { position: fixed; left: 20px; top: -100px; z-index: 9999; background: var(--white); color: var(--navy-900); padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 20px; }

.topbar { background: var(--navy-950); color: rgba(255,255,255,.78); font-size: .83rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar__links { display: flex; gap: 22px; }
.topbar a:hover { color: var(--white); }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.92); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(134, 148, 162, .16); }
.header__inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 260px; height: 58px; display: flex; align-items: center; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .94rem; font-weight: 650; }
.main-nav > a:not(.nav-cta) { position: relative; color: #34475c; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px; background: var(--blue-600); transition: width .25s ease; }
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { width: 100%; }
.nav-cta { padding: 12px 18px; color: var(--white); background: var(--navy-900); border-radius: 999px; box-shadow: 0 8px 20px rgba(16,47,82,.16); }
.nav-cta:hover { background: var(--blue-600); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--soft); padding: 12px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--navy-900); border-radius: 2px; transition: .25s ease; }

.eyebrow { margin: 0 0 14px; color: var(--blue-600); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow--light { color: #9dccf0; }
h1, h2, h3 { margin-top: 0; color: inherit; line-height: 1.15; letter-spacing: -.035em; }
h1 { margin-bottom: 24px; font-size: clamp(2.55rem, 5.5vw, 5.15rem); max-width: 900px; }
h2 { margin-bottom: 22px; font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { margin-bottom: 12px; font-size: 1.28rem; }
p { margin-top: 0; }

.hero { position: relative; padding: 96px 0 108px; overflow: hidden; background: radial-gradient(circle at 85% 5%, rgba(63,137,197,.13), transparent 30%), linear-gradient(180deg, #fff, #f8fafc); }
.hero::after { content: ""; position: absolute; width: 440px; height: 440px; left: -260px; bottom: -260px; border: 1px solid rgba(47,114,173,.16); border-radius: 50%; box-shadow: 0 0 0 70px rgba(47,114,173,.03), 0 0 0 140px rgba(47,114,173,.02); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr); gap: 78px; align-items: center; position: relative; z-index: 1; }
.hero h1 span { color: var(--blue-600); }
.hero__lead { max-width: 760px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__note { margin: 18px 0 0; color: var(--steel-700); font-size: .88rem; }
.hero__visual {
  position: relative;
  min-width: 0;
  padding-bottom: 110px;
}

.hero-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--navy-900);
  border: 1px solid rgba(134, 148, 162, 0.2);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(16, 47, 82, 0.2);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(6, 21, 35, 0.12) 67%,
      rgba(6, 21, 35, 0.82) 100%
    );
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}

.hero__visual:hover .hero-image img {
  transform: scale(1.025);
}

.hero-image__caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  color: var(--white);
}

.hero-image__caption span,
.hero-image__caption strong {
  display: block;
}

.hero-image__caption span {
  margin-bottom: 7px;
  color: #a9d4f3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-image__caption strong {
  max-width: 330px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.25;
}

.hero-card--floating {
  position: absolute;
  right: -28px;
  bottom: 0;
  left: 38px;
  z-index: 3;
  padding: 26px 28px;
}

.hero-card--floating .hero-card__badge {
  margin-bottom: 12px;
}

.hero-card--floating .mini-steps {
  margin-bottom: 12px;
}

.hero-card--floating .mini-steps li {
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 10px 0;
}

.hero-card--floating .mini-steps li > span {
  width: 32px;
  height: 32px;
  font-size: 0.82rem;
}

.hero-card--floating .mini-steps small {
  font-size: 0.78rem;
  line-height: 1.35;
}

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 750; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: var(--navy-900); box-shadow: 0 12px 28px rgba(16,47,82,.18); }
.button--primary:hover { background: var(--blue-600); box-shadow: 0 16px 32px rgba(47,114,173,.22); }
.button--ghost { color: var(--navy-900); background: var(--white); border-color: var(--steel-300); }
.button--ghost:hover { border-color: var(--blue-600); }
.button--white { color: var(--navy-900); background: var(--white); white-space: nowrap; }
.button--full { width: 100%; border: 0; }

.hero-card { padding: 34px; background: rgba(255,255,255,.88); border: 1px solid rgba(134,148,162,.2); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); backdrop-filter: blur(12px); }
.hero-card__badge { display: inline-flex; margin-bottom: 25px; padding: 7px 12px; color: var(--navy-900); background: #e8f2fa; border-radius: 999px; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.mini-steps { list-style: none; margin: 0 0 22px; padding: 0; }
.mini-steps li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--steel-100); }
.mini-steps li:last-child { border-bottom: 0; }
.mini-steps li > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); background: var(--navy-900); border-radius: 50%; font-weight: 800; }
.mini-steps strong, .mini-steps small { display: block; }
.mini-steps small { margin-top: 3px; color: var(--muted); }
.text-link { color: var(--blue-600); font-weight: 800; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.trust-strip { padding: 26px 0; background: var(--navy-900); color: var(--white); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.trust-strip__grid > div { padding: 10px 34px; border-right: 1px solid rgba(255,255,255,.14); }
.trust-strip__grid > div:first-child { padding-left: 0; }
.trust-strip__grid > div:last-child { padding-right: 0; border-right: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { margin-bottom: 3px; font-size: .96rem; }
.trust-strip span { color: rgba(255,255,255,.64); font-size: .82rem; }

.section-heading { width: min(760px, 100%); margin: 0 auto 54px; text-align: center; }
.section-heading p:last-child { color: var(--muted); font-size: 1.05rem; }
.section-heading--left { margin-left: 0; text-align: left; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { min-height: 100%; padding: 32px; background: var(--white); border: 1px solid rgba(134,148,162,.18); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step-card__number { display: inline-block; margin-bottom: 28px; color: var(--blue-600); font-size: .82rem; font-weight: 900; letter-spacing: .12em; }
.step-card p { color: var(--muted); }
.store-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.store-button { display: flex; align-items: center; gap: 12px; padding: 11px 15px; color: var(--white); background: var(--navy-950); border-radius: 12px; transition: transform .2s ease, background .2s ease; }
.store-button:hover { transform: translateY(-2px); background: var(--navy-800); }
.store-button svg { width: 25px; fill: currentColor; }
.store-button span, .store-button small { display: block; }
.store-button span { font-size: .98rem; font-weight: 800; line-height: 1.1; }
.store-button small { margin-bottom: 3px; font-size: .66rem; font-weight: 500; opacity: .75; }
.step-card__tip { margin-top: 24px; padding: 14px 16px; color: var(--navy-900); background: #eef5fa; border-radius: 12px; font-size: .88rem; }
.contact-links { display: grid; gap: 10px; margin-top: 24px; }
.contact-links a { padding: 12px 14px; color: var(--navy-900); background: var(--soft); border: 1px solid var(--steel-100); border-radius: 10px; font-weight: 750; }
.contact-links a:hover { border-color: var(--blue-600); }

.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-layout__content p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.data-cards { display: grid; gap: 18px; }
.data-card { position: relative; padding: 30px 30px 30px 92px; background: var(--soft); border: 1px solid var(--steel-100); border-radius: var(--radius); }
.data-card__icon { position: absolute; left: 28px; top: 30px; width: 44px; height: 44px; display: grid; place-items: center; color: var(--white); border-radius: 50%; font-size: 1.45rem; font-weight: 800; }
.data-card--positive .data-card__icon { background: var(--success); }
.data-card--negative .data-card__icon { background: var(--danger); }
.data-card p { margin: 0; color: var(--muted); }

.fico-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 86px; align-items: center; position: relative; z-index: 1; }
.fico-score { text-align: center; }
.fico-score__ring { width: min(340px, 80vw); aspect-ratio: 1; margin: 0 auto 30px; display: flex; align-items: center; justify-content: center; gap: 14px; border: 28px solid rgba(255,255,255,.08); border-top-color: #9dccf0; border-right-color: #5fa5d8; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 28px 70px rgba(0,0,0,.16); }
.fico-score__ring strong { font-size: 2.5rem; letter-spacing: -.04em; }
.fico-score__ring span { color: rgba(255,255,255,.6); font-size: .78rem; }
.fico-score p { max-width: 430px; margin-inline: auto; color: rgba(255,255,255,.68); }
.factor-list { display: grid; gap: 12px; }
.factor { display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: center; padding: 16px 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; }
.factor > span { color: #a9d5f5; font-size: 1.22rem; font-weight: 900; }
.factor strong, .factor small { display: block; }
.factor small { margin-top: 2px; color: rgba(255,255,255,.62); }
.alert-card { position: relative; z-index: 1; margin-top: 52px; padding: 24px 28px; display: grid; grid-template-columns: 110px 1fr; gap: 20px; align-items: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); }
.alert-card strong { color: #b8ddf7; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.alert-card p { margin: 0; color: rgba(255,255,255,.78); }

.issues-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.issue-card { padding: 28px; border: 1px solid var(--steel-100); border-radius: var(--radius); background: var(--white); }
.issue-card > span { display: inline-block; margin-bottom: 26px; color: var(--blue-600); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.issue-card p { margin: 0; color: var(--muted); }
.legal-note { margin-top: 24px; padding: 34px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 55px; align-items: center; color: var(--white); background: var(--navy-900); border-radius: var(--radius); }
.legal-note h3 { margin-bottom: 0; font-size: 1.8rem; }
.legal-note p:last-child { margin: 0; color: rgba(255,255,255,.72); }

.why-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.why-layout__content p:not(.eyebrow) { color: var(--muted); font-size: 1.04rem; }
.why-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.why-cards > div { min-height: 155px; padding: 24px; background: var(--white); border: 1px solid var(--steel-100); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.why-cards strong, .why-cards span { display: block; }
.why-cards strong { margin-bottom: 8px; color: var(--navy-900); font-size: 1.15rem; }
.why-cards span { color: var(--muted); }

.financing-section { padding-top: 0; }
.financing-card { padding: 54px 58px; display: flex; align-items: center; justify-content: space-between; gap: 50px; color: var(--white); background: linear-gradient(120deg, var(--navy-900), var(--blue-600)); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.financing-card h2 { margin-bottom: 16px; }
.financing-card p:last-child { max-width: 760px; margin-bottom: 0; color: rgba(255,255,255,.75); }

.video-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: center; }
.video-shell { aspect-ratio: 16/9; overflow: hidden; background: var(--navy-950); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.video-shell iframe { width: 100%; height: 100%; border: 0; }
.video-placeholder { width: 100%; height: 100%; display: grid; place-items: center; align-content: center; gap: 10px; padding: 30px; color: var(--white); text-align: center; background: radial-gradient(circle at center, rgba(63,137,197,.25), transparent 55%), var(--navy-950); }
.play-icon { width: 70px; height: 70px; display: grid; place-items: center; margin-bottom: 10px; padding-left: 4px; background: var(--blue-600); border-radius: 50%; box-shadow: 0 14px 30px rgba(0,0,0,.22); }
.video-placeholder small { color: rgba(255,255,255,.55); }

.section--contact { color: var(--white); background: var(--navy-950); }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.66); font-size: 1.05rem; }
.contact-details { display: grid; gap: 12px; margin-top: 36px; }
.contact-details a { padding: 16px 18px; display: flex; justify-content: space-between; gap: 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; }
.contact-details span { color: rgba(255,255,255,.54); font-size: .82rem; }
.contact-details strong { font-size: .92rem; }
.contact-form { padding: 34px; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: 0 30px 70px rgba(0,0,0,.2); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field label { display: block; margin-bottom: 7px; color: var(--navy-900); font-size: .86rem; font-weight: 750; }
.field input { width: 100%; height: 50px; padding: 0 14px; color: var(--ink); background: var(--soft); border: 1px solid transparent; border-radius: 10px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field input:focus { background: var(--white); border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(47,114,173,.1); }
.field input[aria-invalid="true"] { border-color: var(--danger); }
.field-error { min-height: 18px; display: block; padding-top: 4px; color: var(--danger); font-size: .76rem; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 12px 0 22px; color: var(--muted); font-size: .8rem; }
.consent input { margin-top: 4px; accent-color: var(--navy-900); }
.consent a { color: var(--blue-600); text-decoration: underline; }
.form-status { min-height: 22px; margin-top: 14px; font-size: .88rem; text-align: center; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--danger); }
.button-loader { width: 17px; height: 17px; display: none; border: 2px solid rgba(255,255,255,.4); border-top-color: var(--white); border-radius: 50%; animation: spin .7s linear infinite; }
.contact-form.is-loading .button-loader { display: inline-block; }
.contact-form.is-loading button { opacity: .78; pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.site-footer { padding: 64px 0 24px; background: #061523; color: rgba(255,255,255,.68); }
.footer__grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 70px; }
.footer__brand img { width: 180px; padding: 8px; background: var(--white); border-radius: 10px; }
.footer__brand p { max-width: 480px; margin-top: 18px; }
.site-footer h3 { margin-bottom: 18px; color: var(--white); font-size: 1rem; }
.site-footer a { display: block; margin: 9px 0; }
.site-footer a:hover { color: var(--white); }
.footer__bottom { margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.08); font-size: .78rem; }
.footer__bottom p { margin: 0; }
.footer__bottom p:last-child { max-width: 650px; text-align: right; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 56px; height: 56px; display: grid; place-items: center; color: var(--white); background: #1d9c69; border-radius: 50%; box-shadow: 0 14px 30px rgba(0,0,0,.22); transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.floating-whatsapp svg { width: 29px; fill: currentColor; }

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

@media (max-width: 1040px) {
  .main-nav { gap: 18px; font-size: .88rem; }
  .hero__grid { gap: 46px; }
  .issues-grid { grid-template-columns: repeat(2, 1fr); }
  .video-layout { grid-template-columns: 1fr; gap: 28px; }
  .hero-card--floating {
	  right: 0;
	  left: 24px;
	}
}

@media (max-width: 860px) {
  :root { --header-height: 76px; }
  .section { padding: 78px 0; }
  .topbar__inner > span { display: none; }
  .topbar__links { width: 100%; justify-content: space-between; }
  .brand { width: 218px; height: 52px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: var(--header-height) 18px auto; display: grid; gap: 4px; padding: 18px; background: var(--white); border: 1px solid var(--steel-100); border-radius: 18px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .22s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 11px 12px; }
  .nav-cta { text-align: center; }
  .hero { padding-top: 70px; }
  .hero__grid, .split-layout, .fico-layout, .why-layout, .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .hero-card { max-width: 620px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip__grid > div { padding: 16px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-strip__grid > div:last-child { border-bottom: 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .fico-score__ring { width: min(300px, 75vw); }
  .legal-note { grid-template-columns: 1fr; gap: 18px; }
  .financing-card { align-items: flex-start; flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .hero__visual {
	  max-width: 650px;
	  padding-bottom: 0;
	}

  .hero-image {
	  aspect-ratio: 16 / 11;
	}

  .hero-card--floating {
	  position: relative;
	  right: auto;
	  bottom: auto;
	  left: auto;
	  width: calc(100% - 34px);
	  margin: -54px auto 0;
	}
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 66px 0; }
  .topbar { display: none; }
  .hero { padding-top: 58px; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.35rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 2.55rem); }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-card, .step-card, .contact-form { padding: 26px 22px; }
  .issues-grid, .why-cards, .form-grid { grid-template-columns: 1fr; }
  .data-card { padding: 82px 22px 24px; }
  .data-card__icon { left: 22px; top: 22px; }
  .factor { grid-template-columns: 58px 1fr; padding: 14px; }
  .alert-card { grid-template-columns: 1fr; gap: 8px; }
  .legal-note { padding: 26px 22px; }
  .financing-card { padding: 34px 24px; border-radius: var(--radius); }
  .contact-details a { align-items: flex-start; flex-direction: column; gap: 2px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; }
  .footer__bottom p:last-child { text-align: left; }
  .floating-whatsapp { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .hero__visual {
	  width: 100%;
	}

	.hero-image {
	  aspect-ratio: 4 / 5;
	  border-radius: 22px;
	}

	.hero-image__caption {
	  right: 20px;
	  bottom: 76px;
	  left: 20px;
	}

	.hero-card--floating {
	  width: calc(100% - 20px);
	  margin-top: -48px;
	  padding: 24px 20px;
	}

	.hero-card--floating .mini-steps li {
	  grid-template-columns: 34px 1fr;
	}

	.hero-card--floating .mini-steps li > span {
	  width: 34px;
	  height: 34px;
	}
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
/* =========================================================
   HERO DESKTOP: imagine mai vizibilă + card compact
   ========================================================= */

@media (min-width: 861px) {

  .hero__grid {
    grid-template-columns:
      minmax(0, 1.12fr)
      minmax(430px, 0.88fr);
    align-items: center;
    gap: clamp(48px, 6vw, 96px);
  }

  .hero__content {
    max-width: 780px;
  }

  .hero__content h1 {
    font-size: clamp(3.6rem, 4.8vw, 5.4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .hero__visual {
    width: 100%;
    max-width: 560px;
    justify-self: end;
    padding-bottom: 92px;
  }

  .hero-image {
    width: 100%;
    min-height: 570px;
    aspect-ratio: 4 / 5;
    border-radius: 30px;
  }

  .hero-image img {
    object-fit: cover;
    object-position: center 15%;
  }

  .hero-image__caption {
    right: 190px;
    bottom: 30px;
    left: 26px;
  }

  .hero-card--floating {
    right: -34px;
    bottom: 0;
    left: auto;

    width: min(72%, 370px);
    padding: 22px 24px;

    border-radius: 28px;
    box-shadow:
      0 24px 60px rgba(15, 44, 76, 0.18),
      0 8px 24px rgba(15, 44, 76, 0.08);
  }

  .hero-card--floating .hero-card__badge {
    margin-bottom: 10px;
    padding: 8px 14px;
    font-size: 0.7rem;
  }

  .hero-card--floating .mini-steps {
    margin-bottom: 10px;
  }

  .hero-card--floating .mini-steps li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 11px;
    padding: 9px 0;
  }

  .hero-card--floating .mini-steps li > span {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
  }

  .hero-card--floating .mini-steps strong {
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .hero-card--floating .mini-steps small {
    margin-top: 3px;
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .hero-card--floating .text-link {
    margin-top: 7px;
    font-size: 0.88rem;
  }
}


/* Desktop mediu și laptop */

@media (min-width: 861px) and (max-width: 1240px) {

  .hero__grid {
    grid-template-columns:
      minmax(0, 1.05fr)
      minmax(390px, 0.95fr);
    gap: 42px;
  }

  .hero__content h1 {
    font-size: clamp(3.5rem, 5.5vw, 4.8rem);
  }

  .hero__visual {
    max-width: 500px;
    padding-bottom: 86px;
  }

  .hero-image {
    min-height: 520px;
  }

  .hero-card--floating {
    right: -10px;
    width: min(75%, 350px);
  }
}


/* Ecrane desktop foarte mari */

@media (min-width: 1500px) {

  .hero__visual {
    max-width: 590px;
  }

  .hero-image {
    min-height: 610px;
  }

  .hero-card--floating {
    right: -24px;
    width: 365px;
  }
}
/* =========================================================
   HERO DESKTOP - echilibrare finală
   Acest bloc se aplică exclusiv pe desktop.
   ========================================================= */

@media (min-width: 861px) {
  .hero {
    padding-top: 72px;
    padding-bottom: 90px;
  }

  .hero__grid {
    grid-template-columns:
      minmax(0, 1.02fr)
      minmax(470px, 0.98fr);
    gap: clamp(54px, 6vw, 92px);
    align-items: center;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__content h1 {
    max-width: 720px;
    margin-bottom: 26px;
    font-size: clamp(3.35rem, 4.35vw, 4.85rem);
    line-height: 1.03;
    letter-spacing: -0.042em;
    text-wrap: balance;
  }

  .hero__lead {
    max-width: 690px;
    font-size: 1.12rem;
    line-height: 1.7;
  }

  .hero__actions {
    margin-top: 30px;
  }

  .hero__note {
    margin-top: 18px;
  }

  .hero__visual {
    max-width: 590px;
  }

  .hero-image__caption {
    top: 28px;
    right: auto;
    bottom: auto;
    left: 28px;
    max-width: 230px;
    padding: 13px 16px;
    background: rgba(8, 27, 48, 0.48);
    border-radius: 14px;
  }

  .hero-image__caption span {
    font-size: 0.62rem;
  }

  .hero-image__caption strong {
    max-width: 195px;
    font-size: 1rem;
    line-height: 1.3;
  }

  .hero-card--floating {
    right: -18px;
    width: min(68%, 350px);
    padding: 20px 22px;
  }

  .hero-card--floating .mini-steps li {
    padding: 8px 0;
  }

  .hero-card--floating .mini-steps strong {
    font-size: 0.87rem;
  }

  .hero-card--floating .mini-steps small {
    font-size: 0.7rem;
  }

  .hero-card--floating .text-link {
    font-size: 0.82rem;
  }
}
