/* ============================================================
   GOCAR — Landing Page
   Paleta oficial: navy #143259 · azul #2A558C · areia #E0A480
   cinza #D9D9D9 · preto #0D0D0D
   ============================================================ */

:root {
  --navy: #143259;
  --blue: #2A558C;
  --blue-soft: #eaf0f8;
  --sand: #E0A480;
  --sand-soft: #fbeee5;
  --ink: #0D0D0D;
  --gray: #D9D9D9;
  --muted: #5b6473;
  --line: #e7eaf0;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px -12px rgba(20, 50, 89, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(20, 50, 89, 0.28);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}
html, body { max-width: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
  text-wrap: balance;
}
p { text-wrap: pretty; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.container--narrow { max-width: 820px; }

.section { padding-block: clamp(2.5rem, 4.5vw, 4rem); }
.bg-alt, .beneficios, .para-quem-nao, .faq { background: var(--bg-alt); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.98rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  text-align: center;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary { --btn-bg: var(--navy); box-shadow: 0 8px 22px -10px rgba(20,50,89,.5); }
.btn-primary:hover { background: #1a3f70; }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 22px -14px rgba(20,50,89,.35); border-bottom-color: var(--line); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: 72px;
}
.brand-logo { height: 40px; width: auto; }
.nav-desktop { display: none; gap: 1.6rem; margin-left: auto; margin-right: 1.2rem; }
.nav-link {
  font-weight: 500; font-size: 0.95rem; color: var(--navy);
  position: relative; padding-block: 4px;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--sand); transition: width 0.25s var(--ease);
}
.nav-link:hover::after { width: 100%; }
.btn-nav { display: none; padding: 0.6rem 1.15rem; font-size: 0.9rem; }

.menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; margin-left: auto;
  background: transparent; border: 0; cursor: pointer;
}
.menu-toggle span { height: 2px; width: 100%; background: var(--navy); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 0 20px;
  max-height: 0; overflow: hidden;
  background: #fff; border-bottom: 1px solid transparent;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease), border-color 0.35s;
}
.nav-mobile.open { max-height: 420px; padding: 0.75rem 20px 1.1rem; border-bottom-color: var(--line); }
.nav-mobile .nav-link { padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
.nav-mobile .btn-block { margin-top: 0.75rem; }

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-soft);
  padding: 0.4rem 0.85rem; border-radius: 999px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sand); }
.section-eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 0.6rem;
}
.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head--left { text-align: left; margin-inline: 0; }
.section-head h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
.section-sub { color: var(--muted); font-size: 1.05rem; margin-top: 0.75rem; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.25rem); background: linear-gradient(180deg, #fbfcfe 0%, #fff 60%); }
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero-text h1 { font-size: clamp(2rem, 5.4vw, 3.15rem); margin: 1rem 0; font-weight: 800; }
.hero .lead { font-size: 1.12rem; color: var(--muted); max-width: 40ch; }
.hero-bullets { display: grid; gap: 0.6rem; margin: 1.4rem 0 1.8rem; }
.hero-bullets li { position: relative; padding-left: 1.9rem; font-weight: 500; }
.hero-bullets li::before {
  content: ''; position: absolute; left: 0; top: 2px;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A558C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 0.75rem no-repeat;
}
.hero-cta { display: flex; flex-direction: column; gap: 0.65rem; align-items: flex-start; }
.microcopy { font-size: 0.85rem; color: var(--muted); }
.microcopy--center { text-align: center; margin-top: 0.9rem; }

.hero-media { position: relative; }
.hero-media-glow {
  position: absolute; inset: -8% -6% -12% -6%; z-index: 0;
  background: radial-gradient(60% 60% at 60% 40%, rgba(42,85,140,0.20), rgba(224,164,128,0.12) 55%, transparent 75%);
  filter: blur(30px);
}
.hero-img {
  position: relative; z-index: 1; width: 100%;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; object-fit: cover;
}

/* ---------- Benefícios ---------- */
.benefit-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.1rem;
}
.benefit-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: 0 6px 18px -14px rgba(20,50,89,.25);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d7deea; }
.benefit-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-soft); color: var(--blue); margin-bottom: 1rem;
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.benefit-card p { color: var(--muted); font-size: 0.97rem; }

