/* ===================== Base ===================== */
:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
  --soft: #f8fafc;
  --accent: #d81b60;       /* magenta */
  --accent-2: #a10f45;     /* deeper magenta */
  --accent-soft: rgba(216, 27, 96, 0.08);

  --wa: #16a34a;           /* WhatsApp-ish green */
  --wa-soft: rgba(22, 163, 74, 0.10);

  --shadow-1: 0 8px 30px rgba(2, 6, 23, 0.06);
  --shadow-2: 0 12px 40px rgba(2, 6, 23, 0.08);

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: 1150px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}

/* Typography upgrade for headings */
h1, h2, h3, h4, h5{
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  letter-spacing: -0.6px;
}
h3{letter-spacing: -0.4px}
h4{letter-spacing: -0.3px}

/* ===================== Utilities ===================== */
.container{
  width: min(100% - 32px, var(--container));
  margin-inline:auto;
}
.accent{color:var(--accent)}
.muted{color:var(--muted)}
.w-100{width:100%}
.mt-8{margin-top:8px}

/* ===================== Header ===================== */
.header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
}
.brand__dot{
  width:12px; height:12px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, #ff5ca8, var(--accent));
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.brand__name{
  font-weight:800;
  letter-spacing: 0.8px;
  font-size: 20px;
}
.brand--footer .brand__name{font-size:22px}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:500;
  font-size: 14.5px;
}
.nav a:hover{color:var(--text)}

.nav__cta{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  font-weight: 600;
}
.nav__cta:hover{
  background: var(--accent-soft);
}

/* WhatsApp nav button */
.nav__wa{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(22,163,74,0.35);
  color: var(--wa) !important;
  font-weight: 700;
  background: #fff;
}
.nav__wa:hover{
  background: var(--wa-soft);
}

/* Mobile nav button */
.nav-toggle{
  display:none;
  background: transparent;
  border:1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 38px;
  padding: 7px 8px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
}

/* ===================== Hero ===================== */
.hero{
  padding: 56px 0 30px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items:center;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: var(--soft);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--muted);
}
.pill__dot{
  width:8px; height:8px;
  border-radius:50%;
  background: var(--accent);
}
.hero h1{
  font-size: clamp(32px, 4vw, 48px);
  line-height:1.06;
  margin: 14px 0 12px;
}
.hero__sub{
  color: var(--muted);
  font-size: 16.2px;
  max-width: 50ch;
}

.hero__cta{
  display:flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap:wrap;
}

/* Trust mini cards */
.hero__trust{
  display:flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap:wrap;
}
.trust-card{
  background: #fff;
  border:1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  min-width: 140px;
}
.trust-card__label{
  display:block;
  font-size: 11.5px;
  color: var(--muted);
}
.trust-card__value{
  font-weight: 700;
  font-size: 14.5px;
}

