/* ===== Reset & Variables ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-primary: #294a99;
  --blue-action: #0d11ff;
  --purple: #6f0ee5;
  --dark: #0e1933;
  --black: #000;
  --white: #fff;
  --gray-text: #454545;
  --gray-muted: #828282;
  --gray-light: #e6e6e6;
  --lavender-bg: rgba(199, 200, 254, 0.16);
  --lavender-border: rgba(41, 74, 153, 0.24);
  --container: 1172px;
  --layout-max: 1440px;
  --layout-gutter: 113px;
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 15px;
  --radius-xl: 19px;
  --radius-2xl: 20px;
  --radius-pill: 200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Alinhamento horizontal idêntico entre hero e problem */
.hero__content.container,
.problem__content.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  box-sizing: border-box;
}

/* ===== Utilities ===== */
.rainbow-line {
  display: block;
  width: 63px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #00d4ff, #0d11ff, #6f0ee5, #ff00c8);
  margin-bottom: 12px;
}

.section-label {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.section-label p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--blue-primary);
}

.section-label--light p {
  color: var(--white);
}

.section-label--light .rainbow-line {
  background: linear-gradient(90deg, #00d4ff, #0d11ff, #6f0ee5, #ff00c8);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn--primary {
  background: var(--blue-action);
  color: var(--white);
}

.btn--sm {
  font-size: 14px;
  padding: 10px 24px;
  height: 38px;
}

.btn--lg {
  font-size: 20px;
  padding: 14px 40px;
  height: 48px;
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  font-size: 20px;
  padding: 10px 36px;
  height: auto;
}

.btn--outline {
  background: var(--white);
  color: var(--blue-primary);
  border: 1px solid var(--blue-primary);
  font-size: 16px;
  width: 100%;
  height: 35px;
}

.btn--full {
  width: 100%;
  height: 35px;
  font-size: 16px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 759px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg picture,
.hero__bg-image {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg-image {
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5) 11%,
    rgba(41, 74, 153, 0.5) 56%,
    rgba(41, 74, 153, 0.25) 95%
  );
}

/* ===== Navbar ===== */
.hero__navbar {
  position: relative;
  z-index: 100;
  flex-shrink: 0;
  height: 182px;
  background: rgba(12, 28, 68, 0.5);
  transition: height 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.hero__navbar.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(12, 28, 68, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.hero__navbar-placeholder {
  display: none;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 113px 24px;
  transition: padding 0.35s ease;
}

.hero__navbar.is-scrolled .nav {
  align-items: center;
  padding: 0 113px;
}

.nav__logo img {
  height: 38px;
  width: auto;
  transition: height 0.35s ease;
}

.hero__navbar.is-scrolled .nav__logo img {
  height: 28px;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-light);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--white);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero Content ===== */
.hero__content {
  position: relative;
  z-index: 10;
  flex: 1;
  align-self: center;
  display: grid;
  grid-template-columns: 1fr 393px;
  gap: 48px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 64px;
}

.hero__text h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 43px;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 587px;
}

.hero__text h1 strong {
  font-weight: 800;
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 575px;
}

.hero__subtitle strong {
  font-weight: 900;
}

.section-label--light p {
  font-size: 15px;
  margin-bottom: 24px;
}

.section-label--light p strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* ===== Contact Form ===== */
.contact-form {
  border-radius: var(--radius-xl);
  padding: 28px 32px;
}

.contact-form--dark {
  background: rgba(5, 16, 41, 0.54);
  border: 0.6px solid rgba(16, 11, 35, 0.48);
}

.contact-form--light {
  background: rgba(41, 74, 153, 0.13);
  border: 1px solid rgba(41, 74, 153, 0.22);
}

.contact-form h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form--dark h2 {
  color: var(--white);
}

.contact-form__note {
  font-size: 10px;
  margin-bottom: 24px;
}

.contact-form--dark .contact-form__note {
  color: rgba(239, 242, 248, 0.75);
}

.contact-form--light .contact-form__note {
  color: var(--blue-primary);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-form--dark .form-group label {
  color: #eff2f8;
}

.contact-form--light .form-group label {
  color: var(--blue-primary);
}

.form-group input {
  width: 100%;
  height: 35px;
  border-radius: var(--radius-sm);
  padding: 0 12px;
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  outline: none;
}

.contact-form--dark .form-group input {
  background: rgba(41, 74, 153, 0.6);
  border: 1px solid var(--blue-primary);
  color: var(--white);
}

.contact-form--dark .form-group input::placeholder {
  color: rgba(239, 242, 248, 0.65);
}

.contact-form--light .form-group input {
  background: rgba(41, 74, 153, 0.13);
  border: 0.5px solid rgba(41, 74, 153, 0.16);
  color: var(--blue-primary);
}

.contact-form--light .form-group input::placeholder {
  color: rgba(41, 74, 153, 0.6);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10px;
  line-height: 1.4;
  margin-bottom: 12px;
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--blue-action);
}

.contact-form--dark .form-checkbox {
  color: rgba(239, 242, 248, 0.75);
}

.contact-form--light .form-checkbox {
  color: rgba(41, 74, 153, 0.75);
}

.form-feedback {
  font-size: 11px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.form-feedback--error {
  color: #c0392b;
}

.form-feedback--success {
  color: #1e7e34;
}

.contact-form--dark .form-feedback--success {
  color: #8fe8a8;
}

.contact-form--dark .form-feedback--error {
  color: #ff8a8a;
}

.lead-form [type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== Stats ===== */
.stats {
  background: var(--blue-primary);
  border-radius: 24px;
  padding: 20px 48px 36px;
  margin-top: 38px;
  margin-bottom: 0;
}

.stats__label {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 32px;
  padding-left: 2px;
}

.stats__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.stats__item {
  flex: 1;
  display: flex;
  justify-content: center;
}

.stats__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stats__number-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stats__number {
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -3.2px;
  line-height: 1;
}

.stats__icon {
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 12px;
}

.stats__icon--1 {
  width: 41px;
  height: 41px;
}

.stats__icon--2 {
  height: 33px;
}

.stats__icon--3 {
  height: 33px;
}

.stats__suffix {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0px;
  line-height: 1;
}

.stats__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  line-height: 1.25;
  max-width: 220px;
}

/* ===== Problem ===== */
.problem {
  padding: 80px 0;
}

.problem__content {
  display: grid;
  grid-template-columns: 1fr 215px;
  gap: 48px;
  align-items: center;
}

.problem__text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 24px;
}

.problem__text h2 strong {
  font-weight: 800;
}

.problem__text p {
  font-size: 15px;
  line-height: 28px;
  max-width: 682px;
}

.problem__image {
  display: flex;
  justify-content: center;
}

.problem__video {
  width: 215px;
  height: 383px;
  border-radius: var(--radius-2xl);
  object-fit: cover;
  display: block;
  background: #d9d9d9;
}

/* ===== Features ===== */
.features {
  background: rgba(199, 200, 254, 0.13);
  padding: 80px 0;
}

.features h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 16px;
}