.benefit-cta-card {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1rem;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff; border-radius: var(--radius); padding: 1.75rem;
}
.benefit-cta-card p { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; }
.benefit-cta-card .btn { --btn-bg: #fff; --btn-fg: var(--navy); }
.benefit-cta-card .btn:hover { background: var(--sand); color: var(--navy); }

/* ---------- Two column ---------- */
.two-col { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.two-col-media { display: flex; flex-direction: column; }
.two-col-media .price-box { margin: 1.25rem 0 0; }
.two-col-text h2 { font-size: clamp(1.55rem, 3.4vw, 2.25rem); margin-bottom: 0.9rem; }
.two-col-text > p { color: var(--muted); margin-bottom: 1rem; }
.framed-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; object-fit: cover; }
.framed-img--tall { aspect-ratio: 3 / 4; }

/* Price box */
.price-box {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.25rem;
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 1.25rem 1.5rem; margin: 0.5rem 0 1.4rem;
}
.price-main { display: flex; align-items: baseline; gap: 0.45rem; }
.price-value { font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; line-height: 1; }
.price-unit { font-size: 0.95rem; opacity: 0.85; }
.price-badge {
  font-size: 0.82rem; font-weight: 500; line-height: 1.35;
  background: var(--sand); color: #3a2417; border-radius: 999px;
  padding: 0.45rem 0.85rem;
}

/* Check list */
.check-list { display: grid; gap: 0.7rem; margin: 0.5rem 0 1.4rem; }
.check-list li { position: relative; padding-left: 2rem; color: #2a2f38; }
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 1px;
  width: 1.35rem; height: 1.35rem; border-radius: 50%;
  background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A558C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 0.8rem no-repeat;
}
.check-list--lg li { padding-block: 0.15rem; font-weight: 500; }
.closing-line { font-weight: 500; color: var(--navy); margin-bottom: 1.4rem; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 1rem; max-width: 780px; margin: 0 auto; counter-reset: step; }
.step {
  display: flex; align-items: flex-start; gap: 1.1rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1.4rem; box-shadow: 0 6px 18px -16px rgba(20,50,89,.3);
}
.step-num {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff;
}
.step p { margin-top: 0.35rem; color: #2a2f38; }
.support-text { text-align: center; color: var(--muted); max-width: 640px; margin: 1.6rem auto 0; }
.center-cta { text-align: center; margin-top: 2rem; }

/* ---------- Para quem não é (atenção) ---------- */
.attention-box {
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--sand);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow); max-width: 900px; margin-inline: auto;
}
.attention-box > p { color: var(--muted); margin-bottom: 1rem; }
.attention-label { font-family: var(--font-head); font-weight: 600; color: var(--navy); margin: 0.6rem 0 0.8rem; }
.x-list { display: grid; gap: 0.6rem; margin-bottom: 1.3rem; }
.x-list li { position: relative; padding-left: 2rem; color: #2a2f38; }
.x-list li::before {
  content: ''; position: absolute; left: 0; top: 1px;
  width: 1.35rem; height: 1.35rem; border-radius: 50%;
  background: var(--sand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c47a4e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center / 0.75rem no-repeat;
}

/* ---------- FAQ ---------- */
.accordion { display: grid; gap: 0.75rem; }
.acc-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: box-shadow 0.25s var(--ease), border-color 0.25s;
}
.acc-item[open] { box-shadow: var(--shadow); border-color: #d7deea; }
.acc-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 1.02rem;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary::after {
  content: ''; flex-shrink: 0; width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A558C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.3s var(--ease);
}
.acc-item[open] summary::after { transform: rotate(180deg); }
.acc-body { padding: 0 1.3rem 1.2rem; }
.acc-body p { color: var(--muted); }

/* ---------- Formulário ---------- */
.form-orientation {
  max-width: 720px; margin: 0 auto 2rem; text-align: center; color: var(--muted);
  background: var(--blue-soft); border-radius: var(--radius); padding: 1rem 1.3rem;
}
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-lg);
}
.form-step { border: 0; margin-bottom: 1.75rem; }
.form-step legend {
  font-family: var(--font-head); font-weight: 700; color: var(--navy);
  font-size: 1.05rem; margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--blue-soft); width: 100%;
}
.field { margin-bottom: 1.15rem; }
.field-label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; font-size: 0.96rem; }
.field-label em { color: var(--sand); font-style: normal; }
.form-card input[type="text"],
.form-card input[type="tel"],
.form-card select,
.form-card textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 0.8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(42,85,140,0.15);
}
.form-card textarea { resize: vertical; min-height: 84px; }

