:root {
  --color-1: #05b0ff;
  --color-2: #21b9c4;
  --color-3: #f08a24;
  --color-4: #ea5c10;
  --color-5: #397fe3;

  --navy-950: #0a2d47;
  --navy-900: #0f3d5f;
  --navy-800: #164c73;
  --blue-100: #eaf9ff;
  --blue-200: #d8f5ff;
  --blue-300: #bfeeff;
  --blue-500: var(--color-5);
  --green-600: var(--color-2);
  --green-700: #1a9ca1;
  --orange-500: var(--color-3);
  --orange-600: #c7650d;
  --slate-100: #f4f9fc;
  --slate-200: #ebf4fa;
  --slate-300: #dbeaf3;
  --slate-500: #59758d;
  --slate-800: #1f3a4d;
  --surface: #ffffff;
  --surface-muted: #f8fbfd;
  --line: rgba(11, 61, 92, 0.1);
  --dark-surface: #0d1f2a;
  --hero-start: #0d3855;
  --hero-mid: #145c8b;
  --hero-end: #0f6f9e;
  --white: #ffffff;
  --shadow-soft: 0 18px 42px rgba(8, 29, 48, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 32px));

  /* Curva com leve "overshoot", usada em hovers e revelações — mais viva que um ease padrão */
  --ease-spring: linear(0, 0.14 4%, 0.94 17%, 1.15 24% 30%, 1.02 43%, 0.98 51%, 1 77%, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(5, 176, 255, 0.08), transparent 30%),
    var(--page-bg);
  color: var(--slate-800);
  line-height: 1.6;
}

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

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

:focus-visible {
  outline: 3px solid rgba(5, 176, 255, 0.4);
  outline-offset: 3px;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.container > *,
.hero-copy,
.hero-media,
.process-grid,
.final-inner,
.footer-grid {
  min-width: 0;
}

.site-header {
  background: rgba(7, 45, 66, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

main > section:not(.hero),
.final-cta,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 520px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: var(--white);
}

.site-header .brand {
  position: relative;
  isolation: isolate;
  min-height: 50px;
  padding: 3px 9px;
  min-width: 0;
}

.site-header .brand::before {
  display: none;
}

.brand-logo {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 170px;
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--color-1), var(--color-5));
  color: var(--white);
  font-size: 1rem;
}

.brand-text {
  font-size: 1.15rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  background: rgba(7, 45, 66, 0.99);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 0 22px;
  color: var(--white);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.mobile-menu-inner a:hover,
.mobile-menu-inner a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.mobile-menu-inner a:nth-last-child(2),
.mobile-menu-inner a:last-child {
  justify-content: center;
  margin-top: 4px;
  font-weight: 700;
}

.mobile-menu-inner a:nth-last-child(2) {
  background: var(--green-600);
}

.mobile-menu-inner a:last-child {
  background: var(--orange-500);
  color: var(--navy-950);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.25s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.12s;
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(199, 101, 13, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 16px 28px rgba(199, 101, 13, 0.34);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--color-1), var(--color-5));
  border-color: var(--color-5);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(57, 127, 227, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--navy-800);
  box-shadow: 0 14px 26px rgba(57, 127, 227, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy-900);
}

.btn-secondary.btn-light {
  background: linear-gradient(135deg, var(--color-1), var(--color-5));
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.hero {
  background: linear-gradient(120deg, var(--hero-start) 0%, var(--hero-mid) 50%, var(--hero-end) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 52px 0 52px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow.white {
  background: rgba(255, 255, 255, 0.12);
}

.hero-copy h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 18px 0 0;
  max-width: 620px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  text-wrap: pretty;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-features li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
}

.hero-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange-500);
  font-weight: 800;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.helper-text {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  isolation: isolate;
  padding: 28px;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(78%, 470px);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotate(4deg);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.8s var(--ease-spring);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* A entrada do herói é o único momento orquestrado da página: o texto chega
   primeiro, a imagem completa a cena logo em seguida. */
.hero-media[data-reveal] {
  transition-delay: 0.12s;
}

[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.7s var(--ease-spring);
}

[data-reveal-group].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-group].is-visible > *:nth-child(2) { transition-delay: 0.08s; }
[data-reveal-group].is-visible > *:nth-child(3) { transition-delay: 0.16s; }
[data-reveal-group].is-visible > *:nth-child(4) { transition-delay: 0.24s; }

.section-intro {
  max-width: 640px;
  margin: 12px auto 0;
  color: var(--slate-500);
}

.trust-section,
.problems-section,
.media-section,
.brands-section,
.process-section,
.coverage-section,
.faq-section {
  padding: 70px 0;
}

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

.info-card,
.reason-card,
.brand-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  box-shadow: 0 12px 24px rgba(18, 42, 58, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover,
.reason-card:hover,
.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(18, 42, 58, 0.07);
}

.info-card,
.reason-card,
.brand-card,
.problem-item,
.machine-card {
  transition: transform 0.4s var(--ease-spring), box-shadow 0.3s ease, border-color 0.3s ease;
}

.icon-wrap {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(5, 176, 255, 0.14), rgba(33, 185, 196, 0.14));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 14px;
  margin-bottom: 18px;
}

.icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: var(--navy-900);
  transition: transform 0.5s var(--ease-spring);
}

.info-card:hover .icon-wrap svg {
  transform: rotate(-12deg) scale(1.08);
}

.info-card h3,
.reason-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.info-card p,
.reason-card p,
.brand-card p {
  margin: 0;
  color: var(--slate-500);
}

.section-header {
  text-align: center;
  margin-bottom: 28px;
}

.section-header.left-align {
  text-align: left;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
  color: var(--navy-900);
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--orange-500);
  box-shadow: 14px 0 0 -1px rgba(240, 138, 36, 0.25);
}

.section-header.left-align h2::after {
  margin-left: 0;
}

.section-header.narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.problem-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 64, 85, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-weight: 500;
  transition: border-color 0.3s ease, transform 0.4s var(--ease-spring);
}

.problem-item:hover {
  border-color: rgba(245, 158, 11, 0.55);
  transform: translateY(-2px);
}

.problem-item::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--color-2);
  align-self: flex-start;
  margin-top: 2px;
}

.problem-item strong,
.problem-item span {
  display: block;
}

.problem-item strong {
  margin-bottom: 4px;
}

.problem-item span {
  font-size: 0.92rem;
  color: var(--slate-500);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid rgba(11, 61, 92, 0.08);
  border-left: 3px solid var(--orange-500);
  border-radius: var(--radius-md);
}

.cta-inline p {
  margin: 0;
  max-width: 620px;
  color: var(--slate-500);
}

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

.media-section {
  background: var(--white);
}

.media-section .section-header > p:last-child {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--slate-500);
}

.media-block {
  margin-top: 34px;
}

.media-block-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.media-block-heading h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.3rem;
}

.media-block-heading span {
  color: var(--slate-500);
  font-size: 0.9rem;
}

.machine-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(0, 1.95fr);
  gap: 18px;
}

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

.machine-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 61, 92, 0.1);
  border-radius: var(--radius-md);
  background: var(--slate-100);
}

.machine-card img {
  display: block;
  width: 100%;
  height: 178px;
  object-fit: contain;
  padding: 14px;
  background: linear-gradient(135deg, #f4f9fc, #ffffff);
  transition: transform 0.3s ease;
}

.machine-card-featured {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.machine-card-featured img {
  height: 100%;
  min-height: 370px;
}

.machine-card:hover img {
  transform: scale(1.04);
}

.machine-card figcaption {
  padding: 12px 14px;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 700;
}

.brand-card {
  text-align: center;
}

.brand-note {
  margin: 18px auto 0;
  text-align: center;
  color: var(--slate-500);
  max-width: 760px;
}

.brand-card .brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy-900);
  margin-bottom: 20px;
  border-bottom: 3px solid rgba(245, 158, 11, 0.65);
  padding: 0 14px 8px;
}

.brand-card .brand-image {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(245, 158, 11, 0.45);
  padding: 8px;
  transition: transform 0.25s ease;
}

