:root {
  --navy-950: #031a35;
  --navy-900: #06274d;
  --navy-800: #073568;
  --blue-700: #075ca8;
  --blue-600: #0877cf;
  --blue-100: #dceeff;
  --gold: #f2b632;
  --gold-dark: #d79209;
  --green: #16a462;
  --ink: #10243a;
  --muted: #5e6f82;
  --line: #dbe5ee;
  --surface: #ffffff;
  --surface-soft: #f4f8fc;
  --shadow-sm: 0 12px 30px rgba(7, 53, 104, .09);
  --shadow-lg: 0 30px 80px rgba(2, 25, 52, .2);
  --radius: 22px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; color: var(--ink); background: #fff; font-family: "Manrope", Arial, sans-serif; font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 9999; padding: 10px 16px; background: white; color: var(--navy-900); border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 16px; }

.contact-bar { color: #e7f3ff; background: var(--navy-950); font-size: .84rem; }
.contact-bar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.contact-bar a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.contact-bar svg { width: 16px; fill: #45d582; }
.site-header { position: relative; z-index: 100; }
.nav { position: absolute; left: 0; right: 0; color: #fff; border-bottom: 1px solid rgba(255,255,255,.13); transition: .3s ease; }
.nav.is-fixed { position: fixed; top: 0; background: rgba(3, 26, 53, .96); box-shadow: 0 8px 30px rgba(0,0,0,.17); backdrop-filter: blur(12px); }
.nav__inner { height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { position: relative; isolation: isolate; display: inline-flex; align-items: center; gap: 14px; min-width: max-content; }
.brand img { position: relative; z-index: 1; width: 92px; height: 92px; object-fit: contain; flex: 0 0 auto; }
.brand span { position: relative; z-index: 1; display: flex; max-width: 150px; flex-direction: column; line-height: 1.25; }
.brand strong { display: none; }
.brand small { margin: 0; color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .015em; text-shadow: 0 2px 8px rgba(0,0,0,.48); }
.nav .brand::before { content: ""; position: absolute; z-index: 0; left: -20px; top: 50%; width: 132px; height: 110px; border-radius: 50%; background: radial-gradient(circle at 47% 48%, rgba(255,255,255,.28) 0 13%, rgba(65,199,255,.31) 35%, rgba(242,182,50,.17) 54%, transparent 74%); filter: blur(6px); opacity: .96; transform: translateY(-50%); transition: opacity .25s ease, transform .25s ease; pointer-events: none; }
.nav .brand img { filter: drop-shadow(0 0 2px rgba(255,255,255,.95)) drop-shadow(0 0 10px rgba(60,190,255,.85)) drop-shadow(0 0 18px rgba(242,182,50,.38)); transition: filter .25s ease; }
.nav .brand:hover::before, .nav .brand:focus-visible::before { opacity: 1; transform: translateY(-50%) scale(1.08); }
.nav .brand:hover img, .nav .brand:focus-visible img { filter: drop-shadow(0 0 8px rgba(119, 220, 255, .78)) drop-shadow(0 0 20px rgba(242, 182, 50, .28)); }
.nav__menu { display: flex; align-items: center; gap: 27px; }
.nav__menu > a:not(.btn) { position: relative; font-size: .91rem; font-weight: 600; color: #e3f0fb; }
.nav__menu > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--gold); transition: right .25s ease; }
.nav__menu > a:hover::after, .nav__menu > a:focus-visible::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 42px; border: 0; background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 25px; height: 2px; background: white; border-radius: 2px; transition: .25s; }

.btn { min-height: 50px; padding: 0 24px; border: 1px solid transparent; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800; line-height: 1.2; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid rgba(242,182,50,.65); outline-offset: 3px; }
.btn svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.btn--small { min-height: 42px; padding: 0 18px; font-size: .88rem; border-radius: 10px; }
.btn--ghost { color: white; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.btn--ghost:hover { background: white; color: var(--navy-900); }
.btn--primary { color: var(--navy-950); background: var(--gold); box-shadow: 0 14px 30px rgba(242,182,50,.23); }
.btn--primary:hover { background: #ffc94f; box-shadow: 0 18px 36px rgba(242,182,50,.3); }
.btn--text { padding-inline: 4px; color: white; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.48); }
.btn--outline { color: var(--navy-800); border-color: var(--navy-800); background: transparent; }
.btn--outline:hover { color: white; background: var(--navy-800); }
.btn--gold { width: 100%; color: var(--navy-950); background: var(--gold); }
.btn--gold:hover { background: #ffd15b; }

.hero { position: relative; overflow: hidden; min-height: 780px; padding: 158px 0 38px; color: white; background: linear-gradient(118deg, var(--navy-950) 0%, #06376c 55%, #075999 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .19; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to right, black, transparent 72%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 70px; background: white; clip-path: polygon(0 64%, 28% 78%, 59% 26%, 100% 56%, 100% 100%, 0 100%); }
.hero__glow { position: absolute; border-radius: 999px; filter: blur(2px); opacity: .35; }
.hero__glow--one { width: 440px; height: 440px; right: -160px; top: 40px; background: #0c91e7; }
.hero__glow--two { width: 260px; height: 260px; left: 38%; bottom: 40px; background: #0d74c2; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 60px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: #cce8ff; font-size: .82rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 3px; background: var(--gold); border-radius: 3px; }
.hero h1 { margin: 0; max-width: 680px; font-family: "Sora", sans-serif; font-size: clamp(3rem, 5vw, 5.1rem); line-height: 1.05; letter-spacing: -.045em; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero__copy > p { max-width: 625px; margin: 24px 0 30px; color: #d8e8f7; font-size: 1.1rem; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.hero__checks { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 30px 0 0; padding: 0; list-style: none; color: #d7e8f8; font-size: .84rem; font-weight: 600; }
.hero__checks li { display: flex; align-items: center; gap: 7px; }
.hero__checks svg { width: 17px; height: 17px; padding: 3px; border-radius: 50%; background: rgba(62,220,143,.15); fill: none; stroke: #59e19d; stroke-width: 3; }
.hero__visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.dashboard-card { width: 93%; overflow: hidden; border: 1px solid rgba(255,255,255,.28); border-radius: 24px; background: rgba(255,255,255,.12); box-shadow: var(--shadow-lg); transform: rotate(1.5deg); backdrop-filter: blur(12px); }
.dashboard-card__bar { height: 43px; padding: 0 16px; display: flex; align-items: center; gap: 7px; color: #b9d3ea; background: rgba(2,22,45,.8); font-size: .7rem; }
.dashboard-card__bar i { width: 8px; height: 8px; border-radius: 50%; background: #56738f; }
.dashboard-card__bar i:first-child { background: var(--gold); }
.dashboard-card__bar span { margin-left: 7px; }
.dashboard-card img { width: 100%; height: 425px; padding: 16px; object-fit: contain; object-position: top center; background: linear-gradient(145deg, #e9f5ff, #c9e3f8); }
.floating-card { position: absolute; z-index: 3; min-width: 220px; padding: 13px 16px; display: flex; align-items: center; gap: 11px; color: var(--ink); border: 1px solid rgba(255,255,255,.6); border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); animation: float 5s ease-in-out infinite; }
.floating-card--top { right: -22px; top: 48px; }
.floating-card--bottom { left: -34px; bottom: 45px; animation-delay: -2.4s; }
.floating-card__icon { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; color: white; border-radius: 10px; background: var(--green); font-weight: 900; }
.floating-card__icon--gold { color: var(--navy-950); background: var(--gold); }
.floating-card strong, .floating-card small { display: block; line-height: 1.3; }
.floating-card strong { font-size: .78rem; }
.floating-card small { margin-top: 3px; color: var(--muted); font-size: .66rem; }
@keyframes float { 50% { transform: translateY(-9px); } }
.trust-strip { position: relative; z-index: 2; margin-top: 55px; padding: 23px 0 35px; display: flex; align-items: center; justify-content: center; gap: 40px; color: #bcd5eb; border-top: 1px solid rgba(255,255,255,.15); }
.trust-strip p { margin: 0; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.trust-strip div { display: flex; align-items: center; gap: 25px; color: white; font-weight: 800; }
.trust-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.section { padding: 104px 0; }
.section-heading { max-width: 710px; margin-bottom: 48px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.kicker { display: block; margin-bottom: 12px; color: var(--blue-600); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.kicker--light { color: #93cfff; }
.section-heading h2, .benefits__copy h2, .cta h2 { margin: 0; font-family: "Sora", sans-serif; font-size: clamp(2rem, 3.4vw, 3.25rem); line-height: 1.17; letter-spacing: -.035em; }
.section-heading p { margin: 17px 0 0; color: var(--muted); font-size: 1.05rem; }
.problem { background: white; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .25s, box-shadow .25s, border-color .25s; }
.step:hover { transform: translateY(-6px); border-color: #b5cee5; box-shadow: var(--shadow-sm); }
.step__number { position: absolute; top: 24px; right: 27px; color: #dbe8f4; font-family: "Sora", sans-serif; font-size: 2rem; font-weight: 700; }
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; color: var(--blue-700); background: var(--blue-100); }
.icon-box svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step h3, .feature-card h3 { margin: 24px 0 9px; font-family: "Sora", sans-serif; font-size: 1.15rem; }
.step p, .feature-card p { margin: 0; color: var(--muted); }

.features { background: var(--surface-soft); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 21px; }
.feature-card { min-height: 285px; padding: 29px; border: 1px solid #e0e9f1; border-radius: 20px; background: white; box-shadow: 0 8px 24px rgba(7,53,104,.04); transition: transform .25s, box-shadow .25s; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.feature-card--accent { color: white; border-color: transparent; background: linear-gradient(145deg, var(--navy-900), var(--blue-700)); }
.feature-card--accent .icon-box { color: var(--navy-950); background: var(--gold); }
.feature-card--accent p { color: #d3e4f4; }
.feature-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: var(--gold); font-size: .86rem; font-weight: 800; }

.product-tour { overflow: hidden; background: white; }
.tour { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: var(--shadow-lg); }
.tour__tabs { display: flex; justify-content: center; gap: 8px; padding: 14px; border-bottom: 1px solid var(--line); background: #f6f9fc; }
.tour-tab { min-width: 142px; padding: 12px 20px; color: var(--muted); border: 0; border-radius: 10px; background: transparent; font-weight: 800; }
.tour-tab.is-active { color: white; background: var(--navy-800); box-shadow: 0 8px 16px rgba(7,53,104,.16); }
.tour__body { min-height: 680px; display: grid; grid-template-columns: .9fr 1.1fr; }
.tour__content { padding: 65px 30px 60px 62px; }
.tour__label { color: var(--blue-600); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.tour__content h3 { margin: 15px 0; font-family: "Sora", sans-serif; font-size: clamp(1.7rem, 2.5vw, 2.45rem); line-height: 1.2; }
.tour__content p { color: var(--muted); }
.tour__content ul { margin: 25px 0; padding: 0; list-style: none; }
.tour__content li { position: relative; margin: 10px 0; padding-left: 27px; font-weight: 600; }
.tour__content li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--green); font-weight: 900; }
.text-link { display: inline-flex; gap: 8px; color: var(--blue-700); font-weight: 800; }
.tour__screen { min-width: 0; padding: 42px; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 32%, #f8fcff 0, #d9ecfb 44%, #bad9f2 100%); }
.screen-frame { width: min(100%, 330px); overflow: hidden; border: 9px solid var(--navy-950); border-radius: 32px; background: #fff; box-shadow: 0 28px 60px rgba(6,39,77,.24); }
.screen-frame__bar { height: 33px; padding-left: 13px; display: flex; align-items: center; gap: 6px; background: #e7eef4; }
.screen-frame__bar span { width: 8px; height: 8px; border-radius: 50%; background: #a8b7c4; }
.screen-frame__bar span:first-child { background: var(--gold); }
.screen-frame img { width: 100%; height: 580px; object-fit: cover; object-position: top center; transition: opacity .18s; }

.benefits { background: var(--navy-950); color: white; }
.benefits__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 82px; }
.benefits__visual { position: relative; min-height: 540px; }
.before-card, .after-card { position: absolute; overflow: hidden; border-radius: 20px; box-shadow: var(--shadow-lg); }
.before-card { width: 49%; left: 4%; top: 0; transform: rotate(-3deg); }
.after-card { width: 49%; right: 4%; bottom: 0; border: 8px solid white; transform: rotate(3deg); }
.before-card img, .after-card img { width: 100%; aspect-ratio: .52; object-fit: cover; object-position: top; }
.before-card span, .after-card span { position: absolute; left: 15px; top: 15px; padding: 5px 11px; color: white; border-radius: 999px; background: rgba(3,26,53,.85); font-size: .7rem; font-weight: 800; }
.after-card span { color: var(--navy-950); background: var(--gold); }
.benefits__copy > p { margin: 21px 0 30px; color: #c8dced; }
.benefit-list > div { padding: 18px 0; display: grid; grid-template-columns: 145px 1fr; gap: 20px; border-top: 1px solid rgba(255,255,255,.13); }
.benefit-list strong { color: var(--gold); }
.benefit-list span { color: #c8dced; }

.faq { background: white; }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 82px; align-items: start; }
.faq .section-heading { margin-bottom: 0; }
.faq .btn { margin-top: 28px; }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item button { width: 100%; min-height: 78px; padding: 18px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--ink); border: 0; background: transparent; text-align: left; font-weight: 800; }
.accordion__item button i { position: relative; width: 26px; height: 26px; flex: 0 0 auto; border-radius: 50%; background: var(--surface-soft); }
.accordion__item button i::before, .accordion__item button i::after { content: ""; position: absolute; left: 7px; right: 7px; top: 12px; height: 2px; background: var(--blue-700); }
.accordion__item button i::after { transform: rotate(90deg); transition: transform .2s; }
.accordion__item.is-open button i::after { transform: rotate(0); }
.accordion__content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion__content p { overflow: hidden; margin: 0; color: var(--muted); }
.accordion__item.is-open .accordion__content { grid-template-rows: 1fr; }
.accordion__item.is-open .accordion__content p { padding: 0 40px 23px 4px; }

.cta { padding: 0 0 100px; background: linear-gradient(to bottom, #fff 40%, var(--surface-soft) 40%); }
.cta__card { position: relative; overflow: hidden; padding: 65px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; color: white; border-radius: 30px; background: linear-gradient(135deg, var(--navy-900), var(--blue-700)); box-shadow: var(--shadow-lg); }
.cta__card::after { content: ""; position: absolute; width: 330px; height: 330px; left: -100px; bottom: -240px; border: 45px solid rgba(255,255,255,.06); border-radius: 50%; }
.cta__copy { position: relative; z-index: 1; }
.cta__copy p { color: #cce0f2; }
.contact-form { position: relative; z-index: 1; padding: 26px; color: var(--ink); border-radius: 18px; background: white; box-shadow: 0 20px 50px rgba(2,22,45,.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.contact-form label { display: block; margin-bottom: 13px; color: var(--ink); font-size: .78rem; font-weight: 800; }
.contact-form input { width: 100%; height: 48px; margin-top: 6px; padding: 0 14px; color: var(--ink); border: 1px solid var(--line); border-radius: 10px; background: #f9fbfd; }
.contact-form input::placeholder { color: #99a6b3; }
.contact-form small { display: block; margin-top: 10px; color: var(--muted); text-align: center; font-size: .68rem; }

.footer { padding: 70px 0 24px; color: #c8d9e8; background: var(--navy-950); }
.footer__grid { display: grid; grid-template-columns: 1.45fr .75fr 1fr .7fr; gap: 55px; }
.brand--footer { color: white; }
.brand--footer img { width: 92px; height: 92px; }
.brand--footer small { color: #c8d9e8; }
.footer__brand p { max-width: 360px; margin: 17px 0 0; color: #94abc0; }
.footer h3 { margin: 12px 0 18px; color: white; font-family: "Sora", sans-serif; font-size: .9rem; }
.footer__grid > div:not(.footer__brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer__grid > div:not(.footer__brand) a { margin: 5px 0; color: #9fb6ca; font-size: .86rem; }
.footer__grid a:hover { color: var(--gold); }
.footer__bottom { margin-top: 55px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: #7892aa; border-top: 1px solid rgba(255,255,255,.1); font-size: .76rem; }
.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; width: 56px; height: 56px; display: grid; place-items: center; border: 4px solid white; border-radius: 50%; background: #25d366; box-shadow: 0 12px 28px rgba(0,0,0,.2); transition: transform .2s; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 27px; fill: white; }

.nav--inner { position: relative; color: white; background: var(--navy-900); }
.inner-hero { padding: 90px 0 76px; color: white; background: linear-gradient(120deg, var(--navy-950), var(--blue-700)); }
.inner-hero h1 { max-width: 750px; margin: 0; font-family: "Sora", sans-serif; font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.1; letter-spacing: -.04em; }
.inner-hero p { max-width: 630px; margin: 20px 0 0; color: #d4e7f7; font-size: 1.08rem; }
.inner-hero--compact { padding-block: 70px; }
.legal-content { max-width: 860px; padding-block: 75px 95px; }
.legal-content h2 { margin: 35px 0 8px; font-family: "Sora", sans-serif; font-size: 1.35rem; }
.legal-content p { color: var(--muted); }
.legal-content a { color: var(--blue-700); font-weight: 700; }
.contact-page__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-page h2 { margin: 0 0 24px; font-family: "Sora", sans-serif; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.2; }
.contact-options { display: grid; gap: 13px; }
.contact-options a { padding: 18px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 14px; transition: border-color .2s, transform .2s; }
.contact-options a:hover { transform: translateY(-2px); border-color: var(--blue-600); }
.contact-options strong { color: var(--blue-700); }
.contact-options span { color: var(--muted); font-size: .88rem; }
.contact-form--border { border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.contact-form--border h2 { font-size: 1.45rem; }
.footer--compact { padding-top: 15px; }
.footer--compact .footer__bottom { margin-top: 0; }
.error-page { min-height: 100vh; padding: 40px 20px; display: grid; place-items: center; color: white; text-align: center; background: radial-gradient(circle at 70% 20%, #0a64aa, var(--navy-950) 55%); }
.error-page__card { max-width: 620px; }
.error-page img { width: 130px; height: 130px; object-fit: contain; margin: 0 auto 18px; }
.error-page span { color: var(--gold); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.error-page h1 { margin: 12px 0; font-family: "Sora", sans-serif; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.1; }
.error-page p { margin: 0 auto 25px; color: #c7dced; }

.reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@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; } }

@media (max-width: 1060px) {
  .nav__menu { gap: 17px; }
  .nav__menu > a:not(.btn) { font-size: .83rem; }
  .hero__grid { gap: 28px; }
  .floating-card--top { right: 0; }
  .floating-card--bottom { left: 0; }
  .features .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { gap: 48px; }
  .faq__grid { gap: 48px; }
  .footer__grid { grid-template-columns: 1.2fr .7fr 1fr; }
  .footer__grid > div:last-child { display: none; }
}

@media (max-width: 860px) {
  .contact-bar span { display: none; }
  .contact-bar__inner { justify-content: flex-end; }
  .nav__inner { height: 82px; }
  .brand img { width: 72px; height: 72px; }
  .nav .brand::before { left: -15px; width: 104px; height: 86px; }
  .menu-toggle { display: flex; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .nav__menu { position: fixed; inset: 112px 20px auto; max-height: calc(100vh - 130px); padding: 22px; display: none; flex-direction: column; align-items: stretch; gap: 4px; color: var(--ink); border-radius: 18px; background: white; box-shadow: var(--shadow-lg); overflow-y: auto; }
  .nav.is-fixed .nav__menu { top: 86px; }
  .nav__menu.is-open { display: flex; }
  .nav__menu > a:not(.btn) { padding: 11px 8px; color: var(--ink); font-size: .95rem; }
  .nav__menu .btn--ghost { margin-top: 10px; color: white; border-color: var(--navy-800); background: var(--navy-800); }
  .hero { padding-top: 136px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { text-align: center; }
  .hero h1, .hero__copy > p { margin-inline: auto; }
  .hero__actions, .hero__checks { justify-content: center; }
  .hero__visual { min-height: 430px; margin-top: 20px; }
  .dashboard-card { max-width: 610px; }
  .dashboard-card img { height: 350px; }
  .trust-strip { margin-top: 30px; flex-direction: column; gap: 12px; }
  .steps { grid-template-columns: 1fr; }
  .tour__body { grid-template-columns: 1fr; }
  .tour__content { padding: 45px; }
  .tour__screen { padding: 32px; }
  .benefits__grid, .faq__grid, .cta__card { grid-template-columns: 1fr; }
  .benefits__visual { max-width: 650px; width: 100%; margin-inline: auto; }
  .faq__grid, .cta__card { gap: 38px; }
  .footer__grid { grid-template-columns: 1.3fr 1fr; }
  .footer__grid > div:nth-child(2) { display: none; }
  .contact-page__grid { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .contact-bar__inner { min-height: 34px; }
  .contact-bar { font-size: .76rem; }
  .nav .brand { gap: 9px; min-width: 0; }
  .nav .brand span { flex: 0 0 170px; width: 170px; max-width: 170px; }
  .nav .brand small { display: block; color: #fff; font-size: .82rem; line-height: 1.18; font-weight: 800; letter-spacing: 0; }
  .brand img { width: 68px; height: 68px; }
  .nav .brand::before { left: -14px; width: 98px; height: 80px; }
  .nav__menu { inset-inline: 14px; }
  .hero { min-height: auto; padding-top: 124px; }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 3.6rem); }
  .hero__copy > p { font-size: 1rem; }
  .hero__actions { gap: 13px; flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__checks { display: grid; grid-template-columns: 1fr 1fr; text-align: left; }
  .hero__visual { min-height: 335px; }
  .dashboard-card { width: 100%; }
  .dashboard-card img { height: 245px; }
  .floating-card { min-width: 178px; padding: 9px 11px; }
  .floating-card--top { top: 0; right: -5px; }
  .floating-card--bottom { bottom: 20px; left: -6px; }
  .floating-card__icon { width: 29px; height: 29px; }
  .floating-card strong { font-size: .67rem; }
  .floating-card small { font-size: .57rem; }
  .trust-strip div { gap: 10px 14px; flex-wrap: wrap; justify-content: center; font-size: .78rem; }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 34px; }
  .step, .feature-card { padding: 24px; }
  .feature-grid { grid-template-columns: 1fr !important; }
  .tour__tabs { overflow-x: auto; justify-content: flex-start; }
  .tour-tab { min-width: 122px; padding-inline: 14px; }
  .tour__content { padding: 33px 24px; }
  .tour__screen { padding: 24px 14px; }
  .screen-frame { border-width: 6px; }
  .screen-frame img { height: min(580px, 145vw); }
  .benefits__grid { gap: 35px; }
  .benefits__visual { min-height: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 12px; }
  .before-card, .after-card { position: relative; inset: auto; width: 100%; transform: none; border-radius: 14px; }
  .after-card { border-width: 4px; }
  .before-card img, .after-card img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }
  .before-card span, .after-card span { left: 8px; top: 8px; padding: 4px 8px; font-size: .58rem; }
  .benefit-list > div { grid-template-columns: 1fr; gap: 2px; }
  .faq__grid { gap: 42px; }
  .cta { padding-bottom: 72px; }
  .cta__card { width: 100%; padding: 38px 20px; border-radius: 0; }
  .contact-form { padding: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__grid > div:nth-child(2) { display: flex; }
  .footer__bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
}

@media (max-width: 380px) {
  .nav .brand { gap: 7px; }
  .nav .brand img { width: 62px; height: 62px; }
  .nav .brand span { flex-basis: 154px; width: 154px; max-width: 154px; }
  .nav .brand small { font-size: .76rem; }
  .nav .brand::before { left: -12px; width: 90px; height: 74px; }
}