/* Mock UI */
.mock{
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  overflow:hidden;
  background: #fff;
}
.mock__top{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom:1px solid var(--border);
  background: linear-gradient(90deg, var(--accent-soft), transparent);
}
.dot{width:10px; height:10px; border-radius:50%}
.dot--r{background:#ff5a5f}
.dot--y{background:#fbbf24}
.dot--g{background:#22c55e}
.mock__title{
  margin-left: 8px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}
.mock__body{padding: 18px 18px 16px}
.mock__stat{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #edf2f7;
}
.mock__stat .label{
  color: var(--muted);
  font-size: 12.5px;
}
.mock__stat .value{
  font-weight: 600;
  font-size: 12.8px;
  text-align:right;
}
.mock__chart{
  margin: 16px 0 8px;
  padding: 10px;
  border-radius: var(--radius-md);
  background: var(--soft);
  color: var(--accent);
  border: 1px solid var(--border);
}
.mock__footer{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
  margin-top: 10px;
}
.tag{
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-2);
  border: 1px solid rgba(216,27,96,0.18);
}

/* ===================== Strip ===================== */
.strip{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background: #fff;
}
.strip__inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 16px;
  padding: 16px 0;
  flex-wrap:wrap;
  color: var(--muted);
  font-size: 12.8px;
  font-weight: 600;
}
.strip__dot{
  width:6px; height:6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* ===================== Sections ===================== */
.section{
  padding: 64px 0;
}
.section--alt{
  background: var(--soft);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section__head{
  text-align:center;
  margin-bottom: 32px;
}
.section__head h2{
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 8px;
}
.section__head p{
  margin: 0 auto;
  color: var(--muted);
  max-width: 62ch;
}

/* Grid system */
.grid{
  display:grid;
  gap: 18px;
}
.grid--2{grid-template-columns: repeat(2, minmax(0,1fr))}
.grid--3{grid-template-columns: repeat(3, minmax(0,1fr))}
.grid--4{grid-template-columns: repeat(4, minmax(0,1fr))}

/* Cards */
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{
  transform: translateY(-3px);
  border-color: rgba(216,27,96,0.25);
  box-shadow: var(--shadow-2);
}
.card__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.6px;
  font-size: 12px;
  margin-bottom: 12px;
}
.card h3{margin: 6px 0 8px}
.card p{color: var(--muted); margin: 0 0 14px}

/* Checklist */
.checklist{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 8px;
}
.checklist li{
  position:relative;
  padding-left: 22px;
  color: #1f2937;
  font-size: 14px;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top: -1px;
  color: var(--accent);
  font-weight: 800;
}

/* Mini feature blocks */
.mini{
  background: #fff;
  border:1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
}
.mini__num{
  display:inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.mini h4{margin: 4px 0 8px}
.mini p{margin:0; color: var(--muted); font-size: 13.6px}

/* Stats counters */
.stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 26px;
}
.stat{
  background: #fff;
  border:1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align:center;
}
.stat__value{
  display:block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.stat__label{
  font-size: 12.5px;
  color: var(--muted);
}

/* ===================== Timeline ===================== */
.timeline{
  display:grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.step{
  display:grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items:flex-start;
  background: #fff;
  border:1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
}
.step__badge{
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--accent);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
}
.step__body h3{margin: 2px 0 6px}
.step__body p{margin:0; color: var(--muted)}

/* ===================== Report Section ===================== */
.report{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items:center;
}
.report-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 14px;
}
.report-card h4{margin: 0 0 10px}
.report-card ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13.8px;
}
.report__actions{
  display:flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap:wrap;
}

/* Paper mock */
.paper{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 18px 14px;
  box-shadow: var(--shadow-1);
}
.paper__header{
  display:flex;
  justify-content: space-between;
  align-items:center;
  border-bottom:1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.paper__title{font-weight: 800}
.paper__sub{font-size: 11.5px; color: var(--muted)}
.paper__badge{
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 8px;
  border-radius: 999px;
}
.paper__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 8px;
}
.paper__metric{
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 10px;
  background: var(--soft);
}
.paper__metric .k{
  font-size: 10.5px;
  color: var(--muted);
  display:block;
}
.paper__metric .v{
  font-weight: 700;
  font-size: 13px;
}
.paper__block{
  margin-top: 12px;
  border:1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
}
.paper__block-title{
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.paper__bars{
  display:grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  align-items:end;
  height: 70px;
}
.paper__bars span{
  display:block;
  background: var(--accent-soft);
  border:1px solid rgba(216,27,96,0.18);
  border-radius: 6px;
  height: 20%;
}
.paper__bars span:nth-child(1){height: 25%}
.paper__bars span:nth-child(2){height: 35%}
.paper__bars span:nth-child(3){height: 48%}
.paper__bars span:nth-child(4){height: 42%}
.paper__bars span:nth-child(5){height: 55%}
.paper__bars span:nth-child(6){height: 62%}
.paper__bars span:nth-child(7){height: 50%}
.paper__bars span:nth-child(8){height: 68%}
.paper__bars span:nth-child(9){height: 60%}
.paper__bars span:nth-child(10){height: 72%}
.paper__table .row{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 8px;
  padding: 8px 0;
  font-size: 11.8px;
  border-bottom:1px dashed #eef2f7;
}
.paper__table .row.head{
  font-weight: 700;
  color: var(--text);
}
.paper__foot{
  margin-top: 10px;
  font-size: 10.8px;
  color: var(--muted);
}

/* ===================== Pricing ===================== */
/* ✅ FIX: 4 equal cards in one row on desktop */
.pricing{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  align-items: stretch;
}

/* ✅ Equal-height card behavior */
.pricing-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px 22px;
  box-shadow: var(--shadow-1);
  position:relative;

  display:flex;
  flex-direction: column;
  height: 100%;
}

/* If you ever want a subtle "lite" variant, this is safe to keep */
.pricing-card--lite{
  border-color: var(--border);
}

/* ✅ Make buttons stack nicely at bottom if content differs */
.pricing-card .btn.w-100{
  justify-content: center;
}
.pricing-card .pricing-card__note{
  margin-top: auto;
}

.pricing-card--pro{
  border-color: rgba(216,27,96,0.35);
  box-shadow: 0 18px 55px rgba(216,27,96,0.08);
  transform: translateY(-4px);
}
.pricing-card__tag{
  position:absolute;
  top: 14px;
  right: 14px;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 8px;
  border-radius: 999px;
}
.pricing-card__tag--hot{
  color:#fff;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.price{
  margin: 14px 0 14px;
}
.price__main{
  font-size: 32px;
  font-weight: 800;
}
.price__sub{
  display:block;
  color: var(--muted);
  font-size: 12.5px;
}
.pricing-card__note{
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--muted);
}