.features__intro {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 40px;
  max-width: 735px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--lavender-bg);
  border: 1.5px solid var(--lavender-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.feature-card__icon {
  width: 20px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  font-weight: 500;
  line-height: 23px;
  color: var(--gray-text);
}

/* ===== Steps ===== */
.steps {
  padding: 80px 0;
}

.steps h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 8px;
}

.steps h2 strong {
  font-weight: 800;
}

.steps__subtitle {
  font-size: 18px;
  margin-bottom: 48px;
}

.steps__subtitle strong {
  font-weight: 600;
}

.steps__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 145px minmax(180px, 320px) 1fr;
  gap: 16px 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(41, 74, 153, 0.15);
  align-items: start;
  cursor: pointer;
  transition: background 0.25s ease;
}

.step__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  padding: 4px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #b3bdda;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  flex-shrink: 0;
}

.step__tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--blue-primary);
  line-height: 1.3;
  max-width: 82px;
  transition: color 0.25s ease;
}

.step__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  align-self: center;
  color: var(--black);
  transition: color 0.25s ease;
}

.step__body p {
  font-size: 15px;
  line-height: 1.5;
  max-width: 534px;
}

.step__detail {
  font-size: 12px;
  color: var(--gray-muted);
  margin-top: 12px;
  max-width: 519px;
  padding-left: 12px;
  border-left: 2px solid var(--blue-action);
}

