:root {
  --ondax-navy-950: #06182f;
  --ondax-navy-900: #0a2342;
  --ondax-navy-800: #123b69;
  --ondax-blue: #155acb;
  --ondax-gold: #e9a91b;
  --ondax-gold-dark: #c88400;
  --ondax-gold-soft: #fff6df;
  --ondax-green: #159447;
  --ondax-green-dark: #0b7636;
  --ondax-green-soft: #edf9f1;
  --ondax-red: #d83b3b;
  --ondax-red-dark: #b92323;
  --ondax-red-soft: #fff1f1;
  --ondax-white: #ffffff;
  --ondax-background: #f5f8fc;
  --ondax-card: #ffffff;
  --ondax-border: #d8e1ec;
  --ondax-text: #0b1d3a;
  --ondax-muted: #5f6f85;
  --shadow-card: 0 18px 44px rgba(6, 24, 47, .10);
  --shadow-soft: 0 10px 28px rgba(6, 24, 47, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 154px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ondax-background);
  color: var(--ondax-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body.is-menu-open,
body.is-modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

:focus-visible {
  outline: 3px solid rgba(233, 169, 27, .7);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ondax-gold);
  color: var(--ondax-navy-950);
  font-weight: 900;
  padding: 10px 16px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.section-shell {
  width: min(1180px, calc(100vw - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(6, 24, 47, .96);
  border-bottom: 1px solid rgba(233, 169, 27, .28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
  backdrop-filter: blur(16px);
}

.header-shell {
  width: min(1360px, calc(100vw - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 184px;
}

.brand img {
  width: 184px;
  height: auto;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #ffffff;
  font-weight: 800;
  font-size: .95rem;
}

.main-nav a {
  position: relative;
  padding: 30px 0 28px;
  opacity: .96;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 999px;
  background: var(--ondax-gold);
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-large {
  min-height: 54px;
  padding-inline: 24px;
  font-size: 1.02rem;
}

.btn-gold {
  background: linear-gradient(135deg, #ffd66b, var(--ondax-gold));
  color: var(--ondax-navy-950);
  box-shadow: 0 14px 26px rgba(233, 169, 27, .28);
}

.btn-green {
  background: linear-gradient(135deg, #18b75a, var(--ondax-green-dark));
  color: #fff;
  box-shadow: 0 14px 26px rgba(21, 148, 71, .24);
}

.btn-blue {
  background: linear-gradient(135deg, #1d6cf2, var(--ondax-blue));
  color: #fff;
  box-shadow: 0 14px 26px rgba(21, 90, 203, .18);
}

.btn-red {
  background: linear-gradient(135deg, #ff5a3d, var(--ondax-red-dark));
  color: #fff;
  box-shadow: 0 14px 26px rgba(216, 59, 59, .24);
}

.btn-red-outline {
  border-color: rgba(255, 92, 80, .7);
  background: rgba(216, 59, 59, .08);
  color: #fff;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.btn-outline-dark {
  border-color: #bfcee1;
  background: #fff;
  color: var(--ondax-text);
}

.warning-icon {
  font-size: 1.08em;
  line-height: 1;
}

.header-actions .btn-red {
  max-width: 320px;
  white-space: normal;
  line-height: 1.12;
  text-align: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 66vh, 680px);
  overflow: hidden;
  background: var(--ondax-navy-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(6, 24, 47, .96) 0%, rgba(6, 24, 47, .82) 40%, rgba(6, 24, 47, .18) 100%),
    url('/landing-assets/ciudad-del-este-hero.png') center right / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 70% 30%, rgba(233, 169, 27, .16), transparent 28%),
    linear-gradient(180deg, rgba(6, 24, 47, .12), rgba(6, 24, 47, .56));
}

.hero-grid {
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: clamp(54px, 7vw, 92px) 0 82px;
}

.hero-copy {
  width: min(670px, 100%);
  color: #fff;
}

.hero-kicker,
.eyebrow,
.card-eyebrow,
.modal-kicker {
  margin: 0 0 12px;
  color: var(--ondax-gold);
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .86rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5.1vw, 4.65rem);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 720px;
}

.hero h1 span {
  color: var(--ondax-gold);
}

.hero p {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  color: rgba(255, 255, 255, .95);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(820px, 100%);
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, .24);
  padding: 0 14px;
}

.hero-highlights li:last-child {
  border-right: 0;
}

.hero-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(233, 169, 27, .72);
  border-radius: 999px;
  color: var(--ondax-gold);
}

.hero-icon svg {
  width: 28px;
  height: 28px;
}

.down-link {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  transform: translateX(-50%);
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  color: #fff;
  font-size: 2rem;
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 8px; }
}

.section {
  padding: clamp(58px, 7vw, 88px) 0;
}

.section-heading {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 820px;
}

.section-heading h2,
.representation h2,
.ebook-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.1vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--ondax-border);
  border-radius: 18px;
  background: var(--ondax-card);
  box-shadow: var(--shadow-soft);
  padding: 26px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(233, 169, 27, .55);
  box-shadow: var(--shadow-card);
}

.service-card-large {
  min-height: 306px;
  text-align: center;
  align-items: center;
  border-top-color: rgba(233, 169, 27, .9);
  border-top-width: 3px;
}

.compact-card {
  min-height: 292px;
}

.card-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f1f5fb);
  color: var(--ondax-navy-950);
  box-shadow: inset 0 0 0 1px var(--ondax-border);
}

.card-icon svg {
  width: 38px;
  height: 38px;
}

.card-icon-gold {
  color: var(--ondax-gold-dark);
  background: linear-gradient(145deg, #fff7e1, #fff);
}

.card-icon-blue {
  color: var(--ondax-blue);
  background: linear-gradient(145deg, #edf5ff, #fff);
}

.card-eyebrow {
  color: var(--ondax-text);
  letter-spacing: normal;
  font-size: 1rem;
  text-transform: none;
}

.service-card h3 {
  margin: 0;
  color: var(--ondax-text);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  line-height: 1.18;
}

.price {
  margin: 18px 0 0;
  color: var(--ondax-gold-dark);
  font-size: clamp(2rem, 3.1vw, 2.8rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.045em;
}

.price-small {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.billing {
  margin: 6px 0 0;
  color: var(--ondax-muted);
  font-weight: 700;
  font-size: .94rem;
}

.short-copy {
  margin: 18px 0 0;
  color: var(--ondax-muted);
}

.expand-panel {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .24s ease, opacity .2s ease, margin .2s ease;
}

.is-expanded .expand-panel {
  max-height: 900px;
  opacity: 1;
  margin-top: 18px;
}

.expand-panel p {
  color: var(--ondax-muted);
  margin: 0 0 12px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 8px 0;
  padding-left: 28px;
  color: var(--ondax-text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--ondax-green);
  font-weight: 950;
}

.two-columns {
  columns: 2;
  column-gap: 28px;
}

.expand-toggle {
  align-self: flex-start;
  margin-top: auto;
  border: 0;
  border-bottom: 2px solid rgba(233, 169, 27, .42);
  background: transparent;
  color: var(--ondax-navy-950);
  padding: 14px 0 4px;
  font-weight: 950;
  cursor: pointer;
}

.service-card-large .expand-toggle {
  align-self: center;
}

.service-card.is-expanded {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  column-gap: clamp(22px, 4vw, 52px);
  row-gap: 8px;
  align-items: start;
  text-align: left;
  max-height: calc(100dvh - 132px);
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.service-card-large.is-expanded {
  min-height: auto;
  align-items: start;
}

.service-card.is-expanded .card-icon,
.service-card.is-expanded .card-eyebrow,
.service-card.is-expanded h3,
.service-card.is-expanded .price,
.service-card.is-expanded .billing,
.service-card.is-expanded .short-copy,
.service-card.is-expanded .expand-toggle {
  grid-column: 1;
}

.service-card.is-expanded .card-icon {
  margin-bottom: 6px;
}

.service-card.is-expanded .price {
  margin-top: 10px;
}

.service-card.is-expanded .short-copy {
  margin-top: 10px;
}

.service-card.is-expanded .expand-panel {
  grid-column: 2;
  grid-row: 1 / span 8;
  max-height: none;
  overflow: visible;
  opacity: 1;
  margin-top: 0;
  align-self: stretch;
  border-left: 1px solid var(--ondax-border);
  padding-left: clamp(18px, 3vw, 34px);
}

.service-card.is-expanded .expand-panel .check-list {
  columns: 2;
  column-gap: 30px;
}

.service-card.is-expanded .expand-panel .check-list li {
  break-inside: avoid;
}

.expand-toggle::after {
  content: " →";
  color: var(--ondax-gold-dark);
}

.is-expanded > .expand-toggle::after,
.is-expanded .ebook-actions > .expand-toggle::after,
.is-expanded .representation-more > .expand-toggle::after {
  content: " ↑";
}

.expand-toggle.invert {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .36);
}

.representation {
  padding: clamp(54px, 7vw, 82px) 0;
  background:
    radial-gradient(circle at 88% 20%, rgba(233, 169, 27, .18), transparent 28%),
    linear-gradient(145deg, var(--ondax-navy-950), #041224 70%);
  color: #fff;
}

.gold {
  color: var(--ondax-gold);
}

.representation-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
}

.representation-visual {
  display: grid;
  place-items: center;
  min-height: 160px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  color: var(--ondax-gold);
}

.representation-visual svg {
  width: 132px;
  height: 132px;
  stroke-width: 1.5;
}

.representation p {
  color: rgba(255, 255, 255, .82);
}

.representation-price {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 22px 0;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(233, 169, 27, .38);
}

.representation-price strong {
  color: var(--ondax-gold);
  font-size: clamp(3.8rem, 6vw, 5.4rem);
  line-height: .82;
  letter-spacing: -.06em;
}

.representation-main {
  margin: 0;
  font-size: 1.28rem;
}

.representation-benefits {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, .06);
}

.representation-benefits .check-list li {
  color: #fff;
}

.representation-benefits .small-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
}

.representation-more {
  margin-top: 12px;
}

.ebook-section {
  padding: clamp(56px, 7vw, 86px) 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 246, 223, .72)),
    radial-gradient(circle at 28% 22%, rgba(233, 169, 27, .12), transparent 28%);
}

.ebook-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.ebook-cover {
  display: grid;
  place-items: center;
}

.book {
  width: 190px;
  min-height: 256px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 12px 20px 20px 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 8%),
    linear-gradient(155deg, var(--ondax-navy-950), var(--ondax-navy-800));
  color: #fff;
  box-shadow: 22px 24px 44px rgba(6, 24, 47, .22);
  transform: rotate(-3deg);
}

.book span {
  color: var(--ondax-gold);
  font-weight: 950;
  letter-spacing: .04em;
}

.book strong {
  font-size: 1.45rem;
  line-height: 1.05;
}

.book small {
  color: rgba(255, 255, 255, .74);
}

.ebook-card {
  max-width: 760px;
  margin-top: 22px;
  border: 1px solid rgba(233, 169, 27, .45);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.ebook-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
}

.ebook-actions .expand-toggle {
  margin-top: 0;
}

.help-flow-section {
  padding: clamp(56px, 7vw, 86px) 0;
  background:
    radial-gradient(circle at 50% 0, rgba(233, 169, 27, .08), transparent 34%),
    linear-gradient(180deg, #fff, #f8fbff);
}

.help-flow-heading {
  max-width: 980px;
  margin: 0 auto 30px;
  text-align: center;
}

.help-flow-heading h2 {
  margin: 0;
  color: var(--ondax-navy-950);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.help-flow-heading h2 span {
  color: #b87900;
}

.help-flow-heading p {
  margin: 12px 0 0;
  color: #5b6981;
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  font-weight: 750;
}

.help-flow-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.05fr) minmax(0, .96fr) minmax(0, 1.02fr);
  grid-template-rows: auto auto;
  gap: 18px 22px;
  align-items: center;
}

.help-card {
  position: relative;
  min-height: 100%;
  padding: 28px 24px 24px;
  border: 1px solid #d9e2ee;
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 46px rgba(6, 24, 47, .08);
  color: var(--ondax-navy-950);
  animation: helpCardIn .22s ease both;
}

.help-card[hidden] {
  display: none !important;
}

.help-card.is-visible {
  display: block;
}

.help-card-start {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.help-card-opening {
  grid-column: 2;
  grid-row: 1;
}

.help-card-lookup {
  grid-column: 2;
  grid-row: 2;
}

.help-card-habilitation {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.help-card-operation {
  grid-column: 4;
  grid-row: 1 / span 2;
}

.help-card-start::after,
.help-card-opening::after,
.help-card-lookup::after,
.help-card-habilitation::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -27px;
  z-index: 2;
  transform: translateY(-50%);
  color: #b87900;
  font-size: 2rem;
  font-weight: 1000;
  text-shadow: 0 8px 18px rgba(184, 121, 0, .18);
}

.help-step {
  position: absolute;
  left: 22px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--ondax-navy-950);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 1000;
  box-shadow: 0 12px 28px rgba(6, 24, 47, .18);
}

.help-card h3 {
  margin: 8px 0 14px;
  padding-left: 68px;
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.help-card p {
  margin: 0 0 14px;
  color: #4b5b73;
  font-weight: 700;
  line-height: 1.45;
}

.help-choice-list,
.help-operation-options,
.help-checks {
  display: grid;
  gap: 12px;
}

.help-choice,
.help-operation-options button,
.help-action-row button,
.help-next,
.help-contract {
  border: 1px solid #cfdbea;
  border-radius: 14px;
  background: #fff;
  color: var(--ondax-navy-950);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.help-choice:hover,
.help-operation-options button:hover,
.help-action-row button:hover,
.help-next:hover,
.help-contract:not(:disabled):hover {
  transform: translateY(-1px);
  border-color: #e2a83a;
  box-shadow: 0 14px 30px rgba(6, 24, 47, .12);
}

.help-choice {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 12px 16px;
  text-align: left;
}

.help-choice.is-primary,
.help-choice.is-selected {
  background: linear-gradient(145deg, #001944, #06182f);
  color: #fff;
  border-color: #001944;
}

.help-choice-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.help-choice svg,
.help-company-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.help-info {
  position: relative;
  margin: 20px 0 !important;
  padding-left: 30px;
  color: #1d2c45 !important;
  font-weight: 850 !important;
}

.help-info::before {
  content: 'i';
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 2px solid var(--ondax-navy-950);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 1000;
}

.help-mini-price {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid rgba(226, 168, 58, .42);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff9ec, #fff);
}

.help-mini-price > span {
  color: #b87900;
  font-size: 2rem;
  font-weight: 1000;
}

.help-mini-price small,
.help-mini-price strong {
  display: block;
}

.help-mini-price small {
  color: #273650;
  font-weight: 900;
}

.help-mini-price strong {
  color: #9d6500;
  font-size: 1.45rem;
}

.help-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px dashed #d8e1ee;
  color: #4b5b73;
  font-weight: 850;
}

.help-path b {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff6e3;
  color: #9d6500;
  border: 1px solid rgba(226, 168, 58, .36);
  white-space: nowrap;
}

.help-price {
  display: block;
  margin: 8px 0 16px;
  color: #9d6500;
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.help-checks {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.help-checks li {
  position: relative;
  padding-left: 28px;
  color: #1f2f49;
  font-weight: 820;
}

.help-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid #d39a20;
  border-radius: 999px;
  color: #b87900;
  font-size: .72rem;
  font-weight: 1000;
}

.help-next {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  background: linear-gradient(145deg, #fff9ec, #fff0cf);
  color: #855504;
}

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

.help-cnpj-row input {
  min-width: 0;
  min-height: 42px;
  border: 1px solid #cbd8ea;
  border-radius: 10px;
  padding: 0 12px;
  color: var(--ondax-navy-950);
  font: inherit;
}

.help-cnpj-row button {
  width: 100%;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: var(--ondax-navy-950);
  color: #fff;
  font-weight: 950;
}

.help-status {
  min-height: 20px;
  margin: 10px 0 !important;
  font-size: .88rem;
}

.help-status.is-error {
  color: #c71919;
}

.help-status.is-ok,
.help-status.is-loading {
  color: #087849;
}

.help-company-result {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 12px 0;
  padding: 14px;
  border: 1px solid #9fdcb8;
  border-radius: 14px;
  background: linear-gradient(145deg, #effcf6, #fff);
}

.help-company-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f0f6ff;
  color: #072149;
}

.help-company-result strong,
.help-company-result small,
.help-company-result span {
  display: block;
}

.help-company-result strong {
  color: #17233b;
}

.help-company-result small {
  margin: 2px 0 6px;
  color: #52647c;
}

.help-company-result span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #dff8e9;
  color: #087849;
  font-size: .8rem;
  font-weight: 950;
}

.help-habilitation-question {
  margin-top: 12px;
}

.help-habilitation-question p {
  margin-bottom: 10px !important;
  color: #17233b;
  font-weight: 950;
}

.help-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.help-action-row button {
  min-height: 44px;
  padding: 10px;
}

.help-action-row button:first-child {
  color: #087849;
  border-color: #9fdcb8;
}

.help-action-row button:last-child {
  color: #b7192a;
  border-color: #f2b5bf;
}

.help-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid rgba(226, 168, 58, .42);
  border-radius: 14px;
  background: #fff8e8;
  color: #17233b;
  font-weight: 950;
}

.help-alert::before {
  content: '◇';
  color: #b87900;
  font-size: 1.45rem;
}

.help-operation-options button {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 6px 14px;
  min-height: 78px;
  padding: 14px;
  text-align: left;
}

.help-operation-options button > span {
  grid-row: 1 / span 2;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border: 2px solid #c8d4e4;
  border-radius: 999px;
}

.help-operation-options strong,
.help-operation-options small,
.help-operation-options em {
  display: block;
}

.help-operation-options small {
  color: #4d5f78;
  font-weight: 750;
}

.help-operation-options em {
  grid-column: 2;
  width: fit-content;
  margin-top: 4px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef4ff;
  color: #155acb;
  font-size: .78rem;
  font-style: normal;
  font-weight: 1000;
}

.help-operation-options button.is-selected {
  border-color: #e2a83a;
  background: linear-gradient(145deg, #fff9ec, #fff);
}

.help-operation-options button.is-selected > span {
  border-color: #e2a83a;
  background: radial-gradient(circle, #e2a83a 42%, transparent 48%);
}

.help-operation-options button[data-flow-choice="operation-ondax"] {
  border-color: rgba(226, 168, 58, .74);
}

.help-operation-options button[data-flow-choice="operation-ondax"] em {
  background: #fff1ce;
  color: #9d6500;
}

.help-contract {
  width: 100%;
  min-height: 58px;
  margin-top: 16px;
  border: 0;
  background: linear-gradient(135deg, #e6a011, #c27b00);
  color: #fff;
  font-size: 1.08rem;
  box-shadow: 0 18px 36px rgba(194, 123, 0, .22);
}

.help-contract:disabled {
  cursor: not-allowed;
  opacity: .48;
  box-shadow: none;
}

.help-flow-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid #d9e2ee;
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 44px rgba(6, 24, 47, .06);
}

.help-flow-benefits article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 4px 16px;
  align-items: center;
  padding: 10px 22px;
  border-right: 1px solid #d9e2ee;
}

.help-flow-benefits article:last-child {
  border-right: 0;
}

.help-flow-benefits span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #fff8e8;
  color: #b87900;
  font-size: 1.45rem;
  font-weight: 1000;
}

.help-flow-benefits strong {
  color: #17233b;
  font-size: 1.04rem;
}

.help-flow-benefits p {
  margin: 0;
  color: #56667d;
  font-size: .94rem;
  line-height: 1.35;
}

@keyframes helpCardIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.final-cta {
  padding: clamp(52px, 7vw, 78px) 0;
  background:
    radial-gradient(circle at 90% 35%, rgba(21, 90, 203, .25), transparent 30%),
    linear-gradient(145deg, var(--ondax-navy-950), var(--ondax-navy-900));
  color: #fff;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.final-grid p {
  max-width: 720px;
  color: rgba(255, 255, 255, .82);
}

.final-actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  padding: 42px 0;
  background: #030f20;
  color: rgba(255, 255, 255, .76);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) 1fr 1fr;
  gap: 32px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

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

.mobile-sticky-actions {
  display: none;
}

.modal {
  width: min(940px, calc(100vw - 32px));
  max-height: min(calc(100dvh - 32px), 920px);
  border: 0;
  border-radius: 20px;
  padding: 0;
  overflow: visible;
  background: transparent;
  color: var(--ondax-text);
}

.modal::backdrop {
  background: rgba(3, 15, 32, .74);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: min(calc(100dvh - 32px), 920px);
  overflow: hidden;
  border: 1px solid var(--ondax-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ondax-border);
  border-radius: 999px;
  background: #fff;
  color: var(--ondax-text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.modal-header {
  padding: 28px 34px 16px;
  text-align: center;
}

.modal-kicker {
  color: var(--ondax-navy-800);
  letter-spacing: .02em;
  text-transform: none;
}

.modal-kicker.red {
  color: var(--ondax-red-dark);
}

.modal-header h2 {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  line-height: 1.14;
  letter-spacing: -.035em;
}

.progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 520px;
  margin: 22px auto 0;
  color: #8a9bb3;
}

.progress span {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  justify-self: center;
  border: 1px solid #c9d5e4;
  border-radius: 999px;
  background: #fff;
  font-weight: 950;
}

.progress span::after {
  content: "";
  position: absolute;
  left: calc(100% + 6px);
  top: 50%;
  width: calc(100% + 58px);
  height: 2px;
  transform: translateY(-50%);
  background: #dce5ef;
}

.progress span:last-child::after {
  display: none;
}

.progress span.is-active,
.progress span.is-done {
  border-color: var(--ondax-gold);
  background: var(--ondax-gold);
  color: var(--ondax-navy-950);
}

.progress span.is-done::after {
  background: var(--ondax-gold);
}

.wizard-step {
  display: none;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 10px 34px 26px;
}

.wizard-step.is-active {
  display: block;
}

.wizard-step h3 {
  margin: 0 0 8px;
  font-size: 1.42rem;
}

.wizard-step > p {
  margin: 0 0 18px;
  color: var(--ondax-muted);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.choice-card {
  display: grid;
  min-height: 178px;
  gap: 10px;
  align-content: start;
  border: 1px solid #cdd9e8;
  border-radius: 16px;
  padding: 22px;
  cursor: pointer;
  background: #fff;
}

.choice-card:has(input:checked) {
  border-color: var(--ondax-green);
  background: var(--ondax-green-soft);
  box-shadow: 0 18px 34px rgba(21, 148, 71, .12);
}

.choice-card input {
  position: absolute;
  opacity: 0;
}

.choice-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--ondax-navy-950);
  color: #fff;
  font-weight: 950;
  font-size: 1.6rem;
}

.choice-icon.gold {
  background: var(--ondax-gold);
  color: var(--ondax-navy-950);
}

.choice-card strong {
  font-size: 1.22rem;
  line-height: 1.15;
}

.choice-card span:not(.choice-icon) {
  color: var(--ondax-muted);
}

.choice-card em {
  color: var(--ondax-gold-dark);
  font-style: normal;
  font-weight: 950;
}

.cnpj-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin-top: 18px;
}

.cnpj-box label,
.form-grid label,
.urgent-modal label:not(.consent):not(.order-bump),
.ebook-modal label:not(.consent):not(.order-bump) {
  display: grid;
  gap: 7px;
  font-weight: 850;
}

.cnpj-box label span,
.form-grid label span,
.urgent-modal label span,
.ebook-modal label span {
  color: var(--ondax-text);
  font-size: .9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bfd0e4;
  border-radius: 11px;
  background: #fff;
  color: var(--ondax-text);
  padding: 12px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ondax-blue);
  box-shadow: 0 0 0 4px rgba(21, 90, 203, .12);
}

