/* ===== Design tokens ===== */
:root {
  /* Predominância branca; destaques em tons de rosa próximos a #B91A5B */
  --color-bg: #ffffff;
  --color-bg-dark: #1a0c12;
  --color-surface: #ffffff;
  --color-muted: #fdf5f8;
  --color-text: #1c1917;
  --color-text-muted: #57534e;
  --color-accent: #b91a5b;
  --color-accent-hover: #9c154d;
  --color-accent-bright: #d94680;
  --color-accent-soft: rgba(185, 26, 91, 0.1);
  --color-gold: #e11d74;
  --color-border: rgba(28, 25, 23, 0.08);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 24px rgba(28, 25, 23, 0.05);
  --shadow-md: 0 12px 48px rgba(28, 25, 23, 0.08);
  --header-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Animações leves ===== */
@keyframes h1-highlight-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 6px rgba(185, 26, 91, 0.25));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(185, 26, 91, 0.45));
  }
}

@keyframes hero-float-soft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.h1-highlight {
  display: inline;
  color: var(--color-accent);
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(
    105deg,
    var(--color-accent) 0%,
    var(--color-accent-bright) 40%,
    #f472b6 70%,
    var(--color-accent) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: h1-highlight-pulse 3.5s ease-in-out infinite, gradient-shift 8s ease infinite;
}

@supports not (background-clip: text) {
  .h1-highlight {
    color: var(--color-accent);
    -webkit-text-fill-color: unset;
    background: none;
    animation: h1-highlight-pulse 3.5s ease-in-out infinite;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 0.12s;
}

.hero__card-wrap--float {
  animation: hero-float-soft 6s ease-in-out infinite;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.02em;
}

h1 em {
  font-style: italic;
  color: var(--color-accent);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.container--narrow {
  width: min(720px, 100% - 2.5rem);
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
}

.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--color-accent), #7c1240);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(185, 26, 91, 0.35);
}

.logo__text {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo__accent {
  font-weight: 500;
  color: var(--color-text-muted);
}

.logo--footer .logo__mark {
  width: 36px;
  height: 36px;
  font-size: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.nav a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  margin-inline: auto;
  transition: transform 0.25s var(--ease-out);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease-out);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(185, 26, 91, 0.3);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: transparent;
}

.btn--ghost:hover {
  color: var(--color-accent);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--color-accent);
}

.btn--light:hover {
  background: var(--color-muted);
  color: var(--color-accent-hover);
}

.btn--lg {
  padding: 0.85rem 1.65rem;
  font-size: 0.95rem;
}