/* ===================== Quotes ===================== */
.quote{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}
.quote p{
  margin:0 0 18px;
  color:#111827;
}
.quote__by{
  display:flex;
  align-items:center;
  gap: 10px;
}
.avatar{
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  border: 1px solid var(--border);
}
.quote__by strong{
  display:block;
  font-size: 13.5px;
}
.quote__by span{
  font-size: 11.5px;
  color: var(--muted);
}

/* ===================== FAQ ===================== */
.faq{
  max-width: 900px;
  margin: 0 auto;
  display:grid;
  gap: 10px;
}
.faq__item{
  text-align:left;
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 16px 14px;
  cursor:pointer;
  display:grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 8px 12px;
  align-items:center;
}
.faq__q{
  font-weight: 600;
  font-size: 15px;
}
.faq__icon{
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  width: 26px;
  height: 26px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 8px;
  background: var(--accent-soft);
}
.faq__a{
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13.8px;
  display:none;
}
.faq__item[aria-expanded="true"] .faq__a{
  display:block;
}
.faq__item[aria-expanded="true"] .faq__icon{
  transform: rotate(45deg);
}
.faq__cta-row{
  display:flex;
  justify-content:center;
  margin-top: 16px;
}

/* ===================== CTA Band ===================== */
.cta{
  background: #fff;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding: 44px 0;
}
.cta__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.cta h2{margin:0 0 6px}
.cta p{margin:0; color: var(--muted)}
.cta__actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* ===================== Contact ===================== */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items:start;
}
.contact__points{
  display:grid;
  gap: 8px;
  margin: 18px 0 22px;
}
.point{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--muted);
  font-size: 14px;
}
.point__dot{
  width:8px; height:8px;
  border-radius: 50%;
  background: var(--accent);
}
.contact__panel{
  background: var(--soft);
  border:1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 14px;
}
.panel-row{
  display:flex;
  justify-content:space-between;
  padding: 8px 0;
  border-bottom:1px dashed #e9eef5;
}
.panel-row:last-child{border-bottom:none}
.panel-row .k{color: var(--muted); font-size: 12px}
.panel-row .v{font-weight: 600; font-size: 12.8px}
.contact__panel-actions{
  margin-top: 10px;
}

