/* =========================================================
   Selfie → Ensaio | Landing page mobile-first
   Paleta: fundo escuro + tons de rosa/vinho, títulos serifados
   ========================================================= */

:root {
  --bg: #12070d;
  --bg-alt: #1b0c14;
  --card: #201019;
  --card-border: #3a1a2a;
  --wine: #7a1f3d;
  --wine-deep: #4a1226;
  --pink: #ff5d8f;
  --pink-soft: #ff8fb8;
  --pink-dim: #ff4d8d;
  --text: #f7ecf1;
  --text-muted: #c9adb8;
  --text-faint: #8f7480;
  --ok: #7fd8a3;
  --x: #6b5760;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-btn: 0 10px 25px rgba(255, 77, 141, 0.35);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --sticky-h: 68px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--sticky-h) + var(--safe-bottom));
}

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

h1, h2, h3, .serif {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--text);
}

p { margin: 0 0 1em; color: var(--text-muted); }

a { color: inherit; }

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

section { padding: 56px 0; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--pink-soft);
  background: rgba(255, 93, 143, 0.12);
  border: 1px solid rgba(255, 93, 143, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(26px, 6vw, 40px);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--wine) 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { opacity: .95; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--card-border);
}
.btn-outline:hover { border-color: var(--pink-soft); }

.btn-sm { min-height: 44px; padding: 10px 20px; font-size: 15px; width: auto; }

.guarantee-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 10px;
  text-align: center;
  font-size: 13px;
  color: var(--text-faint);
  margin: 14px 0 0;
}
.guarantee-line svg { flex-shrink: 0; }
.guarantee-line .dot { opacity: .5; }

/* ---------- Scroll reveal (fade-in + leve subida) ---------- */
/* Só fica oculto por padrão quando o JS confirma que está ativo (classe "js"
   adicionada em <html> por um script inline no <head>) — sem JS, ou com
   prefers-reduced-motion, o conteúdo já nasce visível. Anima só na primeira
   vez que entra na viewport (ver .is-visible em js/main.js). */
html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .32s ease-out, transform .32s ease-out;
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
html.js .reveal.reveal-zoom { transform: translateY(20px) scale(.95); }
html.js .reveal.reveal-zoom.is-visible { transform: translateY(0) scale(1); }

/* Stagger: aplicado ao container (".reveal-stagger"), delay crescente por filho direto */
html.js .reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
html.js .reveal-stagger > .reveal:nth-child(2) { transition-delay: 80ms; }
html.js .reveal-stagger > .reveal:nth-child(3) { transition-delay: 160ms; }
html.js .reveal-stagger > .reveal:nth-child(4) { transition-delay: 240ms; }
html.js .reveal-stagger > .reveal:nth-child(5) { transition-delay: 320ms; }
html.js .reveal-stagger > .reveal:nth-child(6) { transition-delay: 400ms; }
html.js .reveal-stagger > .reveal:nth-child(7) { transition-delay: 480ms; }
html.js .reveal-stagger > .reveal:nth-child(8) { transition-delay: 560ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.reveal-zoom {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Header ---------- */
.top-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  padding: 18px 0 0;
}
.top-nav .container { display: flex; align-items: center; justify-content: center; }
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em;
}
.brand img { width: 26px; height: 26px; border-radius: 7px; }

/* ---------- Hero (foto de fundo full-bleed) ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 90px 0 48px;
  text-align: center;
  overflow: hidden;
  background: var(--bg); /* fallback enquanto a foto carrega */
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18,7,13,.58) 0%, rgba(24,8,16,.72) 30%, rgba(48,13,32,.84) 55%, rgba(58,15,40,.93) 75%, rgba(14,6,10,.97) 100%),
    radial-gradient(120% 60% at 50% 0%, rgba(122, 31, 61, 0.35) 0%, rgba(18, 7, 13, 0) 60%);
}
.hero .container { position: relative; z-index: 2; }

