/* ============================================
   ZIMPAY - Banco Digital Institucional
   ============================================ */

:root {
  --primary: #E65616;
  --primary-dark: #C2410D;
  --secondary: #F5D9D0;
  --accent: #C2410D;
  --white: #FFFFFF;
  --gray-light: #F5F7FA;
  --gray-100: #E8ECF1;
  --gray-200: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --text: #1E293B;
  --text-muted: #64748B;
  --bg: #FFFFFF;
  --bg-alt: #F5F7FA;
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 32px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 24px 64px rgba(230, 86, 22, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --header-h: 80px;
  --layout-max: 1280px;
  --layout-gutter: clamp(1rem, 4vw, 1.5rem);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Montserrat', 'Poppins', sans-serif;
  --font-accent: 'Poppins', sans-serif;
}

[data-theme="dark"] {
  --white: #0F172A;
  --gray-light: #1E293B;
  --gray-100: #334155;
  --gray-200: #475569;
  --text: #F1F5F9;
  --text-muted: #94A3B8;
  --bg: #0B1120;
  --bg-alt: #111827;
  --glass-bg: rgba(30, 41, 59, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(230, 86, 22, 0.15);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--layout-max);
  margin-inline: auto;
  padding-inline: var(--layout-gutter);
}

.container--narrow {
  width: 100%;
  max-width: min(720px, var(--layout-max));
  margin-inline: auto;
  padding-inline: var(--layout-gutter);
}

/* Glassmorphism */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn--lg { padding: 0.9rem 2rem; font-size: 1rem; }

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(230, 86, 22, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230, 86, 22, 0.45);
}

.btn--outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

[data-theme="dark"] .btn--outline {
  color: var(--secondary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn--glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.btn--glass:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header--scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.logo--footer .logo__img {
  height: 48px;
}

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
  overflow: hidden;
}

.nav-scroll__btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: var(--glass-bg);
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition), opacity var(--transition);
}

.nav-scroll__btn:hover:not(.is-disabled) {
  color: var(--primary);
  border-color: rgba(230, 86, 22, 0.35);
  background: rgba(230, 86, 22, 0.08);
}

.nav-scroll__btn.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.nav-scroll__btn[hidden] {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 0.25rem;
}

.nav__list::-webkit-scrollbar { display: none; }

.nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary);
  background: rgba(230, 86, 22, 0.08);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: var(--glass-bg);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.theme-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(245, 217, 208, 0.9) 0%,
      rgba(252, 228, 210, 0.78) 42%,
      rgba(255, 238, 225, 0.58) 100%
    ),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(230, 86, 22, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(230, 86, 22, 0.1) 0%, transparent 50%);
}

