/* ProfissAI — estilos compartilhados (index.html, produtos.html) */

:root {
  --navy: #0D1B2A;
  --navy-2: #16293D;
  --navy-3: #22384F;
  --orange: #FF7A00;
  --orange-ink: #A34C00;   /* laranja para texto pequeno sobre fundo claro (contraste AA) */
  --light: #F2F4F7;
  --white: #FFFFFF;
  --ink: #0D1B2A;
  --muted: #4A5868;
  --muted-on-navy: #A9B8C8;
  --line: #E1E6EC;
  --line-on-navy: rgba(255, 255, 255, .12);
  --ok: #2FBF71;
  --danger: #C0352B;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --header-h: 72px;
  --wrap: 1200px;
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: 1rem; line-height: 1.65; color: var(--ink); background: var(--light); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input { font: inherit; }

h1, h2, h3 { font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 4.2vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.i { width: 1.25em; height: 1.25em; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

.section { padding-block: 96px; }
.section--white { background: var(--white); }
.section--light { background: var(--light); }
.section--navy { background: var(--navy); color: var(--white); }

.lead { font-size: 1.1rem; color: var(--muted); max-width: 60ch; }
.section--navy .lead { color: var(--muted-on-navy); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 16px; }

/* ---------- botões ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: 999px; border: 2px solid transparent; font-weight: 600; font-size: 1rem; line-height: 1.2; text-decoration: none; cursor: pointer; transition: background-color .15s, border-color .15s, color .15s; }
.btn--primary { background: var(--orange); color: var(--navy); }
.btn--primary:hover { background: #FF8F2B; }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-3); }
.btn--outline { background: transparent; border-color: currentColor; }
.btn--outline:hover { background: rgba(13, 27, 42, .06); }
.section--navy .btn--outline:hover, .visor .btn--outline:hover { background: rgba(255, 255, 255, .08); }
.btn--sm { padding: 10px 20px; font-size: .95rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }

.spinner { width: 18px; height: 18px; border: 2.5px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- marca ---------- */
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; font-size: 1.45rem; letter-spacing: -0.02em; color: var(--navy); }
.brand img { width: 36px; height: 36px; }
.brand b { color: var(--orange); font-weight: 700; }
.brand--light { color: var(--white); }

/* ---------- header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 40; height: var(--header-h); background: rgba(242, 244, 247, .9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { text-decoration: none; font-weight: 500; color: var(--muted); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--navy); }
.nav a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--orange); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--navy); cursor: pointer; }
.nav-toggle .i { width: 28px; height: 28px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav { position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--white); border-bottom: 1px solid var(--line); padding: 8px 24px 20px; display: none; }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav a[aria-current="page"] { box-shadow: none; color: var(--orange-ink); }
  .nav .btn { margin-top: 16px; border-bottom: 0; color: var(--navy); }
}
@media (min-width: 901px) { .nav .nav-cta-mobile { display: none; } }

/* ---------- visor: o "rosto" do Profi como moldura ---------- */
.visor { position: relative; background: var(--navy); color: var(--white); border: 8px solid var(--white); border-radius: var(--radius-lg); box-shadow: 0 30px 60px -30px rgba(13, 27, 42, .55); }
.visor::before, .visor::after { content: ""; position: absolute; top: 50%; width: 8px; height: 56px; margin-top: -28px; background: var(--orange); border-radius: 6px; }
.visor::before { left: -18px; }
.visor::after { right: -18px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: calc(var(--header-h) + 56px) 0 88px; background: var(--light); }
.hero__grid { display: grid; grid-template-columns: 1.1fr .7fr 1fr; grid-template-areas: "text profi form"; gap: 32px; align-items: center; }
.hero__text { grid-area: text; }
.hero__text h1 { margin-bottom: 20px; }
.hero__text .lead { margin-bottom: 32px; }

.traits { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.traits li { display: flex; align-items: center; gap: 10px; font-size: .95rem; font-weight: 500; line-height: 1.3; }
.traits .i { width: 40px; height: 40px; padding: 9px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; color: var(--orange-ink); }

.hero__profi { grid-area: profi; position: relative; align-self: end; margin-top: 80px; display: flex; flex-direction: column; align-items: center; }
.hero__profi img { width: 100%; max-width: 300px; position: relative; z-index: 1; animation: profi-in .8s cubic-bezier(.2, .8, .2, 1) both; }
.hero__profi::after { content: ""; width: 70%; height: 22px; margin-top: -12px; border-radius: 50%; background: radial-gradient(closest-side, rgba(13, 27, 42, .22), transparent); }
.bubble { position: absolute; top: -78px; left: 0; z-index: 2; max-width: 190px; background: var(--white); border: 1px solid var(--line); border-radius: 18px 18px 18px 4px; padding: 12px 16px; font-size: .9rem; line-height: 1.4; box-shadow: 0 10px 24px -14px rgba(13, 27, 42, .4); animation: bubble-in .5s .7s cubic-bezier(.2, .8, .2, 1) both; }
.bubble strong { display: block; }

@keyframes profi-in { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes bubble-in { from { opacity: 0; transform: scale(.85); transform-origin: bottom left; } to { opacity: 1; transform: none; } }

.hero__form { grid-area: form; }
.lead-card { padding: 32px 30px 26px; }
.status { display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px; border-radius: 999px; background: rgba(47, 191, 113, .14); color: #7BE0A8; font-size: .8rem; font-weight: 600; margin-bottom: 16px; }
.status span { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(47, 191, 113, .6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(47, 191, 113, 0); } 100% { box-shadow: 0 0 0 0 rgba(47, 191, 113, 0); } }
.lead-card h2 { font-size: 1.35rem; line-height: 1.3; margin-bottom: 6px; }
.lead-card > p { color: var(--muted-on-navy); font-size: .95rem; margin-bottom: 22px; }

/* ---------- formulários ---------- */
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--muted-on-navy); }
.field label small { font-weight: 400; }
.field input { width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid transparent; background: var(--white); color: var(--ink); font-size: .95rem; }
.field input::placeholder { color: #8C98A5; }
.field input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255, 122, 0, .25); }
.form-error { display: none; margin-top: 12px; padding: 10px 12px; border-radius: 10px; background: #FDECEA; color: var(--danger); font-size: .9rem; text-align: center; }
.form-error.is-visible { display: block; }
.lgpd { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 14px; font-size: .78rem; color: var(--muted-on-navy); }
.lgpd .i { width: 16px; height: 16px; }
.lead-card .btn { margin-top: 8px; }

/* ---------- vantagens ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.compare__col { border-radius: var(--radius-lg); padding: 40px; }
.compare__col h3 { margin-bottom: 24px; font-size: 1.35rem; }
.compare__col li { display: flex; gap: 14px; align-items: flex-start; }
.compare__col li + li { margin-top: 18px; }
.compare__col li .i { margin-top: 3px; }
.compare__col--old { background: var(--light); border: 1px solid var(--line); color: var(--muted); }
.compare__col--old h3 { color: var(--ink); }
.compare__col--old .i { color: #8C98A5; }
.compare__col--new { background: var(--navy); color: var(--muted-on-navy); }
.compare__col--new h3 { color: var(--white); }
.compare__col--new strong { color: var(--white); font-weight: 600; }
.compare__col--new .i { color: var(--orange); }

/* ---------- solução / equipe ---------- */
.team { display: grid; grid-template-columns: 1fr 1fr .9fr; gap: 24px; align-items: stretch; }
.hire { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 8px; background: var(--navy-2); border-radius: var(--radius-lg); padding: 28px 24px 0 28px; overflow: hidden; }
.hire__info { align-self: start; padding-bottom: 28px; }
.hire__role { color: var(--orange); font-weight: 600; font-size: .95rem; }
.hire__name { font-size: 2.2rem; margin: 2px 0 8px; }
.hire__perfil { color: var(--muted-on-navy); font-size: .95rem; margin-bottom: 18px; }
.hire__price { margin-bottom: 18px; line-height: 1.35; }
.hire__price strong { font-size: 1.35rem; }
.hire__price span { display: block; font-size: .88rem; color: var(--muted-on-navy); }
.hire__link { color: var(--orange); font-weight: 600; text-decoration: none; }
.hire__link:hover { text-decoration: underline; }
.hire img { width: 120px; }

.custom { padding: 8px 0 8px 28px; border-left: 1px solid var(--line-on-navy); }
.custom h3 { margin-bottom: 10px; }
.custom p { color: var(--muted-on-navy); font-size: .95rem; margin-bottom: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chips li { padding: 6px 14px; border: 1px solid var(--line-on-navy); border-radius: 999px; font-size: .88rem; }

/* ---------- como funciona ---------- */
.how { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.how .lead { margin: 16px 0 36px; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.steps li + li { margin-top: 28px; }
.steps__n { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--white); border: 2px solid var(--orange); color: var(--orange-ink); font-weight: 700; }
.steps h3 { margin-bottom: 4px; }
.steps p { color: var(--muted); }

.deliver { background: var(--white); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--line); }
.deliver > h3 { font-size: 1.35rem; margin-bottom: 8px; }
.deliver li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 22px 0; }
.deliver li + li { border-top: 1px solid var(--line); }
.deliver li .i { width: 44px; height: 44px; padding: 10px; border-radius: 12px; background: var(--light); color: var(--orange-ink); }
.deliver h4 { font-size: 1rem; font-weight: 600; }
.deliver p { color: var(--muted); font-size: .93rem; }

/* ---------- quem somos ---------- */
.about { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: start; }
.about__text h2 { margin-bottom: 24px; }
.about__text p { color: var(--muted); max-width: 62ch; }
.about__text p + p { margin-top: 16px; }
.about__text .segments { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.about__text .segments h3 { font-size: 1rem; margin-bottom: 8px; color: var(--ink); }

.company { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 36px; }
.company__logo { width: 88px; margin-bottom: 20px; }
.company__name { font-size: 1.25rem; font-weight: 700; }
.company__since { font-size: 3rem; font-weight: 700; line-height: 1; letter-spacing: -0.03em; color: var(--orange); margin: 20px 0 4px; }
.company__since + p { color: var(--muted-on-navy); font-size: .95rem; }
.company__facts { margin: 24px 0; padding: 20px 0; border-block: 1px solid var(--line-on-navy); }
.company__facts li { display: flex; gap: 12px; font-size: .93rem; color: var(--muted-on-navy); }
.company__facts li + li { margin-top: 10px; }
.company__facts .i { color: var(--orange); margin-top: 3px; width: 18px; height: 18px; }
.company address { font-style: normal; font-size: .9rem; color: var(--muted-on-navy); line-height: 1.8; }
.company address a { color: var(--white); }

.lgpd-block { margin-top: 64px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; padding: 40px; background: var(--light); border-radius: var(--radius-lg); }
.lgpd-block h3 { font-size: 1.35rem; margin-bottom: 12px; }
.lgpd-block p { color: var(--muted); font-size: .95rem; }
.lgpd-block ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.lgpd-block li { display: flex; gap: 10px; font-size: .92rem; }
.lgpd-block li .i { color: var(--orange-ink); width: 18px; height: 18px; margin-top: 3px; }

/* ---------- CTA laranja ---------- */
.cta { background: var(--orange); color: var(--navy); padding-block: 80px; }
.cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta h2 { max-width: 16ch; }
.cta p { max-width: 46ch; margin-top: 12px; font-size: 1.05rem; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta .btn--outline:hover { background: rgba(13, 27, 42, .08); }

/* ---------- rodapé ---------- */
.site-footer { background: var(--navy); color: var(--muted-on-navy); padding: 64px 0 32px; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1.4fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-on-navy); }
.footer__tag { margin-top: 14px; max-width: 32ch; }
.site-footer h3 { color: var(--white); font-size: .95rem; margin-bottom: 12px; }
.footer__nav li + li { margin-top: 8px; }
.site-footer a { color: var(--muted-on-navy); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer address { font-style: normal; line-height: 1.8; }
.footer__bottom { padding-top: 24px; font-size: .85rem; }

/* ---------- modais (dialog) ---------- */
dialog.modal { width: min(440px, calc(100% - 32px)); border: 0; border-radius: var(--radius-lg); padding: 0; color: var(--ink); box-shadow: 0 40px 80px -30px rgba(13, 27, 42, .6); }
dialog.modal::backdrop { background: rgba(13, 27, 42, .6); backdrop-filter: blur(3px); }
dialog.modal[open] { animation: modal-in .25s ease-out; }
@keyframes modal-in { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.modal__inner { position: relative; padding: 36px 32px 30px; }
.modal__close { position: absolute; top: 14px; right: 14px; background: none; border: 0; padding: 6px; color: #8C98A5; cursor: pointer; border-radius: 8px; }
.modal__close:hover { color: var(--ink); }
.modal__icon { width: 64px; height: 64px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; background: #DFF6EA; color: #1E8B52; }
.modal__icon .i { width: 32px; height: 32px; }
.modal h2 { font-size: 1.5rem; margin-bottom: 12px; text-align: center; }
.modal p { color: var(--muted); text-align: center; }
.modal__box { margin: 22px 0 26px; padding: 16px; border-radius: var(--radius-md); background: var(--light); text-align: center; font-size: .9rem; color: var(--muted); }
.modal__box strong { display: block; color: var(--ink); word-break: break-all; margin-top: 4px; }
.modal .field label { color: var(--muted); }
.modal .field input { border-color: var(--line); }
.modal .lgpd { color: var(--muted); }

/* ---------- produtos.html ---------- */
.page-intro { padding: calc(var(--header-h) + 64px) 0 56px; background: var(--light); }
.page-intro .wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: end; }
.page-intro h1 { margin-bottom: 16px; }
.hire-steps { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 30px; }
.hire-steps h2 { font-size: 1.05rem; margin-bottom: 18px; letter-spacing: -0.01em; }
.hire-steps .steps li + li { margin-top: 16px; }
.hire-steps .steps__n { width: 34px; height: 34px; font-size: .9rem; }
.hire-steps .steps li { grid-template-columns: 34px 1fr; gap: 14px; align-items: center; }
.hire-steps .steps p { color: var(--ink); font-size: .93rem; line-height: 1.45; }

.products { padding: 8px 0 96px; background: var(--light); }
.products .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.product { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.product__top { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: end; background: var(--navy); color: var(--white); padding: 32px 32px 0; }
.product__top > div { align-self: center; padding-bottom: 32px; }
.product__role { color: var(--orange); font-weight: 600; }
.product__name { font-size: clamp(2.6rem, 4vw, 3.4rem); line-height: 1; margin: 4px 0 12px; letter-spacing: -0.03em; }
.product__perfil { color: var(--muted-on-navy); font-size: 1.05rem; }
.product__top img { height: 190px; width: auto; }
.product__body { display: flex; flex-direction: column; gap: 26px; flex: 1; padding: 32px; }
.product__body h3 { font-size: .95rem; margin-bottom: 10px; }
.product__list li { display: flex; gap: 10px; color: var(--muted); font-size: .95rem; }
.product__list li + li { margin-top: 8px; }
.product__list .i { color: var(--orange-ink); width: 18px; height: 18px; margin-top: 4px; }
.product__list strong { color: var(--ink); font-weight: 600; }

.price { margin: auto 20px 0; display: grid; grid-template-columns: 1fr 1fr; padding: 22px 8px; }
.price > div { padding: 0 20px; }
.price > div + div { border-left: 1px solid var(--line-on-navy); }
.price dt { font-size: .85rem; color: var(--muted-on-navy); }
.price dd { margin: 2px 0 0; font-size: 1.9rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.price dd small { display: block; font-size: .8rem; font-weight: 400; color: var(--muted-on-navy); letter-spacing: 0; }
.product__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.product__actions .btn--outline { color: var(--navy); }

.addons { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.addons .lead { margin: 16px 0 28px; }
.addons__list li { display: flex; align-items: center; gap: 16px; padding: 18px 0; font-weight: 600; font-size: 1.05rem; }
.addons__list li + li { border-top: 1px solid var(--line-on-navy); }
.addons__list .i { width: 44px; height: 44px; padding: 10px; border-radius: 12px; background: var(--navy-2); color: var(--orange); }
.addons__list li:last-child { color: var(--muted-on-navy); font-weight: 400; font-size: .95rem; }
.addons__mail { margin-top: 14px; font-size: .9rem; color: var(--muted-on-navy); }
.addons__mail a { color: var(--white); }

/* ---------- responsivo ---------- */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 220px 1fr; grid-template-areas: "profi text" "form form"; column-gap: 40px; row-gap: 48px; }
  .hero__form { max-width: 560px; width: 100%; justify-self: center; }
  .hero__profi { margin-top: 70px; }
  .bubble { left: 10px; top: -70px; }
  .team { grid-template-columns: 1fr 1fr; }
  .custom { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line-on-navy); padding: 28px 0 0; }
  .products .wrap, .page-intro .wrap { grid-template-columns: 1fr; }
  .products .wrap { max-width: 640px; }
}

@media (max-width: 900px) {
  .section { padding-block: 72px; }
  .compare, .how, .about, .addons, .lgpd-block { grid-template-columns: 1fr; gap: 32px; }
  .compare__col { padding: 30px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .wrap { padding-inline: 20px; }
  .hero { padding-top: calc(var(--header-h) + 32px); }
  .hero__grid { grid-template-columns: 1fr; grid-template-areas: "profi" "text" "form"; row-gap: 28px; }
  .hero__profi { flex-direction: row; justify-content: flex-start; align-items: flex-end; gap: 12px; }
  .hero__profi img { max-width: 120px; }
  .hero__profi::after { display: none; }
  .hero__profi { margin-top: 0; }
  .bubble { position: static; margin-bottom: 36px; }
  .team { grid-template-columns: 1fr; }
  .lgpd-block { padding: 28px; }
  .lgpd-block ul { grid-template-columns: 1fr; }
  .visor::before, .visor::after { width: 7px; height: 44px; margin-top: -22px; }
  .visor::before { left: -15px; }
  .visor::after { right: -15px; }
  .lead-card { padding: 26px 20px 20px; }
  .product__top { padding: 24px 24px 0; }
  .product__top img { height: 150px; }
  .product__body { padding: 24px; }
  .price { margin-inline: 14px; }
  .price > div { padding: 0 12px; }
  .price dd { font-size: 1.5rem; }
  .product__actions { grid-template-columns: 1fr; }
  .cta .wrap { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