.lookup-status {
  grid-column: 1 / -1;
  min-height: 22px;
  color: var(--ondax-muted);
  font-weight: 800;
}

.lookup-status.is-ok {
  color: var(--ondax-green-dark);
}

.lookup-status.is-error {
  color: var(--ondax-red-dark);
}

.lookup-result {
  grid-column: 1 / -1;
  border: 1px solid rgba(21, 148, 71, .32);
  border-radius: 14px;
  background: var(--ondax-green-soft);
  padding: 16px;
}

.lookup-result strong,
.lookup-result span,
.lookup-result p {
  display: block;
}

.lookup-result p {
  margin: 10px 0 0;
  color: var(--ondax-muted);
  font-size: .92rem;
}

.lookup-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.lookup-badges span {
  border-radius: 999px;
  background: #fff;
  padding: 7px 10px;
  color: var(--ondax-green-dark);
  font-weight: 900;
}

.service-options {
  display: grid;
  gap: 10px;
}

.service-options label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  border: 1px solid #cfdae8;
  border-radius: 13px;
  padding: 12px 14px;
  cursor: pointer;
}

.service-options label:has(input:checked) {
  border-color: var(--ondax-gold);
  background: var(--ondax-gold-soft);
}

.service-options label:has(input:disabled) {
  opacity: .55;
  cursor: not-allowed;
}