.btn--block {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -20% -10% auto;
  height: 85%;
  background:
    radial-gradient(ellipse 80% 55% at 75% -10%, rgba(185, 26, 91, 0.07), transparent 55%),
    radial-gradient(ellipse 45% 35% at 15% 45%, rgba(249, 168, 212, 0.12), transparent 50%),
    linear-gradient(180deg, var(--color-bg) 0%, #fff 100%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.hero__content {
  padding-top: 0.5rem;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.eyebrow--light {
  color: #f9a8d4;
}

.hero__lead {
  font-size: 1.08rem;
  color: var(--color-text-muted);
  max-width: 34ch;
  margin-bottom: 1.75rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.hero__trust strong {
  color: var(--color-text);
}

.avatars {
  display: flex;
}

.avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-surface);
  margin-left: -10px;
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.avatars span:first-child {
  margin-left: 0;
}

.rating {
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.hero__card-wrap {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(185, 26, 91, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow-md);
}

.hero__card-title {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.hero__card-sub {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.hero__bullets {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero__bullets li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.form-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.45;
}

/* ===== Stats ===== */
.stats {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.03em;
}

.stat__suffix {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-accent);
  vertical-align: super;
  margin-left: 0.1em;
}

.stat__label {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.stats__footnote {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 1.25rem;
  margin-bottom: 0;
}

/* ===== Sections ===== */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--muted {
  background: var(--color-muted);
}

.section--dark {
  background: linear-gradient(180deg, #1a0c12 0%, #2d0f1c 100%);
  color: #ece8ea;
}

.section--dark h2 {
  color: #fff;
}

.section__head {
  max-width: 42rem;
  margin-bottom: 2.75rem;
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 36rem;
}

.section__sub {
  color: var(--color-text-muted);
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
}

.section--dark .section__sub {
  color: #c4b8bf;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  background: var(--color-surface);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step__n {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature {
  background: var(--color-surface);
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s;
}

.feature:hover {
  border-color: rgba(185, 26, 91, 0.22);
}

.feature__icon {
  color: var(--color-accent);
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

.feature h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.feature p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Pillars */
.pillars__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.pillars__intro p:not(.eyebrow) {
  color: var(--color-text-muted);
  max-width: 32ch;
}

.pillar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.pillar-list strong {
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.pillar-list span {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

/* Big numbers */
.big-numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.big-num {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.big-num__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.big-num__value small {
  font-size: 0.55em;
  font-weight: 600;
  opacity: 0.9;
}

.big-num p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.big-numbers__note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial {
  flex: 0 0 min(100%, 320px);
  scroll-snap-align: center;
  margin: 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.testimonial__stars {
  color: var(--color-gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.testimonial p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #d5dcd9;
  margin-bottom: 1rem;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.85rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: #fff;
}

.testimonial footer span {
  color: #7a8a84;
  font-size: 0.78rem;
}

.slider-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.testimonial-hint {
  text-align: center;
  font-size: 0.82rem;
  color: #7a8a84;
  margin: 1rem 0 0;
}

/* Rating block */
.rating-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.rating-badge {
  display: inline-flex;
  flex-direction: column;
  margin: 1.25rem 0;
  padding: 1rem 1.35rem;
  background: var(--color-accent-soft);
  border-radius: var(--radius-md);
  border: 1px solid rgba(185, 26, 91, 0.22);
}

.rating-badge__score {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
}

.rating-badge__sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags li {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  background: var(--color-surface);
  border-radius: 999px;
  border: 1px solid var(--color-border);
}

.rating-card h3 {
  margin-top: 0;
}

.rating-card p {
  color: var(--color-text-muted);
}

/* FAQ */
.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq__item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform 0.2s;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  margin: 0;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* CTA final */
.cta-final {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, #8f1447 42%, #4a0a28 100%);
  color: #fce7f3;
  text-align: center;
}

.cta-final h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-final p {
  max-width: 36ch;
  margin: 0 auto 1.75rem;
  opacity: 0.92;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--color-bg-dark);
  color: #9aa8a3;
  padding: 3rem 0 1.5rem;
}

.footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand > p:first-of-type {
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 40ch;
}

.footer__company {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__company p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #b8b2b5;
  margin: 0 0 0.45rem;
}

.footer__company strong {
  color: #e7e2e4;
  font-weight: 600;
}

.footer__address {
  margin-top: 0.65rem !important;
  max-width: 36rem;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: #c5d0cc;
  text-decoration: none;
  font-size: 0.92rem;
}

.footer a:hover {
  color: #fff;
}

.footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer__legal {
  margin: 0;
  max-width: 42ch;
  opacity: 0.85;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__card-wrap {
    position: static;
    max-width: 480px;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars__grid {
    grid-template-columns: 1fr;
  }

  .big-numbers__grid {
    grid-template-columns: 1fr;
  }

  .rating-block__inner {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), opacity 0.25s, visibility 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle {
    display: flex;
  }

}

@media (max-width: 560px) {
  .features {
    grid-template-columns: 1fr;
  }

  .header__actions .btn--primary {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }

  .slider-btn {
    display: none;
  }

  .testimonial {
    flex: 0 0 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover,
  .step:hover {
    transform: none;
  }

  .h1-highlight {
    animation: none;
    filter: none;
    background: none;
    -webkit-text-fill-color: var(--color-accent);
    color: var(--color-accent);
  }

  .hero__card-wrap--float {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