.brand-image {
  font-family: Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-icon-electrolux {
  background: #e9eef7;
  border-color: #aebbd2 !important;
  color: #1e365f;
}

.brand-icon-consul {
  background: #e5f6ee;
  border-color: #8bceb0 !important;
  color: #167447;
}

.brand-icon-brastemp {
  background: #fff2d8;
  border-color: #e3b85b !important;
  color: #9b5a05;
}

.brand-card:hover .brand-image {
  transform: scale(1.04);
}

.brand-name {
  display: block;
  margin: -8px 0 16px;
  color: var(--navy-900);
  font-size: 1.15rem;
}

.brand-electrolux {
  background: linear-gradient(135deg, rgba(15, 36, 70, 0.08), transparent);
}

.brand-consul {
  background: linear-gradient(135deg, rgba(30, 167, 109, 0.08), transparent);
}

.brand-brastemp {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), transparent);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
  justify-content: center;
}

.process-steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.process-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(11, 61, 92, 0.08);
  border-radius: 16px;
  padding: 18px 18px;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s ease;
}

.process-steps li:hover {
  border-color: rgba(5, 176, 255, 0.3);
  transform: translateX(4px);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--color-1), var(--color-5));
  border: 1px solid var(--navy-800);
  color: var(--white);
  font-weight: 800;
}

.process-steps h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.process-steps p {
  margin: 0;
  color: var(--slate-500);
}

.process-cta {
  margin-top: 24px;
}

.process-image {
  align-self: center;
}

.process-image img {
  width: 100%;
  max-width: 1024px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process-image img:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(8, 29, 48, 0.16);
}

.coverage-section {
  background: #f8fbfd;
}

.city-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
}

.city-list li {
  background: var(--white);
  border: 1px solid rgba(11, 61, 92, 0.08);
  padding: 16px 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: var(--navy-900);
  transition: border-color 0.3s ease, transform 0.4s var(--ease-spring);
}

.city-list li:hover {
  border-color: rgba(245, 158, 11, 0.65);
  transform: translateY(-2px);
}

.coverage-note {
  margin: 24px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--slate-500);
}

.coverage-cta {
  margin-top: 22px;
  text-align: center;
}

.map-link {
  display: inline-block;
  margin: 14px 0 0 14px;
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--orange-500);
  text-underline-offset: 4px;
}

.faq-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.faq-list details {
  align-self: start;
  background: var(--white);
  border: 1px solid rgba(11, 61, 92, 0.1);
  border-radius: var(--radius-sm);
  padding: 0 20px;
  box-shadow: 0 8px 20px rgba(18, 42, 58, 0.035);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-list details:hover {
  border-color: rgba(5, 176, 255, 0.26);
  box-shadow: 0 14px 26px rgba(18, 42, 58, 0.07);
  transform: translateY(-2px);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 19px 42px 19px 0;
  font-weight: 600;
  color: var(--navy-900);
  position: relative;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.faq-list summary::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 10px 2px 0;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center;
  font-size: 1.5rem;
  color: var(--navy-900);
  transition: transform 0.4s var(--ease-spring);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details[open] summary {
  color: var(--color-5);
}

.faq-list p {
  margin: 0 0 20px;
  padding: 15px 16px;
  border-left: 3px solid var(--color-2);
  border-radius: 0 10px 10px 0;
  background: var(--slate-100);
  color: var(--slate-500);
  font-size: 0.94rem;
}

/* Onde há suporte, a resposta abre com uma transição de altura em vez de aparecer
   de forma abrupta. Sem suporte, o <details> nativo continua funcionando normalmente. */
@supports (interpolate-size: allow-keywords) {
  .faq-list details {
    interpolate-size: allow-keywords;
  }

  .faq-list details > p {
    display: block;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 0.35s var(--ease-spring), opacity 0.25s ease;
  }

  .faq-list details[open] > p {
    height: auto;
    opacity: 1;
  }
}

.final-cta {
  background: linear-gradient(135deg, var(--navy-900) 0%, #0d1d35 100%);
  color: var(--white);
  padding: 64px 0;
}

.contact-form-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(5, 176, 255, 0.1), transparent 28%),
    linear-gradient(135deg, var(--surface-muted) 0%, #eaf6fa 100%);
  padding: 82px 0;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(33, 185, 196, 0.2);
  border-radius: 50%;
}

.contact-form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 56px;
  align-items: center;
}

.contact-form-copy h2 {
  max-width: 540px;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.08;
}

.contact-form-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--slate-500);
}

.contact-form-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--navy-900);
  font-weight: 700;
}

.contact-form-copy li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green-700);
}