[data-theme="dark"] .hero__bg-overlay {
  background:
    linear-gradient(
      105deg,
      rgba(28, 16, 10, 0.88) 0%,
      rgba(38, 22, 14, 0.82) 45%,
      rgba(48, 28, 18, 0.74) 100%
    ),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(230, 86, 22, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(194, 65, 13, 0.16) 0%, transparent 50%);
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .hero__bg-overlay {
    background:
      radial-gradient(ellipse 80% 60% at 70% 20%, rgba(230, 86, 22, 0.14) 0%, transparent 55%),
      radial-gradient(ellipse 50% 40% at 10% 80%, rgba(245, 217, 208, 0.5) 0%, transparent 50%),
      linear-gradient(180deg, rgba(245, 217, 208, 0.95) 0%, rgba(255, 238, 225, 0.9) 100%);
  }

  [data-theme="dark"] .hero__bg-overlay {
    background:
      radial-gradient(ellipse 80% 60% at 70% 20%, rgba(230, 86, 22, 0.18) 0%, transparent 55%),
      radial-gradient(ellipse 50% 40% at 10% 80%, rgba(194, 65, 13, 0.12) 0%, transparent 50%),
      linear-gradient(180deg, rgba(28, 16, 10, 0.95) 0%, rgba(38, 22, 14, 0.9) 100%);
  }
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(230, 86, 22, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.5rem;
}

.hero__highlights li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__highlights i {
  color: var(--primary);
  font-size: 0.85rem;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(400px, 58vh, 720px);
  padding: 1rem 0;
}

.hero__showcase {
  position: relative;
  width: 100%;
  max-width: min(100%, 720px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__float-icons {
  position: absolute;
  inset: -2% -4%;
  z-index: 3;
  pointer-events: none;
}

.hero__float-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--primary);
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  animation: heroIconFloat 5s ease-in-out infinite;
}

.hero__float-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.hero__float-icon--1 {
  top: 6%;
  left: 2%;
  animation-delay: 0s;
}

.hero__float-icon--2 {
  top: 4%;
  right: 4%;
  width: 48px;
  height: 48px;
  animation-delay: 0.7s;
  animation-duration: 4.5s;
}

.hero__float-icon--3 {
  top: 38%;
  left: -2%;
  width: 56px;
  height: 56px;
  animation-delay: 1.2s;
  animation-duration: 5.5s;
}

.hero__float-icon--4 {
  top: 32%;
  right: 0;
  animation-delay: 0.4s;
  animation-duration: 4.8s;
}

.hero__float-icon--5 {
  bottom: 28%;
  left: 6%;
  animation-delay: 1.6s;
  animation-duration: 5.2s;
}

.hero__float-icon--6 {
  bottom: 22%;
  right: 6%;
  width: 58px;
  height: 58px;
  animation-delay: 0.9s;
  animation-duration: 6s;
}

.hero__float-icon--7 {
  bottom: 8%;
  left: 22%;
  animation-delay: 2s;
  animation-duration: 4.6s;
}

.hero__float-icon--8 {
  bottom: 6%;
  right: 18%;
  width: 50px;
  height: 50px;
  font-size: 1.15rem;
  animation-delay: 1.1s;
  animation-duration: 5.8s;
}

@keyframes heroIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(4deg);
  }
}

.hero__figure {
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.hero__figure--float {
  animation: heroFloat 5s ease-in-out infinite;
  will-change: transform;
}

.hero__figure--float::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 55%;
  width: 70%;
  height: 65%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(230, 86, 22, 0.2) 0%,
    rgba(245, 217, 208, 0.1) 45%,
    transparent 72%
  );
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
  animation: heroGlow 5s ease-in-out infinite;
}

.hero__slideshow {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 620px);
  min-height: clamp(280px, 52vh, 640px);
  margin: 0 auto;
}

.hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 620px);
  height: auto;
  max-height: min(88vh, 760px);
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  filter: drop-shadow(0 24px 40px rgba(15, 23, 42, 0.2));
}

.hero__slideshow .hero__img--slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.9s ease-in-out;
  pointer-events: none;
}

.hero__slideshow .hero__img--slide.is-active {
  opacity: 1;
  z-index: 1;
}

[data-theme="dark"] .hero__img {
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.55));
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-24px);
  }
}

@keyframes heroGlow {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.92);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__figure--float,
  .hero__figure--float::before {
    animation: none;
  }

  .hero__float-icon {
    animation: none;
  }

  .hero__img--slide {
    transition: none;
  }

  .hero__img--slide:not(.is-active) {
    display: none;
  }
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero__scroll a {
  color: var(--primary);
  font-size: 1.25rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Abrir conta — passos */
.onboarding {
  padding: 5rem 0;
  background: var(--bg-alt);
}

.onboarding__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.onboarding__intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.7;
}

.onboarding__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  list-style: none;
  counter-reset: none;
  position: relative;
}

.onboarding__steps::before {
  content: "";
  position: absolute;
  top: 2.75rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  opacity: 0.35;
  z-index: 0;
}

.onboarding__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.onboarding__step:hover {
  transform: translateY(-6px);
}

.onboarding__num {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 20px rgba(230, 86, 22, 0.35);
}

.onboarding__step-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.onboarding__step-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.onboarding__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.onboarding__actions .btn--outline {
  background: var(--bg);
}