.hero h1 { font-size: clamp(30px, 7.5vw, 48px); max-width: 720px; margin-left: auto; margin-right: auto; text-shadow: 0 2px 18px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.6); }
.hero h1 .accent-soft {
  color: var(--pink-soft);
}
.hero h1 .pinterest-word {
  font-family: "Baloo 2", "Poppins", "Inter", sans-serif;
  font-weight: 800;
  color: #E60023;
  text-shadow: 0 2px 4px rgba(0,0,0,.5), 0 0 22px rgba(0,0,0,.35);
}
.hero .sub {
  font-size: 17px;
  max-width: 460px;
  margin: 0 auto 26px;
  color: #f2e7ec;
  text-shadow: 0 1px 10px rgba(0,0,0,.6), 0 1px 2px rgba(0,0,0,.7);
}
.hero .cta-wrap { max-width: 420px; margin: 0 auto; }
.hero .guarantee-line {
  color: #ecdce3;
  text-shadow: 0 1px 8px rgba(0,0,0,.65), 0 1px 2px rgba(0,0,0,.8);
}
.hero .eyebrow {
  background: rgba(18, 7, 13, .55);
  border-color: rgba(255, 93, 143, .55);
  backdrop-filter: blur(3px);
}

/* ---------- Compare slider ---------- */
.compare-wrap { max-width: 420px; margin: 0 auto; }
.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--card-border);
  touch-action: pan-y;
  user-select: none;
  background: #000;
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.compare .after-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 50%);
}
.compare .after-layer img { position: absolute; inset: 0; }
.compare .tag {
  position: absolute;
  top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  z-index: 2;
}
.compare .tag.before-tag { left: 12px; }
.compare .tag.after-tag { right: 12px; }
.compare .handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
  z-index: 3;
}
.compare .knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.4);
  z-index: 4;
  cursor: ew-resize;
}
.compare .knob svg { width: 20px; height: 20px; }
.compare-caption {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 14px;
}
.compare-caption strong { color: var(--pink-soft); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 460px;
  margin: 0 auto 32px;
}
.step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 18px;
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--wine) 100%);
  color: #fff;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card h3 { font-size: 17px; margin-bottom: 4px; font-family: "Inter", sans-serif; font-weight: 700; }
.step-card p { font-size: 14.5px; margin: 0; }
.steps-cta { max-width: 420px; margin: 0 auto; text-align: center; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--card-border);
  background: var(--card);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,0) 100%);
}
.gallery-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-faint);
  margin-top: 16px;
}

/* ---------- Testimonials (carrossel de prints de conversa) ---------- */
.testi-carousel {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.testi-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  scrollbar-width: none;
  outline: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-slide {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
}
.testi-slide img { width: 100%; height: auto; display: block; }

.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(18, 7, 13, .75);
  border: 1px solid var(--card-border);
  color: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  backdrop-filter: blur(4px);
  -webkit-tap-highlight-color: transparent;
}
.testi-arrow svg { width: 18px; height: 18px; }
.testi-arrow:hover { border-color: var(--pink-soft); }
.testi-prev { left: -6px; }
.testi-next { right: -6px; }

.testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--card-border);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.testi-dot.is-active { background: var(--pink); transform: scale(1.35); }

/* ---------- Pricing ---------- */
.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 420px;
  margin: 0 auto;
}
.plan-card {
  background: var(--card);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  /* Elevação só via sombra (não via transform) pra não brigar com o transform
     da animação de entrada (scroll reveal / zoom do card em destaque). */
  .plan-card { transition: box-shadow .2s ease-out; }
  .plan-card:hover { box-shadow: 0 26px 60px rgba(0, 0, 0, .55); }
  .bonus-item { transition: background-color .2s ease-out; border-radius: var(--radius-sm); padding: 4px 6px; margin: -4px -6px; }
  .bonus-item:hover { background-color: rgba(255, 93, 143, .07); }
}
.plan-card.featured {
  order: -1;
  border: 2px solid var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 93, 143, 0.12), var(--shadow-lg);
  padding-top: 40px;
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink) 0%, var(--wine) 100%);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 7px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(255,77,141,.4);
}
.plan-name { font-size: 20px; margin-bottom: 2px; }
.plan-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.plan-price { font-family: "Playfair Display", serif; font-size: 40px; font-weight: 700; color: var(--pink-soft); }
.featured .plan-price { color: var(--pink); }
.plan-price-old { font-size: 15px; color: var(--text-faint); text-decoration: line-through; }
.plan-cadence { font-size: 13px; color: var(--text-faint); margin-bottom: 18px; }

.bonus-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 93, 143, 0.1);
  border: 1px dashed rgba(255, 93, 143, 0.4);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--pink-soft);
  margin-bottom: 18px;
  font-weight: 600;
}
.bonus-summary strong { font-family: "Playfair Display", serif; font-size: 17px; }