.step:hover .step__badge,
.step.is-active .step__badge,
.step:focus-visible .step__badge {
  background: linear-gradient(90deg, var(--blue-primary), var(--purple));
  border-color: rgba(13, 17, 255, 0.49);
  padding: 4px 20px 4px 4px;
}

.step:hover .step__tag,
.step.is-active .step__tag,
.step:focus-visible .step__tag {
  color: var(--white);
}

.step:hover .step__title,
.step.is-active .step__title,
.step:focus-visible .step__title {
  color: var(--blue-primary);
}

.step:focus-visible {
  outline: none;
}

/* ===== CTA Banner ===== */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: rgba(199, 200, 254, 0.16);
  border-radius: var(--radius-2xl);
  padding: 40px 48px;
  margin-top: 48px;
}

.cta-banner__text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 12px;
}

.cta-banner__text p {
  font-size: 18px;
  line-height: 1.4;
  max-width: 399px;
}

.cta-banner .btn--dark {
  flex-shrink: 0;
  min-width: 346px;
}

/* ===== Segments ===== */
.segments {
  background: linear-gradient(-89deg, var(--blue-primary) 6%, var(--dark) 114%);
  padding: 80px 0;
}

.segments h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 45px;
  color: var(--white);
  margin-bottom: 48px;
  max-width: 516px;
}

.segments h2 strong {
  font-weight: 800;
}

.segments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.segment-card {
  background: var(--lavender-bg);
  border: 1px solid var(--lavender-bg);
  border-radius: var(--radius-2xl);
  padding: 28px 24px;
}

.segment-card__icon {
  width: 21px;
  margin-bottom: 12px;
}

.segment-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.segment-card p {
  font-size: 12px;
  line-height: 25px;
  color: var(--white);
}

/* ===== Compliance ===== */
.compliance {
  background: var(--lavender-bg);
  padding: 80px 0;
}

.compliance h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 45px;
  margin-bottom: 16px;
}

.compliance h2 strong {
  font-weight: 800;
}

.compliance__intro {
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 48px;
  max-width: 703px;
}

.compliance__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cert-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 169px;
}

.cert-card img {
  height: 65px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.cert-card h4 {
  font-size: 14px;
  font-weight: 600;
}

.cert-card p {
  font-size: 13px;
  color: var(--gray-muted);
  line-height: 1.4;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
}

.faq h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 45px;
  margin-bottom: 32px;
}

.faq__list {
  max-width: 900px;
}

.faq__item {
  border-bottom: 1px solid var(--gray-light);
}

.faq__item summary {
  font-size: 15px;
  font-weight: 700;
  padding: 20px 40px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: #c7c8fe47;
  color: #294a99;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

.faq__item[open] summary::after {
  content: '−';
}

.faq__item:first-child summary {
  font-size: 18px;
  font-weight: 500;
}

.faq__item p {
  font-size: 15px;
  line-height: 28px;
  padding-bottom: 24px;
  max-width: 840px;
}

/* ===== Contact Section ===== */
.contact {
  background: rgba(230, 230, 230, 0.54);
  padding: 80px 0;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 393px;
  gap: 48px;
  align-items: start;
}

.contact__info h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 16px;
}

.contact__info > p {
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 32px;
  max-width: 482px;
}

.contact__benefits {
  list-style: disc;
  padding-left: 22px;
}

.contact__benefits li {
  font-size: 15px;
  line-height: 45px;
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  padding: 64px 0;
  color: var(--white);
}

.footer__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