/* Showcase — telas do app em loop */
.app-showcase {
  padding-bottom: 5rem;
  overflow: hidden;
}

.app-showcase__header {
  text-align: center;
  max-width: min(720px, 100%);
  margin: 0 auto 2.5rem;
}

.app-showcase__intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.7;
}

.app-showcase__slider {
  width: 100%;
  max-width: var(--layout-max);
  margin-inline: auto;
  padding-inline: var(--layout-gutter);
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.app-showcase__track {
  display: flex;
  width: max-content;
  animation: showcaseScroll 35s linear infinite;
}

.app-showcase__slider:hover .app-showcase__track {
  animation-play-state: paused;
}

.app-showcase__group {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 0 0.875rem;
}

.app-showcase__slide {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-showcase__slide img {
  width: auto;
  max-width: min(260px, 28vw);
  height: auto;
  max-height: min(520px, 58vh);
  object-fit: contain;
  display: block;
  border-radius: 20px;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.18));
  transition: transform var(--transition);
}

.app-showcase__slide:hover img {
  transform: scale(1.04) translateY(-6px);
}

@keyframes showcaseScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-showcase__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: var(--layout-max);
    margin: 0 auto;
    gap: 1.5rem;
  }

  .app-showcase__group[aria-hidden="true"] {
    display: none;
  }

  .app-showcase__slider {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section__grid--reverse .section__media { order: -1; }

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section__title--center { text-align: center; }

.section__header {
  margin-bottom: 3rem;
}

.section__content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section__media {
  position: relative;
}

.section__media img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  display: block;
}

.section__media .section__img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section__media .section__img--app {
  aspect-ratio: auto;
  max-height: 520px;
  height: auto;
  object-fit: contain;
  background: linear-gradient(160deg, var(--gray-light) 0%, rgba(245, 217, 208, 0.5) 100%);
  padding: 1.5rem;
}

[data-theme="dark"] .section__media .section__img--app {
  background: linear-gradient(160deg, var(--bg-alt) 0%, rgba(194, 65, 13, 0.15) 100%);
}

.section__media .section__img--icon {
  aspect-ratio: auto;
  max-height: 320px;
  object-fit: contain;
  padding: 2.5rem;
  background: var(--bg-alt);
}

.section__float {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.section__float i {
  font-size: 1.5rem;
  color: var(--primary);
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  color: var(--text);
}

.feature-list i {
  color: var(--primary);
  font-size: 0.9rem;
}

.feature-list--inline {
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  gap: 1rem;
}

/* Product cards */
.product-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-card {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  transition: transform var(--transition);
}

.product-card:hover { transform: translateX(6px); }

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.product-card ul {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.product-card li::before {
  content: "· ";
  color: var(--primary);
}

/* Credit cards */
.credit-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credit-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: transform var(--transition);
}

.credit-card:hover { transform: translateY(-4px); }

.credit-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.credit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
}

.highlight-box i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.highlight-box p {
  margin: 0;
  font-weight: 500;
}

/* BaaS banner */
.baas-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding: 3rem;
  border-radius: var(--radius-xl);
  align-items: center;
}

.baas-banner__content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.baas-banner__icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.baas-banner__icons > div {
  text-align: center;
  padding: 1.5rem;
  background: rgba(230, 86, 22, 0.08);
  border-radius: var(--radius);
  transition: transform var(--transition);
}

.baas-banner__icons > div:hover {
  transform: scale(1.05);
}

.baas-banner__icons i {
  font-size: 2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.baas-banner__icons span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Security */
.security-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.security-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: transform var(--transition);
}

.security-chip:hover { transform: scale(1.03); }
.security-chip i { color: var(--primary); }

/* Diferenciais */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.diff-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}

.diff-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 86, 22, 0.3);
}

.diff-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.diff-card h3 {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Stats */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}

.stats-section .section__title {
  color: #fff;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(12px);
}

.stat-item__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-item__label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.testimonials__track {
  position: relative;
  min-height: 280px;
}