.plan-features { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text); }
.plan-features li.muted { color: var(--text-faint); }
.plan-features .ico { flex-shrink: 0; margin-top: 2px; }
.plan-features .ico.check { color: var(--ok); }
.plan-features .ico.x { color: var(--x); }

.bonus-details {
  margin: 0 0 20px;
  padding: 14px 0 0;
  border-top: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bonus-item { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
.bonus-item .b-name { font-size: 13.5px; font-weight: 700; color: var(--text); }
.bonus-item .b-desc { font-size: 12.5px; color: var(--text-faint); margin-top: 2px; }
.bonus-item .b-value { flex-shrink: 0; text-align: right; font-size: 12px; }
.bonus-item .b-value .old { display: block; color: var(--text-faint); text-decoration: line-through; }
.bonus-item .b-value .free { display: block; color: var(--ok); font-weight: 700; }

.reinforce {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink-soft);
  background: rgba(255,93,143,.08);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-bottom: 18px;
}

/* ---------- Vídeo (embed Panda Video, formato Reels vertical 9:16) ---------- */
.video-wrap { max-width: 380px; margin: 0 auto; }
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
  background: var(--card);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 15.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex-shrink: 0; transition: transform .2s ease; color: var(--pink-soft); font-size: 20px; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 18px 16px; font-size: 14.5px; color: var(--text-muted); margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 40px 0 32px;
  text-align: center;
  border-top: 1px solid var(--card-border);
  margin-top: 20px;
}
.site-footer .brand { justify-content: center; margin-bottom: 14px; }
.footer-links { display: flex; justify-content: center; gap: 18px; margin-bottom: 14px; font-size: 13.5px; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--pink-soft); }
.footer-note { font-size: 12.5px; color: var(--text-faint); max-width: 480px; margin: 0 auto; }

/* ---------- Sticky CTA bar ---------- */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: rgba(18, 7, 13, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--card-border);
  padding: 10px 16px calc(10px + var(--safe-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform .25s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar .price-block { line-height: 1.2; }
.sticky-bar .price-from { font-size: 11px; color: var(--text-faint); }
.sticky-bar .price-value { font-family: "Playfair Display", serif; font-size: 19px; font-weight: 700; color: var(--pink-soft); }
.sticky-bar .btn { width: auto; min-height: 46px; padding: 0 22px; font-size: 15px; }

/* ---------- Modal de upsell (Plano Básico → Completo) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 4, 7, .78);
  backdrop-filter: blur(3px);
}
.modal-overlay:not([hidden]) { display: flex; }
body.modal-open { overflow: hidden; }

.modal-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  background: var(--card);
  border: 2px solid var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 93, 143, .12), var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 30px 24px 26px;
  text-align: center;
  animation: modal-pop .25s ease-out;
}
@keyframes modal-pop {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .modal-card { animation: none; }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, .04);
  color: var(--text-faint);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.modal-close:hover { color: var(--text); border-color: var(--pink-soft); }

.modal-card .eyebrow { margin-bottom: 14px; }
.modal-title {
  font-size: clamp(22px, 6vw, 26px);
  margin-bottom: 10px;
}
.modal-text {
  font-size: 14.5px;
  margin-bottom: 20px;
}
.modal-text strong { color: var(--pink-soft); }

.modal-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}
.modal-price-old {
  font-size: 18px;
  color: var(--text-faint);
  text-decoration: line-through;
}
.modal-price-new {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--pink);
}

.modal-perks {
  text-align: left;
  margin-bottom: 22px;
}

.modal-decline {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 8px;
  background: none;
  border: none;
  color: var(--text-faint);
  font-size: 13.5px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.modal-decline:hover { color: var(--text-muted); }

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* =========================================================
   Tablet / Desktop
   ========================================================= */
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 780px) {
  .steps { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
  .testi-carousel { max-width: 460px; }
  .testi-prev { left: -50px; }
  .testi-next { right: -50px; }
}

@media (min-width: 860px) {
  .hero .cta-wrap .btn { width: auto; min-width: 320px; }

  .pricing-wrap { flex-direction: row; align-items: flex-start; max-width: 900px; }
  .plan-card { flex: 1; }
  .plan-card.featured { order: 0; }
}

@media (min-width: 1024px) {
  section { padding: 84px 0; }
}