.radio-group, .check-group { display: grid; gap: 0.5rem; }
.opt {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.7rem 0.9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  cursor: pointer; transition: border-color 0.2s, background 0.2s; font-size: 0.96rem;
}
.opt:hover { border-color: #c9d3e4; background: #fafbfd; }
.opt input { flex-shrink: 0; margin-top: 3px; width: 18px; height: 18px; accent-color: var(--navy); }
.opt:has(input:checked) { border-color: var(--blue); background: var(--blue-soft); }
.field--check { margin: 0.5rem 0 1.5rem; }
.opt--lgpd { background: var(--bg-alt); }

/* Consentimento (Aviso de Privacidade) abaixo do botão de envio */
.form-consent { margin-top: 1rem; }
.opt--consent { background: var(--bg-alt); font-size: 0.85rem; line-height: 1.5; color: var(--muted); }
.opt--consent.is-error { border-color: #d32f2f; background: #fdeceb; }
.consent-error { margin-top: 0.45rem; font-size: 0.85rem; font-weight: 600; color: #d32f2f; }
.consent-error[hidden] { display: none; }

/* ---------- Formulário em etapas (wizard) ---------- */
.form-progress { margin-bottom: 1.75rem; }
.form-progress-label {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: 0.85rem; color: var(--blue); margin-bottom: 0.5rem;
}
.form-progress-bar { height: 8px; background: var(--blue-soft); border-radius: 999px; overflow: hidden; }
.form-progress-bar span {
  display: block; height: 100%; width: 25%;
  background: linear-gradient(90deg, var(--blue), var(--navy)); border-radius: 999px;
  transition: width 0.4s var(--ease);
}
.form-wizard .form-step { display: none; margin-bottom: 0.5rem; }
.form-wizard .form-step.is-active { display: block; animation: stepIn 0.4s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.form-nav { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; }
.form-nav [data-prev] { margin-right: auto; }
.form-nav [data-next], .form-nav [data-submit] { margin-left: auto; }
.form-nav .btn[hidden] { display: none; }
@media (max-width: 479px) {
  .form-nav { flex-direction: column-reverse; }
  .form-nav .btn { width: 100%; margin: 0 !important; }
}
@media (prefers-reduced-motion: reduce) {
  .form-wizard .form-step.is-active { animation: none; }
}

/* ---------- Parceiros ---------- */
.parceiros-inner {
  display: grid; gap: 1.5rem; align-items: center;
  background: #fff; border: 1px dashed #cdd6e4; border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}
.parceiros-inner h2 { font-size: clamp(1.3rem, 3vw, 1.6rem); margin-bottom: 0.6rem; }
.parceiros-inner p { color: var(--muted); font-size: 0.97rem; margin-bottom: 0.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #cdd6e4; padding-top: clamp(2.5rem, 5vw, 3.5rem); }
.footer-grid { display: grid; gap: 2rem; padding-bottom: 2.5rem; }
.footer-logo { height: 42px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: #a9b6cd; max-width: 34ch; font-size: 0.95rem; }
.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 0.9rem; }
.footer-col a, .footer-plain { display: block; color: #b9c5da; padding: 0.35rem 0; font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--sand); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 1.5rem 0 2rem; }
.footer-bottom p { color: #91a0bb; font-size: 0.85rem; }
.footer-legal { margin-top: 0.5rem; font-size: 0.78rem; color: #7e8ea9; max-width: 90ch; }

/* ---------- Mobile CTA fixa ---------- */
.mobile-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 600; color: #fff;
  background: var(--navy); padding: 0.95rem; border-radius: 999px;
  box-shadow: 0 12px 30px -8px rgba(20,50,89,.6);
  transform: translateY(150%); transition: transform 0.35s var(--ease);
}
.mobile-cta.show { transform: translateY(0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 640px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .radio-group, .check-group { grid-template-columns: repeat(2, 1fr); }
  .parceiros-inner { grid-template-columns: 1fr auto; }
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(1, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .two-col { grid-template-columns: 1fr 1fr; }
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
  .benefit-cta-card { grid-column: span 4; flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .btn-nav { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-cta { display: none; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-cta-card { grid-column: span 3; }
}

@media (min-width: 1200px) {
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
  .benefit-cta-card { grid-column: span 4; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .benefit-card:hover, .step:hover { transform: none; }
}