.testimonial {
  position: absolute;
  inset: 0;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.testimonial__stars {
  color: #FBBF24;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.testimonial p {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid rgba(230, 86, 22, 0.35);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  background: var(--gray-100);
}

.testimonial footer strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial footer span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonials__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}

.testimonials__nav:hover {
  background: var(--primary);
  color: #fff;
}

.testimonials__nav--prev { left: -60px; }
.testimonials__nav--next { right: -60px; }

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  transition: all var(--transition);
}

.testimonials__dots button.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* Blog */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.blog-categories span {
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  background: rgba(230, 86, 22, 0.08);
  color: var(--primary);
  border-radius: 999px;
  font-weight: 500;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition);
}

.blog-card:hover { transform: translateY(-6px); }

.blog-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img img { transform: scale(1.05); }

.blog-card__cat,
.blog-card h3,
.blog-card a {
  padding: 0 1.25rem;
}

.blog-card__cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin: 1rem 0 0.5rem;
  padding-top: 0;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--primary);
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.faq__item {
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item[open] {
  border-color: rgba(230, 86, 22, 0.3);
}

.faq__item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform var(--transition);
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 86, 22, 0.15);
}

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-feedback.success { color: #059669; }
.form-feedback.error { color: #DC2626; }
.form-feedback.loading { color: var(--text-muted); }

.form-row--hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form {
  position: relative;
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: wait;
}

.contact-info__card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.contact-info__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  object-position: center;
  background: var(--bg-alt);
  padding: 1.25rem;
}

.contact-info__list {
  padding: 1.5rem;
}

.contact-info__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.contact-info__list i {
  color: var(--primary);
  width: 20px;
}

.contact-info__list a:hover { color: var(--primary); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  filter: grayscale(20%);
}

[data-theme="dark"] .contact-map iframe {
  filter: grayscale(40%) invert(90%) hue-rotate(180deg);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: #CBD5E1;
  padding-top: 4rem;
}

[data-theme="dark"] .footer {
  background: #030712;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer__about {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: #94A3B8;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer__col ul li {
  margin-bottom: 0.6rem;
}

.footer__col a {
  font-size: 0.9rem;
  color: #94A3B8;
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--primary); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #64748B;
}

.footer__tagline {
  width: 100%;
  text-align: center;
  font-style: italic;
  margin-top: 0.5rem;
  color: var(--secondary);
  opacity: 0.85;
}

/* Reveal animations — conteúdo visível por padrão (fallback sem JS / file://) */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

html.js-anim .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js-anim .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.15s; }

/* Botões flutuantes — WhatsApp e voltar ao topo */
.fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.fab__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), opacity var(--transition), visibility var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: #fff;
}

.fab__btn--whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.fab__btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.fab__icon {
  display: block;
  flex-shrink: 0;
}

.fab__icon--whatsapp {
  width: 28px;
  height: 28px;
}

.fab__btn--whatsapp {
  background: linear-gradient(145deg, #2fe06a 0%, #25d366 45%, #128c7e 100%);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.fab__btn--whatsapp:hover {
  background: linear-gradient(145deg, #34e873 0%, #2adb6a 45%, #159688 100%);
  color: #fff;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.fab__btn--top {
  display: none;
  background: var(--primary);
  font-size: 1.15rem;
}

.fab__btn--top.is-visible {
  display: flex;
}

.fab__btn--top.is-visible:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Páginas legais */
.legal-page {
  padding-top: var(--header-h);
}

.legal-hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--gray-100);
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text);
}

.legal-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-hero__meta i {
  color: var(--primary);
}

.legal-breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.legal-breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}

.legal-breadcrumb a:hover {
  text-decoration: underline;
}