.contact-form-copy li {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.final-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px 28px;
  align-items: center;
}

.final-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.final-copy {
  max-width: 600px;
}

.final-copy .eyebrow {
  margin-bottom: 14px;
}

.final-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.final-actions .btn {
  min-height: 54px;
}

.final-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.final-meta span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 8px 1px 0;
  border-radius: 50%;
  background: var(--orange-500);
}

.site-footer {
  background: var(--dark-surface);
  color: rgba(255, 255, 255, 0.8);
  padding: 52px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-intro > p {
  max-width: 290px;
  margin: 0;
}

.footer-callout {
  display: inline-flex;
  gap: 8px;
  margin-top: 20px;
  color: var(--white) !important;
  font-weight: 700;
}

.footer-callout span {
  color: var(--orange-500);
  transition: transform 0.2s ease;
}

.footer-callout:hover span,
.footer-callout:focus-visible span {
  transform: translateX(3px);
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer h3 {
  margin: 0 0 14px;
  padding-left: 10px;
  border-left: 3px solid var(--orange-500);
  color: var(--white);
  font-size: 1rem;
}

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

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.contact-form-panel {
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(11, 61, 92, 0.12);
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  border-top: 4px solid var(--orange-500);
  box-shadow: 0 24px 54px rgba(8, 29, 48, 0.16);
}

.contact-form-panel::after {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(33, 185, 196, 0.35);
  border-radius: 50%;
}

.contact-form-heading {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-form-mark {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--orange-500);
  color: var(--navy-950);
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.22);
}

.contact-form-panel h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.35rem;
}

.contact-form-intro {
  margin: 3px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
}

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

.form-field {
  display: grid;
  gap: 6px;
}

.form-field-wide,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.whatsapp-form label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
}

.whatsapp-form input,
.whatsapp-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-form input:focus,
.whatsapp-form textarea:focus {
  border-color: var(--color-2);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 3px rgba(33, 185, 196, 0.16);
  outline: none;
}

.whatsapp-form input::placeholder,
.whatsapp-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.45;
}

.form-consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--orange-500);
}

.form-consent label {
  font-size: inherit;
  font-weight: 400;
}

.form-consent a,
.privacy-consent a {
  color: var(--orange-500);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.whatsapp-form .form-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 4px;
  box-shadow: 0 12px 24px rgba(5, 176, 255, 0.18);
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: #b9f5da;
  font-size: 0.8rem;
}

.privacy-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(720px, calc(100% - 36px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(10, 45, 71, 0.97);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(8, 29, 48, 0.28);
}

.privacy-consent[hidden] {
  display: none;
}

.privacy-consent strong {
  display: block;
  margin-bottom: 3px;
}

.privacy-consent p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.45;
}

.privacy-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.legal-main {
  min-height: calc(100vh - 280px);
  padding: 72px 0 96px;
  background:
    radial-gradient(circle at 8% 12%, rgba(5, 176, 255, 0.08), transparent 26%),
    var(--surface-muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.5fr);
  gap: 64px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 104px;
}

.legal-sidebar .eyebrow {
  margin-bottom: 18px;
  background: rgba(5, 176, 255, 0.08);
  border-color: rgba(5, 176, 255, 0.16);
  color: var(--navy-900);
}

.legal-sidebar h1 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.legal-sidebar > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--slate-500);
}

.legal-nav {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding-left: 14px;
  border-left: 2px solid var(--slate-300);
}

.legal-nav a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--slate-500);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  background: var(--blue-100);
  color: var(--navy-900);
}

.legal-content {
  max-width: 720px;
  padding: 38px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.legal-updated {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.legal-lead {
  margin: 18px 0 0;
  color: var(--navy-900);
  font-size: 1.12rem;
  line-height: 1.7;
}

.legal-content section {
  margin-top: 34px;
  scroll-margin-top: 108px;
}

.legal-content h2 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 1.18rem;
  line-height: 1.3;
}

.legal-content section p {
  margin: 0;
  color: var(--slate-500);
}

.legal-contact {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--orange-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--slate-100);
  color: var(--navy-900);
}

.legal-contact span {
  color: var(--slate-500);
}

.legal-contact a,
.legal-back {
  color: var(--navy-900);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--orange-500);
  text-underline-offset: 4px;
}