.footer__logo {
  height: 41px;
  width: auto;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  max-width: 305px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer__links h4 {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer__links ul li {
  margin-bottom: 4px;
}

.footer__links ul a {
  font-size: 11px;
  font-weight: 500;
  line-height: 20px;
  transition: opacity 0.2s;
}

.footer__links ul a:hover {
  opacity: 0.7;
}

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

.footer__social img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.footer__social a:last-child img {
  width: 34px;
  height: 34px;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .hero__content,
  .problem__content {
    grid-template-columns: 1fr;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .stats__grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 48px;
  }

  .stats__item {
    flex: 0 1 calc(50% - 24px);
  }

  .segments__grid,
  .compliance__logos {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .problem__image {
    justify-content: flex-start;
  }

  .problem__video {
    width: 100%;
    max-width: 215px;
    height: auto;
    aspect-ratio: 215 / 383;
  }
}

@media (max-width: 768px) {
  .hero__navbar {
    height: auto;
    min-height: 80px;
  }

  .hero__navbar.is-scrolled {
    height: 64px;
    min-height: 64px;
  }

  .nav {
    align-items: center;
    padding: 16px 24px;
  }

  .hero__navbar.is-scrolled .nav {
    padding: 0 24px;
    height: 64px;
  }

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 102;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 101;
    background: rgba(12, 28, 68, 0.98);
    padding: 96px 24px 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav__menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__menu .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav__menu .nav__links a {
    display: block;
    width: 100%;
    padding: 18px 0;
    font-size: 18px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav__menu .nav__links a:hover {
    color: var(--gray-light);
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    width: 100%;
    padding-top: 48px;
    padding-bottom: 56px;
    min-height: calc(100svh - 80px);
  }

  .hero__text {
    width: 100%;
  }

  .hero__text > .btn {
    display: none;
  }

  .contact-form--dark {
    display: none;
  }

  .hero__text h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .stats {
    margin-top: 0;
    border-radius: 0;
  }

  .stats__item {
    flex: 1 1 100%;
  }

  .stats__number {
    font-size: 48px;
    letter-spacing: -2.4px;
  }

  .stats__suffix {
    font-size: 20px;
  }

  .stats__icon {
    margin-right: 10px;
  }

  .stats__icon--1 {
    width: 34px;
    height: 34px;
  }

  .stats__icon--2,
  .stats__icon--3 {
    height: 33px;
  }

  .features__grid,
  .segments__grid,
  .compliance__logos {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0;
  }

  .step__badge {
    align-self: flex-start;
  }

  .step__title {
    align-self: flex-start;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
    padding: 32px 24px;
  }

  .btn--dark {
    padding: 10px 20px;
  }

  .cta-banner .btn--dark {
    min-width: 0;
    width: 100%;
  }

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

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

  .problem__image {
    justify-content: center;
  }

  .problem__video {
    width: 100%;
    max-width: 100%;
  }
}

/* ===== Floating actions ===== */
.floating-whatsapp,
.floating-top {
  border: none;
  cursor: pointer;
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.3s ease;
}

.floating-whatsapp:hover,
.floating-top:hover {
  transform: scale(1.1);
}

.floating-whatsapp:active,
.floating-top:active {
  transform: scale(0.95);
}

.floating-whatsapp {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 64;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
}

.floating-whatsapp svg {
  width: 1.75rem;
  height: 1.75rem;
}

.floating-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 65;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border-radius: 50%;
  background: var(--blue-action);
}

.floating-top:hover {
  background: #063cff;
}

.floating-top svg {
  width: 1.5rem;
  height: 1.5rem;
}

.floating-cta {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 60;
  display: block;
  padding: 0.75rem 1.5rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  border-radius: 12px;
  background: var(--blue-action);
  box-shadow: 0 10px 30px rgba(13, 17, 255, 0.35);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    background-color 0.2s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cta:hover {
  background: #063cff;
}

.floating-cta.is-offset {
  right: 5.5rem;
}

@media (min-width: 768px) {
  .floating-whatsapp,
  .floating-cta {
    display: none !important;
  }

  .floating-top {
    bottom: 2rem;
    right: 2rem;
  }
}