.legal-breadcrumb span[aria-hidden] {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.legal-content {
  padding: 3rem 0 5rem;
}

.container--legal {
  width: 100%;
  max-width: var(--layout-max);
  margin-inline: auto;
  padding-inline: var(--layout-gutter);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.legal-sidebar h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.legal-toc {
  list-style: none;
  counter-reset: none;
  margin-bottom: 1.5rem;
}

.legal-toc li {
  margin-bottom: 0.35rem;
}

.legal-toc a {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  padding: 0.35rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
  transition: all var(--transition);
}

.legal-toc a:hover {
  color: var(--primary);
  border-left-color: var(--primary);
}

.legal-sidebar__cta {
  width: 100%;
}

.legal-article {
  padding: 2.5rem 3rem;
  border-radius: var(--radius-xl);
}

.legal-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.legal-section:last-of-type {
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(230, 86, 22, 0.15);
}

.legal-section h3 {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.25rem 0 0.75rem;
  color: var(--text);
}

.legal-section p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
  text-align: justify;
}

.legal-section ul {
  margin: 0 0 1rem 1.25rem;
  color: var(--text-muted);
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.legal-section a {
  color: var(--primary);
  font-weight: 500;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-info-box {
  background: rgba(230, 86, 22, 0.06);
  border: 1px solid rgba(230, 86, 22, 0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem;
}

.legal-info-box p {
  margin-bottom: 0.5rem;
  text-align: left;
}

.legal-info-box p:last-child {
  margin-bottom: 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--gray-200);
  padding: 0.75rem 1rem;
  text-align: left;
}

.legal-table th {
  background: var(--bg-alt);
  font-weight: 600;
  color: var(--text);
}

.legal-table td {
  color: var(--text-muted);
}

.legal-footer-note {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legal-footer-note p {
  flex: 1;
  min-width: 200px;
  margin: 0;
  font-size: 0.9rem;
  text-align: left;
}

.legal-footer-note i {
  color: var(--primary);
  margin-right: 0.35rem;
}

@media (max-width: 1024px) {
  .container--legal {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-toc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1rem;
  }

  .legal-article {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-hero__meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .legal-table {
    font-size: 0.8rem;
  }

  .legal-table th,
  .legal-table td {
    padding: 0.5rem;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .nav__link { font-size: 0.72rem; padding: 0.35rem 0.4rem; }
  .header__actions .btn--outline { display: none; }
}

@media (max-width: 1024px) {
  .onboarding__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .onboarding__steps::before {
    display: none;
  }

  .hero__grid,
  .section__grid,
  .baas-banner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section__grid--reverse .section__media { order: 0; }

  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials__nav--prev { left: 0; }
  .testimonials__nav--next { right: 0; }

  .baas-banner__icons { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    flex: unset;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-scroll__btn {
    display: none !important;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    flex: unset;
  }

  .nav__link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .nav-toggle { display: flex; }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header__actions .btn--sm:not(.btn--primary) { display: none; }

  .onboarding__steps { grid-template-columns: 1fr; }
  .onboarding__actions { flex-direction: column; align-items: stretch; }
  .onboarding__actions .btn { width: 100%; }

  .app-showcase__slide img {
    max-width: 200px;
    max-height: 400px;
  }

  .hero__visual { min-height: 340px; padding: 0.5rem 0; }
  .hero__showcase { max-width: 100%; }
  .hero__float-icons { inset: 0; }
  .hero__float-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-radius: 12px;
  }
  .hero__float-icon img { width: 26px; height: 26px; }
  .hero__float-icon--3,
  .hero__float-icon--6 { width: 44px; height: 44px; }
  .hero__float-icon--1 { top: 2%; left: 0; }
  .hero__float-icon--2 { top: 0; right: 0; }
  .hero__float-icon--3 { left: -4%; top: 35%; }
  .hero__float-icon--4 { right: -2%; top: 30%; }
  .hero__float-icon--7,
  .hero__float-icon--8 { display: none; }
  .hero__slideshow { max-width: 100%; min-height: clamp(240px, 48vh, 480px); }
  .hero__img { max-width: 100%; max-height: min(62vh, 520px); }
  .hero__highlights { grid-template-columns: 1fr; }
  .feature-list--grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .form-row--half { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .baas-banner { padding: 2rem; }
  .baas-banner__icons { grid-template-columns: 1fr 1fr; }

}

@media (max-width: 480px) {
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; }
}