/* Form */
.form{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-1);
}
.form__row{
  display:grid;
  gap: 6px;
  margin-bottom: 14px;
}
.form label{
  font-size: 12.2px;
  font-weight: 600;
  color: #111827;
}
.form input, .form select, .form textarea{
  border:1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  font-size: 14px;
  outline:none;
  background: #fff;
}
.form input:focus, .form select:focus, .form textarea:focus{
  border-color: rgba(216,27,96,0.45);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.form__fine{
  margin: 10px 0 0;
  font-size: 11.2px;
  color: var(--muted);
}
.form__success{
  margin-top: 10px;
  font-size: 12.2px;
  font-weight: 600;
  color: #065f46;
}

/* ===================== Buttons ===================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 650;
  font-size: 14px;
  text-decoration:none;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn--sm{padding: 9px 12px; font-size: 12.8px}

.btn--primary{
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(216,27,96,0.22);
}
.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(216,27,96,0.28);
}

.btn--ghost{
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover{
  border-color: rgba(216,27,96,0.25);
  background: var(--accent-soft);
}

/* WhatsApp button variant */
.btn--wa{
  background: #fff;
  border-color: rgba(22,163,74,0.35);
  color: var(--wa);
  font-weight: 700;
}
.btn--wa:hover{
  background: var(--wa-soft);
  transform: translateY(-1px);
}

/* ===================== Disclaimer ===================== */
.disclaimer{
  background: #0b1220;
  color: #e5e7eb;
  padding: 22px 0;
  font-size: 12.2px;
}
.disclaimer strong{color:#fff}

/* ===================== Footer ===================== */
.footer{
  padding: 54px 0 24px;
  background: #fff;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.footer__col h5{
  margin: 0 0 10px;
  font-size: 12.5px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #0f172a;
  font-family: Inter, system-ui, sans-serif;
}
.footer__col a{
  display:block;
  text-decoration:none;
  color: var(--muted);
  font-size: 12.8px;
  margin: 6px 0;
}
.footer__col a:hover{color: var(--accent)}
.footer__wa{
  margin-top: 8px !important;
  color: var(--wa) !important;
  font-weight: 700;
}
.footer__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding-top: 14px;
  color: var(--muted);
  font-size: 12px;
  flex-wrap:wrap;
}
.footer__links{
  display:flex;
  gap: 12px;
}
.footer__links a{
  color: var(--muted);
  text-decoration:none;
}
.footer__links a:hover{color: var(--accent)}

/* ===================== Floating WhatsApp ===================== */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;

  display:inline-flex;
  align-items:center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(22,163,74,0.28);
  box-shadow: 0 12px 34px rgba(2,6,23,0.12);

  text-decoration: none;
  color: var(--wa);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.2px;
}
.wa-float:hover{
  background: var(--wa-soft);
}
.wa-float__dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 4px var(--wa-soft);
}
.wa-float__text{
  transform: translateY(-0.5px);
}

/* ===================== Responsive ===================== */
@media (max-width: 1100px){
  .hero__grid, .report, .contact{
    grid-template-columns: 1fr;
  }
  .grid--4{grid-template-columns: repeat(2, minmax(0,1fr))}
  .pricing{grid-template-columns: repeat(2, minmax(0,1fr))}
}

@media (max-width: 900px){
  .grid--3{grid-template-columns: repeat(2, minmax(0,1fr))}
  .stats{grid-template-columns: 1fr 1fr}
  .footer__grid{grid-template-columns: 1fr 1fr}
}

@media (max-width: 760px){
  .nav-toggle{display:block}
  .nav{
    position: fixed;
    inset: 80px 16px auto 16px;
    background: #fff;
    border:1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap: 12px;
    box-shadow: var(--shadow-2);
  }
  .nav.nav--open{display:flex}
  .nav a{font-size: 15px}

  .hero{padding-top: 40px}
  .strip__inner{justify-content:flex-start}
  .pricing{grid-template-columns: 1fr}
}

@media (max-width: 520px){
  .grid--2, .grid--3, .grid--4{
    grid-template-columns: 1fr;
  }
  .stats{grid-template-columns: 1fr}
  .paper__grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .footer__grid{grid-template-columns: 1fr}

  .wa-float{
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
  }
}