.service-options input {
  width: 18px;
  height: 18px;
  min-height: auto;
}

.service-options strong {
  color: var(--ondax-gold-dark);
  white-space: nowrap;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.full-row {
  grid-column: 1 / -1;
}

.contract-summary {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.summary-block {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--ondax-border);
  border-radius: 13px;
  background: #f9fbfe;
}

.summary-block h4 {
  margin: 0;
  color: var(--ondax-text);
  font-size: 1rem;
}

.summary-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-block li,
.summary-total {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.summary-block li span,
.summary-disclaimer,
.empty-summary {
  color: var(--ondax-muted);
}

.summary-block li strong,
.summary-total strong {
  color: var(--ondax-text);
  white-space: nowrap;
}

.summary-total {
  margin-top: 4px;
  border-top: 1px solid var(--ondax-border);
  padding-top: 10px;
  color: var(--ondax-text);
  font-weight: 950;
}

.summary-disclaimer,
.empty-summary {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  font-weight: 750;
}

.summary-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--ondax-border);
  border-radius: 13px;
  background: #f9fbfe;
}

.summary-line strong {
  color: var(--ondax-text);
}

.summary-line span {
  color: var(--ondax-muted);
}

.summary-line.total {
  border-color: rgba(233, 169, 27, .55);
  background: var(--ondax-gold-soft);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0;
  color: var(--ondax-muted);
  font-weight: 700;
}