.legal-back {
  display: inline-flex;
  gap: 8px;
  margin-top: 38px;
}

.legal-back span {
  color: var(--orange-600);
  transition: transform 0.2s ease;
}

.legal-back:hover span,
.legal-back:focus-visible span {
  transform: translateX(3px);
}

.mobile-cta-bar {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: rgba(9, 23, 35, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--white);
  transition: transform 0.15s ease;
}

.mobile-cta:active {
  transform: scale(0.96);
}

.mobile-cta.whatsapp {
  background: var(--green-600);
}

.mobile-cta.phone {
  background: var(--navy-900);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 45;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #20c76a;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(3, 31, 22, 0.3);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.2s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: rgba(32, 199, 106, 0.55);
  animation: whatsappPulse 2.8s ease-out infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.55; }
  75%, 100% { transform: scale(1.7); opacity: 0; }
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 32px rgba(3, 31, 22, 0.4);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.error-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 72px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(5, 176, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #eaf9ff 0%, #f4f9fc 55%, #ffffff 100%);
}

.error-content {
  max-width: 680px;
  text-align: center;
}

.error-code {
  margin: 0;
  color: var(--color-1);
  font-size: clamp(5rem, 18vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.error-content h1 {
  margin: 24px 0 12px;
  color: var(--navy-900);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.error-content p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--slate-500);
}

.error-actions {
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 980px) {
  body {
    padding-top: 72px;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .header-inner {
    gap: 10px;
  }

  .hero-grid,
  .process-grid,
  .contact-form-grid,
  .legal-layout,
  .final-inner,
  .machine-showcase,
  .machine-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
    padding: 44px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 7vw, 3.4rem);
  }

  .hero-media {
    padding: 4px 18px 0;
  }

  .hero-media::before {
    width: min(82%, 360px);
    border-radius: 24px;
  }

  .card-grid,
  .brand-grid,
  .problem-list,
  .city-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .machine-showcase {
    grid-template-columns: 1fr;
  }

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

  .final-actions {
    justify-content: flex-start;
  }

  .final-actions .btn {
    flex: 1 1 220px;
  }

  .mobile-cta-bar {
    display: grid;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-nav {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    border-left: 0;
  }

}


@media (max-width: 640px) {
  :root {
    --container: calc(100% - 24px);
  }

  .header-inner {
    min-height: 64px;
  }

  body {
    padding-top: 64px;
  }

  .site-header .brand {
    min-height: 44px;
    max-width: 140px;
    padding: 2px 0;
  }

  .brand-logo {
    max-width: 140px;
    max-height: 38px;
  }

  .nav-toggle {
    flex: 0 0 44px;
    margin-left: auto;
  }

  .mobile-menu-inner {
    gap: 6px;
    padding: 12px 0 18px;
  }

  .hero-grid {
    gap: 18px;
    padding: 36px 0 42px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    letter-spacing: -0.04em;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-media img {
    width: 100%;
  }

  .trust-section,
  .problems-section,
  .media-section,
  .brands-section,
  .process-section,
  .coverage-section,
  .faq-section {
    padding: 44px 0;
  }

  .section-header {
    margin-bottom: 22px;
  }

  .section-header h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .card-grid,
  .brand-grid,
  .problem-list,
  .city-list {
    gap: 12px;
  }

  .info-card,
  .brand-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .problem-item {
    min-height: 0;
    padding: 16px;
    border-radius: 14px;
  }

  .brand-card p,
  .brand-note,
  .coverage-note {
    font-size: 0.9rem;
  }

  .card-grid,
  .brand-grid,
  .problem-list,
  .city-list {
    grid-template-columns: 1fr;
    height: auto;
  }

  .machine-showcase,
  .machine-grid {
    height: auto;
  }

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

  .machine-card img {
    height: 154px;
  }

  .machine-card-featured img {
    min-height: 230px;
    height: 250px;
  }

  .media-block-heading {
    display: block;
  }

  .media-block-heading span {
    display: block;
    margin-top: 4px;
  }

  .cta-group,
  .header-actions,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-small {
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .cta-inline {
    align-items: flex-start;
    padding: 20px;
  }

  .map-link {
    display: block;
    margin-left: 0;
  }

  .final-cta {
    position: relative;
    padding: 18px 0 24px;
    background: #082b43;
  }

  .final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 176, 255, 0.18), transparent 42%), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px);
    pointer-events: none;
  }

  .final-inner {
    position: relative;
    gap: 0;
    padding: 28px 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(17, 85, 119, 0.88), rgba(7, 39, 61, 0.94));
    box-shadow: 0 18px 40px rgba(2, 20, 33, 0.24);
  }

  .final-copy {
    max-width: none;
  }

  .final-copy .eyebrow {
    margin-bottom: 14px;
    padding: 7px 10px;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
  }

  .final-inner h2 {
    max-width: 12ch;
    margin-bottom: 10px;
    font-size: clamp(2rem, 9vw, 2.5rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .final-copy > p:last-child {
    max-width: 34rem;
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .final-actions {
    gap: 9px;
    margin-top: 24px;
  }

  .final-actions .btn {
    flex: 0 1 auto;
    min-height: 56px;
    border-radius: 13px;
    padding: 0 16px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .final-actions .btn-light {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  }

  .final-meta {
    display: grid;
    gap: 8px;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .final-meta span {
    display: flex;
    align-items: flex-start;
  }

  .final-meta span::before {
    flex: 0 0 7px;
    margin-top: 0.45em;
  }

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

  .site-footer {
    padding: 40px 0;
  }

  .footer-intro {
    padding-bottom: 28px;
  }

  .footer-brand {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 0;
  }

  .footer-brand .brand-logo {
    max-width: 132px;
    max-height: 48px;
  }

  .footer-intro > p {
    max-width: 32rem;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .footer-callout {
    justify-content: space-between;
    width: 100%;
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(245, 158, 11, 0.45);
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.1);
    font-size: 0.9rem;
  }

  .site-footer > .container:not(.footer-grid) {
    width: var(--container);
  }

  .footer-grid > div:not(.footer-intro) {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-footer h3 {
    margin-bottom: 12px;
    padding-left: 9px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .site-footer ul {
    gap: 7px;
    font-size: 0.9rem;
  }

  .site-footer li {
    line-height: 1.45;
  }

  .site-footer a {
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.28);
    text-underline-offset: 3px;
  }

  .footer-callout,
  .footer-brand {
    text-decoration: none !important;
  }

  .contact-form-grid {
    gap: 32px;
  }

  .contact-form-panel {
    padding: 24px;
    border-radius: var(--radius-md);
  }

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

  .form-field-wide,
  .form-submit,
  .form-status {
    grid-column: auto;
  }

  .mobile-cta-bar {
    display: none;
  }

  .footer-bottom {
    margin-top: 4px;
    padding-top: 20px;
  }

  .footer-bottom p {
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: left;
  }

  .mobile-cta {
    min-height: 44px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 126px;
  }

  .process-steps li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    padding: 16px;
  }

  .process-steps {
    gap: 12px;
    margin-top: 18px;
  }

  .process-steps h3 {
    font-size: 1rem;
  }

  .process-steps p {
    font-size: 0.9rem;
  }

  .process-cta {
    margin-top: 18px;
  }

  .contact-form-section {
    padding: 44px 0;
  }

  .legal-main {
    padding: 44px 0 64px;
  }

  .legal-content {
    padding: 26px 20px;
    border-radius: var(--radius-md);
  }

  .legal-content section {
    margin-top: 28px;
  }

  .legal-lead {
    font-size: 1rem;
  }

  .contact-form-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .contact-form-copy ul {
    gap: 8px;
    margin-top: 18px;
    font-size: 0.92rem;
  }

  .form-field {
    gap: 5px;
  }

  .form-field input,
  .form-field textarea {
    min-height: 48px;
    padding: 12px 13px;
    border-radius: 10px;
  }

  .privacy-consent {
    right: 12px;
    bottom: 76px;
    width: calc(100% - 24px);
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .privacy-consent-actions .btn {
    flex: 1;
  }

  .faq-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .faq-list details {
    padding: 0 14px;
    border-radius: 12px;
  }

  .faq-list summary {
    padding: 16px 32px 16px 0;
    font-size: 0.95rem;
  }

  .faq-list p {
    margin-bottom: 16px;
    font-size: 0.9rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
  }
}

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

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

  [data-reveal],
  [data-reveal-group] > * {
    opacity: 1;
    transform: none;
  }
}