.consent input,
.order-bump input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 3px;
}

.form-status {
  min-height: 24px;
  color: var(--ondax-red-dark);
  font-weight: 900;
}

.form-status.is-ok {
  color: var(--ondax-green-dark);
}

.form-status.is-loading,
.lookup-status.is-loading {
  color: var(--ondax-blue);
}

.modal-footer {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 18px 34px;
  border-top: 1px solid var(--ondax-border);
  background: #fbfdff;
}

.urgent-modal .modal-card,
.ebook-modal .modal-card {
  overflow-y: auto;
}

@media (max-height: 820px) {
  .modal-header {
    padding-top: 22px;
    padding-bottom: 10px;
  }

  .modal-header h2 {
    font-size: clamp(1.45rem, 2.35vw, 1.9rem);
  }

  .progress {
    margin-top: 16px;
  }

  .wizard-step {
    padding-top: 4px;
    padding-bottom: 18px;
  }

  .choice-card {
    min-height: 156px;
    padding: 18px;
  }

  .modal-footer {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.urgent-modal,
.ebook-modal {
  width: min(760px, calc(100vw - 32px));
}

.urgent-options label {
  grid-template-columns: auto 1fr auto;
}

.notice {
  border: 1px solid rgba(233, 169, 27, .45);
  border-radius: 13px;
  background: var(--ondax-gold-soft);
  padding: 13px 15px;
  color: var(--ondax-text);
  font-weight: 800;
}

.checkout-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  margin: 0 34px 18px;
  border: 1px solid var(--ondax-border);
  border-radius: 16px;
  padding: 18px;
  background: #f8fbff;
}

.checkout-box span {
  display: block;
  margin-top: 4px;
  color: var(--ondax-muted);
}

.checkout-box > strong {
  color: var(--ondax-gold-dark);
  font-size: 1.6rem;
}

.order-bump {
  display: flex;
  gap: 12px;
  margin: 0 34px 16px;
  border: 1px solid rgba(233, 169, 27, .5);
  border-radius: 16px;
  background: var(--ondax-gold-soft);
  padding: 16px;
  cursor: pointer;
}

.order-bump small {
  display: block;
  margin-top: 6px;
  color: var(--ondax-muted);
}

.ebook-modal .notice,
.urgent-modal .notice,
.urgent-modal .form-grid,
.urgent-modal .service-options {
  margin-left: 34px;
  margin-right: 34px;
}

.ebook-modal .notice {
  margin-left: 34px;
  margin-right: 34px;
}

@media (max-width: 1440px) {
  .header-shell {
    grid-template-columns: auto auto 1fr;
    gap: 16px;
  }

  .menu-toggle {
    display: grid;
    order: 3;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    inset: 86px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 22px;
    background: rgba(6, 24, 47, .98);
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    grid-column: 2 / 3;
  }

  .header-actions .btn-outline-light {
    display: none;
  }

  .header-actions .btn-red {
    max-width: 360px;
    min-height: 50px;
    white-space: normal;
    line-height: 1.12;
    text-align: center;
    padding-inline: 14px;
  }

  .hero {
    min-height: min(650px, calc(100dvh - 86px));
  }

  .hero-copy {
    width: min(760px, 100%);
  }

  .hero-grid {
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .hero h1 {
    max-width: 790px;
    font-size: clamp(2.35rem, 4.6vw, 4.05rem);
  }

  .hero p {
    max-width: 620px;
    margin-top: 18px;
    font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  }

  .hero-buttons {
    margin-top: 24px;
  }

  .hero-highlights {
    gap: 14px;
    margin-top: 30px;
  }

  .down-link {
    bottom: 10px;
    width: 48px;
    height: 48px;
    font-size: 1.65rem;
  }
}

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .help-flow-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .help-card-start,
  .help-card-opening,
  .help-card-lookup,
  .help-card-habilitation,
  .help-card-operation {
    grid-column: auto;
    grid-row: auto;
  }

  .help-card-start::after,
  .help-card-opening::after,
  .help-card-lookup::after,
  .help-card-habilitation::after {
    display: none;
  }

  .help-flow-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .help-flow-benefits article:nth-child(2) {
    border-right: 0;
  }

  .help-flow-benefits article:nth-child(-n+2) {
    border-bottom: 1px solid #d9e2ee;
  }

  .representation-grid {
    grid-template-columns: 1fr;
  }

  .representation-visual {
    display: none;
  }

  .final-grid {
    grid-template-columns: 1fr;
  }

  .final-actions {
    justify-items: start;
  }
}

@media (max-width: 860px) {
  .section-shell,
  .header-shell {
    width: min(calc(100% - 28px), 720px);
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
    min-height: 74px;
  }

  .brand img {
    width: 142px;
  }

  .brand {
    min-width: 142px;
  }

  .main-nav {
    inset: 74px 14px auto;
  }

  .header-actions {
    justify-self: end;
    grid-column: 2 / 3;
  }

  .header-actions .btn-gold {
    display: none;
  }

  .header-actions .btn-red {
    min-height: 40px;
    max-width: 174px;
    font-size: .78rem;
    padding: 8px 10px;
  }

  .menu-toggle {
    grid-column: 3 / 4;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(6, 24, 47, .95), rgba(6, 24, 47, .74)),
      url('/landing-assets/ciudad-del-este-hero.png') center / cover no-repeat;
  }

  .hero-grid {
    padding: 58px 0 74px;
  }

  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-highlights li:nth-child(2) {
    border-right: 0;
  }

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

  .help-flow-board,
  .help-flow-benefits {
    grid-template-columns: 1fr;
  }

  .help-flow-section {
    padding: 44px 0;
  }

  .help-flow-heading {
    margin-bottom: 20px;
    text-align: left;
  }

  .help-flow-heading h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .help-card {
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .help-step {
    left: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
  }

  .help-card h3 {
    padding-left: 56px;
  }

  .help-cnpj-row,
  .help-action-row {
    grid-template-columns: 1fr;
  }

  .help-flow-benefits {
    padding: 4px 18px;
  }

  .help-flow-benefits article,
  .help-flow-benefits article:nth-child(2),
  .help-flow-benefits article:nth-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid #d9e2ee;
  }

  .help-flow-benefits article:last-child {
    border-bottom: 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card.is-expanded {
    grid-column: 1 / -1;
    display: flex;
    text-align: inherit;
    max-height: calc(100dvh - 104px);
  }

  .service-card.is-expanded .expand-panel {
    border-left: 0;
    padding-left: 0;
    margin-top: 18px;
  }

  .service-card.is-expanded .expand-panel .check-list {
    columns: 1;
  }

  .ebook-cover {
    display: none;
  }

  .modal {
    width: 100vw;
    max-height: 100vh;
  }

  .modal-card {
    min-height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .modal-header,
  .wizard-step,
  .modal-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .modal-footer {
    position: sticky;
    bottom: 0;
  }

  .cnpj-box {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .progress span::after {
    width: calc(100% + 22px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .final-actions {
    width: 100%;
    justify-items: stretch;
  }

  .final-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 88px;
  }

  body {
    padding-bottom: 74px;
  }

  .site-header {
    position: sticky;
  }

  .header-shell {
    gap: 10px;
  }

  .header-actions .btn-red {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    inset: 74px 0 auto 0;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .hero-buttons {
    display: none;
  }

  .hero-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .hero-highlights li {
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    padding: 14px 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .ebook-card,
  .representation-benefits {
    padding: 20px;
  }

  .representation-price {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .two-columns {
    columns: 1;
  }

  .modal-header h2 {
    font-size: 1.45rem;
  }

  .modal-close {
    top: 12px;
    right: 12px;
  }

  .service-options label {
    grid-template-columns: auto 1fr;
  }

  .service-options strong {
    grid-column: 2 / 3;
  }

  .checkout-box {
    grid-template-columns: 1fr;
  }

  .checkout-box,
  .order-bump,
  .ebook-modal .notice,
  .urgent-modal .notice,
  .urgent-modal .form-grid,
  .urgent-modal .service-options {
    margin-left: 18px;
    margin-right: 18px;
  }

  .mobile-sticky-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .94);
    border-top: 1px solid var(--ondax-border);
    box-shadow: 0 -12px 26px rgba(6, 24, 47, .12);
    backdrop-filter: blur(12px);
  }

  .mobile-sticky-actions button {
    min-height: 44px;
    border: 0;
    border-radius: 12px;
    font-weight: 950;
    cursor: pointer;
  }

  .mobile-sticky-actions button:first-child {
    background: var(--ondax-gold);
    color: var(--ondax-navy-950);
  }

  .mobile-sticky-actions button:last-child {
    background: var(--ondax-red);
    color: #fff;
  }

  body:has(.service-card.is-expanded) .mobile-sticky-actions {
    display: none;
  }
}

@media (max-width: 440px) {
  .section-shell,
  .header-shell {
    width: min(calc(100% - 22px), 420px);
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .down-link {
    display: none;
  }

  .summary-line {
    grid-template-columns: 1fr;
  }

  .modal-footer {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
