/* Design tokens — used by page-level components */

:root {
  --mn-brand:       #e11d48;
  --mn-brand-hover: #be123c;
  --mn-dark:        #0f172a;
  --mn-text:        #1e293b;
  --mn-muted:       #64748b;
  --mn-border:      #e2e8f0;
  --mn-surface:     #f8fafc;
}
/* ============================================================
   Base — resets + global defaults
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1e293b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  padding-top: 68px;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
main { display: block; }

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

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  margin-top: 0;
}

.mn-container {
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

/* ============================================================
   Scroll animations
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="100"] { transition-delay: .1s; }
[data-reveal][data-delay="200"] { transition-delay: .2s; }
[data-reveal][data-delay="300"] { transition-delay: .3s; }
[data-reveal][data-delay="400"] { transition-delay: .4s; }
[data-reveal][data-delay="500"] { transition-delay: .5s; }

/* ============================================================
   Demo Modal
   ============================================================ */
.mn-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.mn-modal-overlay--open { display: flex; }

.mn-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn .22s cubic-bezier(.22,1,.36,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mn-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 99px;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background .15s, color .15s;
}
.mn-modal-close:hover { background: #e2e8f0; color: #0f172a; }

.mn-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Left panel */
.mn-modal-left {
  padding: 48px 40px;
  background: #0f172a;
  border-radius: 20px 0 0 20px;
  display: flex;
  flex-direction: column;
}
.mn-modal-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fb7185;
  margin-bottom: 14px;
}
.mn-modal-title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.mn-modal-desc {
  font-size: 14.5px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 28px;
}
.mn-modal-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.mn-modal-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #e2e8f0;
  line-height: 1.5;
}
.mn-modal-perks .bi-check-circle-fill { color: #e11d48; flex-shrink: 0; margin-top: 2px; }
.mn-modal-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #475569;
  margin-top: auto;
}
.mn-modal-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4ade80;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  transition: color .15s;
}
.mn-modal-wa:hover { color: #86efac; }

/* Right panel */
.mn-modal-right {
  padding: 48px 40px;
}
.mn-modal-form { display: flex; flex-direction: column; gap: 16px; }

.mn-field { display: flex; flex-direction: column; gap: 6px; }
.mn-field label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.mn-field input,
.mn-field select {
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14.5px;
  color: #0f172a;
  background: #fff;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}
.mn-field input:focus,
.mn-field select:focus {
  border-color: #e11d48;
  box-shadow: 0 0 0 3px rgba(225,29,72,.1);
}
.mn-field input::placeholder { color: #94a3b8; }

.mn-modal-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: #e11d48;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s, transform .12s;
  margin-top: 4px;
}
.mn-modal-submit:hover { background: #be123c; transform: translateY(-1px); }
.mn-modal-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.mn-modal-fine {
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
  margin: 0;
}

/* Success state */
.mn-modal-success {
  padding: 64px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.mn-modal-success .bi-check-circle-fill { font-size: 52px; color: #22c55e; }
.mn-modal-success h3 { font-size: 22px; font-weight: 800; color: #0f172a; margin: 0; }
.mn-modal-success p { font-size: 15px; color: #64748b; margin: 0; line-height: 1.65; }

/* Video modal */
.mn-video-overlay { align-items: center; justify-content: center; }
.mn-video-modal {
  width: 100%;
  max-width: 960px;
  position: relative;
  animation: modalIn .22s cubic-bezier(.22,1,.36,1);
}
.mn-video-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255,255,255,.15);
  color: #fff;
}
.mn-video-close:hover { background: rgba(255,255,255,.25); color: #fff; }
.mn-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.mn-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================================
   Landing Page Layout
   ============================================================ */
.lp-body { padding-top: 0; overflow-x: hidden; }

.lp-topbar-inner {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-topbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #e11d48;
  color: #fff !important;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 9px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s;
}
.lp-topbar-btn:hover { background: #be123c; }
@media (max-width: 600px) {
  .lp-topbar-inner { justify-content: center; }
  .lp-topbar-btn { display: none; }
}

/* ---- Footer ---- */
.lp-footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 24px 0;
  font-size: 13px;
  color: #94a3b8;
}
.lp-footer-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lp-footer-links { display: flex; gap: 16px; margin-left: auto; }
.lp-footer-links a { color: #94a3b8; text-decoration: none; transition: color .15s; }
.lp-footer-links a:hover { color: #0f172a; }

@media (max-width: 600px) {
  .lp-footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .lp-footer-links { margin-left: 0; }
}

/* ── Floating WhatsApp button ────────────────────────────── */
.lp-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.lp-wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  color: #fff;
}
@media (max-width: 640px) {
  .lp-wa-float { bottom: 20px; right: 16px; width: 50px; height: 50px; font-size: 24px; }
}

/* ============================================================
   LP shared components
   ============================================================ */
/* ── LP Turismo Hero ─────────────────────────────────────────────────────── */
.lpt-hero {
  background: #0f172a;
  padding: 80px 0 0;
  text-align: center;
}
.lpt-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lpt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(251,113,133,.12);
  color: #fb7185;
  border: 1px solid rgba(251,113,133,.3);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 28px;
}
.lpt-eyebrow i { font-size: 10px; color: #f59e0b; }
.lpt-h1 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  max-width: 720px;
  margin: 0 0 20px;
}
.lpt-h1 em {
  font-style: normal;
  color: #fb7185;
}
.lpt-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: #94a3b8;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 36px;
}
.lpt-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.lpt-btn-primary,
.lpt-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: background .15s, border-color .15s, transform .12s;
}
.lpt-btn-primary {
  background: #e11d48;
  color: #fff;
  border: 2px solid #e11d48;
}
.lpt-btn-primary:hover {
  background: #be123c;
  border-color: #be123c;
  color: #fff;
  transform: translateY(-1px);
}
.lpt-btn-ghost {
  background: transparent;
  color: #e2e8f0;
  border: 2px solid rgba(255,255,255,.22);
}
.lpt-btn-ghost:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.45);
  color: #fff;
  transform: translateY(-1px);
}
.lpt-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 52px;
}
.lpt-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #475569;
}
.lpt-trust i { color: #64748b; }
.lpt-img {
  width: 100%;
  max-width: 780px;
  margin-bottom: 60px;
}
.lpt-img img {
  width: 100%;
  display: block;
}
@media (max-width: 640px) {
  .lpt-hero { padding: 56px 0 0; }
  .lpt-ctas { flex-direction: column; align-items: stretch; }
  .lpt-step-arrow { margin: 16px 0 40px; }
}

.lp-social-proof {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
}
.lp-social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.lp-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
}
.lp-proof-item i { color: #e11d48; font-size: 15px; }
.lp-proof-sep { width: 1px; height: 20px; background: #e2e8f0; }

.lp-section { padding: 80px 0; }
.lp-section--gray { background: #f8fafc; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }

.lp-section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}
.lp-section-header .s-label { margin-bottom: 10px; }
.lp-section-header h2 { margin-bottom: 14px; }
.lp-section-header p { font-size: 16px; color: #64748b; line-height: 1.7; margin: 0; }

.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.lp-feature-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-2px); }
.lp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff5f7;
  color: #e11d48;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.lp-feature-card h3 { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.lp-feature-card p { font-size: 14px; color: #64748b; line-height: 1.65; margin: 0; }

.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: lp-step;
}
.lp-step { text-align: center; }
.lp-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e11d48;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.lp-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.lp-step p { font-size: 14px; color: #64748b; line-height: 1.65; margin: 0; }

.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-testimonial {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
}
.lp-testimonial-stars { color: #f59e0b; font-size: 13px; margin-bottom: 12px; }
.lp-testimonial p { font-size: 14px; color: #334155; line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.lp-testimonial-author { font-size: 13px; font-weight: 600; color: #0f172a; }
.lp-testimonial-company { font-size: 12px; color: #94a3b8; }

.lp-faq { max-width: 720px; margin: 0 auto; }
.lp-faq-item { border-bottom: 1px solid #e2e8f0; }
.lp-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  text-align: left;
}
.lp-faq-trigger i { color: #94a3b8; flex-shrink: 0; transition: transform .2s; }
.lp-faq-item--open .lp-faq-trigger i { transform: rotate(45deg); color: #e11d48; }
.lp-faq-body { display: none; padding-bottom: 20px; }
.lp-faq-item--open .lp-faq-body { display: block; }
.lp-faq-body p { font-size: 14.5px; color: #64748b; line-height: 1.75; margin: 0; }

.lp-cta-banner {
  background: #e11d48;
  padding: 80px 0;
  text-align: center;
}
.lp-cta-banner h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.lp-cta-banner p { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.lp-cta-banner .s-btn-primary { background: #fff; color: #e11d48; border-color: #fff; font-size: 16px; padding: 14px 28px; }
.lp-cta-banner .s-btn-primary:hover { background: #f8fafc; border-color: #f8fafc; }
.lp-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 16px;
  transition: color .15s;
}
.lp-cta-wa:hover { color: #fff; }

/* LP — Problem cards grid */
.lp-problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

/* seg_passeios — problem cards */
.lpt-problems { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.lpt-problem-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lpt-problem-top {
  padding: 28px 28px 24px;
  flex: 1;
}
.lpt-problem-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #e11d48;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.lpt-problem-label i { font-size: 13px; }
.lpt-problem-top h3 { font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.lpt-problem-top p { font-size: 14px; color: #64748b; line-height: 1.65; margin: 0; }
.lpt-problem-solution {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  background: #f0fdf4;
  border-top: 1px solid #bbf7d0;
}
.lpt-problem-solution i { color: #16a34a; font-size: 18px; flex-shrink: 0; }
.lpt-problem-solution p { font-size: 14px; color: #166534; line-height: 1.6; margin: 0; }
.lpt-problem-solution strong { font-weight: 700; }
.lpt-problems-cta { text-align: center; margin-top: 40px; }

/* seg_passeios — extras grid (reuses lp-feature-card style) */
.lpt-extras {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

/* seg_passeios — how it works steps */
.lpt-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  justify-content: center;
}
.lpt-step {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.lpt-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e11d48;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #fff;
  font-size: 26px;
}
.lpt-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.lpt-step h3 { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.lpt-step p { font-size: 14px; color: #64748b; line-height: 1.65; margin: 0; }
.lpt-step-arrow {
  color: #cbd5e1;
  font-size: 24px;
  padding-top: 28px;
  flex-shrink: 0;
}
.lpt-steps-cta { text-align: center; margin-top: 48px; }
.lpt-steps-note { font-size: 13px; color: #94a3b8; margin-top: 12px; }

/* seg_passeios — testimonial grid */
.lpt-testi-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 8px;
}
.lpt-testi-video-card {
  width: 300px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
}
.lpt-testi-video-wrap {
  position: relative;
  padding-bottom: 177.78%;
  height: 0;
  overflow: hidden;
}
.lpt-testi-video-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.lpt-testi-video-body { padding: 24px; }
.lpt-testi-video-body p { font-size: 14px; color: #334155; line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.lpt-testi-cards { display: flex; flex-direction: column; gap: 16px; height: 100%; }
.lpt-testi-cards .lpt-testi-card { flex: 1; }
.lpt-testi-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 22px;
}
.lpt-testi-card p { font-size: 13.5px; color: #334155; line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.lpt-testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lpt-testi-author strong { font-size: 14px; font-weight: 700; color: #0f172a; display: block; }
.lpt-testi-author span { font-size: 12px; color: #94a3b8; }
.lpt-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e11d48;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lpt-testi-avatar--sm { width: 32px; height: 32px; font-size: 13px; }

/* seg_passeios — final CTA section */
.lpt-final-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  text-align: center;
}
.lpt-final-cta-inner { max-width: 640px; margin: 0 auto; }
.lpt-final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.lpt-final-cta h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.lpt-final-cta p { font-size: 17px; color: #94a3b8; line-height: 1.65; margin-bottom: 32px; }
.lpt-final-cta-btn { font-size: 17px; padding: 18px 36px; }
.lpt-final-cta-alt {
  margin-top: 24px;
  font-size: 14px;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.lpt-final-cta-alt a {
  color: #25d366;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.lpt-final-cta-alt a:hover { color: #22c55e; }
.lpt-final-cta-fine { font-size: 12px; color: #475569; margin-top: 20px; }

/* LP — Testimonial hero layout */
.lp-testi-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.lp-testi-video {
  width: 280px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  position: relative;
  padding-bottom: calc(280px * 16 / 9);
  height: 0;
}
.lp-testi-video iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.lp-testi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .lp-features { grid-template-columns: repeat(2, 1fr); }
  .lp-testimonials { grid-template-columns: repeat(2, 1fr); }
  .lp-steps { grid-template-columns: repeat(3, 1fr); }
  .lp-testi-cards { grid-template-columns: repeat(2, 1fr); }
  .lpt-extras { grid-template-columns: repeat(2, 1fr); }
  .lpt-testi-grid { grid-template-columns: 1fr; }
  .lpt-testi-video-card { width: 100%; }
}

@media (max-width: 768px) {
  .lp-problems { grid-template-columns: 1fr; }
  .lp-testi-hero { grid-template-columns: 1fr; }
  .lp-testi-video { width: 100%; padding-bottom: 177.78%; }
  .lp-testi-cards { grid-template-columns: 1fr; }
  .lpt-problems { grid-template-columns: 1fr; }
  .lpt-steps { flex-direction: column; align-items: center; }
  .lpt-step-arrow { transform: rotate(90deg); padding: 0; margin: 8px 0; }
}

@media (max-width: 640px) {
  .lp-hero { padding: 56px 0 52px; }
  .lp-hero-ctas { flex-direction: column; align-items: stretch; }
  .lp-features { grid-template-columns: 1fr; }
  .lp-testimonials { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr; gap: 24px; }
  .lp-social-proof-sep { display: none; }
  .lp-section { padding: 56px 0; }
  .lp-testi-cards { grid-template-columns: 1fr; }
  .lpt-extras { grid-template-columns: 1fr; }
  .lpt-final-cta { padding: 72px 0; }
}

/* Responsive */
@media (max-width: 680px) {
  .mn-modal-body { grid-template-columns: 1fr; }
  .mn-modal-left { border-radius: 20px 20px 0 0; padding: 36px 28px; }
  .mn-modal-right { padding: 32px 28px; }
  .mn-modal-perks { display: none; }
}

.mn-wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.mn-wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,.24); color: #fff; }

/* ================================================================
   TIDES PAGE
   ================================================================ */
.lpt-breadcrumb { margin-bottom: 24px; }
.lpt-breadcrumb a { color: rgba(255,255,255,.5); font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: color .15s; }
.lpt-breadcrumb a:hover { color: #fff; }

.lpt-tides-form-section { background: #0f172a; padding: 80px 0; }
.lpt-tides-form-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .lpt-tides-form-panel { grid-template-columns: 1fr; gap: 40px; } }

.lpt-tides-form-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(225,29,72,.15); color: #fb7185; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 99px; margin-bottom: 20px; }
.lpt-tides-form-left h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.lpt-tides-form-left p { font-size: 15px; color: #94a3b8; line-height: 1.7; margin-bottom: 28px; }
.lpt-tides-form-perks { display: flex; flex-direction: column; gap: 10px; }
.lpt-tides-form-perks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #e2e8f0; }
.lpt-tides-form-perks .bi-check-circle-fill { color: #e11d48; font-size: 15px; flex-shrink: 0; }

.lpt-tides-form-right { background: #fff; border-radius: 20px; padding: 36px; }
.lpt-tides-form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
@media (max-width: 600px) { .lpt-tides-form-fields { grid-template-columns: 1fr; } }
.lpt-tides-field { display: flex; flex-direction: column; gap: 6px; }
.lpt-tides-field label { font-size: 12px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: .05em; }
.lpt-tides-input { width: 100%; padding: 11px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px; font-size: 15px; color: #1e293b; background: #fff; outline: none; font-family: inherit; }
.lpt-tides-input:focus { border-color: #e11d48; box-shadow: 0 0 0 3px rgba(225,29,72,.12); }
.lpt-tides-form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #64748b; margin-bottom: 16px; }
.lpt-tides-form-check a { color: #e11d48; }
.lpt-tides-form-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; background: #e11d48; color: #fff; font-family: inherit; font-size: 15px; font-weight: 700; border: none; border-radius: 10px; cursor: pointer; transition: background .15s, transform .12s; margin-top: 4px; }
.lpt-tides-form-submit:hover { background: #be123c; transform: translateY(-1px); }

.lpt-tides-cities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 900px) { .lpt-tides-cities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lpt-tides-cities { grid-template-columns: 1fr; } }
.lpt-tides-city-card { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; text-decoration: none; color: #334155; font-size: 14px; transition: border-color .18s, box-shadow .18s; }
.lpt-tides-city-card:hover { border-color: #e11d48; box-shadow: 0 2px 8px rgba(225,29,72,.12); color: #1e293b; }
.lpt-tides-city-card--active { border-color: #e11d48; background: #fff1f2; color: #0f172a; font-weight: 600; }
.lpt-tides-city-card .bi-geo-alt-fill { color: #e11d48; flex-shrink: 0; }
.lpt-tides-city-card span { flex: 1; }
.lpt-tides-city-card .bi-arrow-right { color: #94a3b8; font-size: 12px; }

.lpt-tides-picker { margin-top: 32px; padding-bottom: 48px; }
.lpt-tides-picker-form { display: flex; align-items: center; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lpt-tides-picker-form { position: relative; display: inline-block; }
.lpt-tides-picker-form::after { content: ''; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid rgba(255,255,255,.7); pointer-events: none; }
.lpt-tides-picker-form select { padding: 12px 44px 12px 20px; border: 2px solid rgba(255,255,255,.15); border-radius: 10px; font-size: 15px; font-weight: 600; background: rgba(255,255,255,.08); color: #fff; cursor: pointer; outline: none; appearance: none; -webkit-appearance: none; min-width: 200px; transition: border-color .15s; }
.lpt-tides-picker-form select:focus { border-color: #e11d48; }
.lpt-tides-picker-form select option { background: #1e293b; color: #fff; }

.lpt-tides-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 24px; }
.lpt-tides-day-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; overflow: hidden; transition: box-shadow .18s; }
.lpt-tides-day-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.lpt-tides-day-card--today { border-color: #e11d48; box-shadow: 0 0 0 2px rgba(225,29,72,.15); }

.lpt-tides-day-header { background: #0f172a; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; }
.lpt-tides-day-date { display: flex; align-items: baseline; gap: 6px; }
.lpt-tides-day-num { font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.lpt-tides-day-month { font-size: 12px; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: .04em; }
.lpt-tides-day-weekday { font-size: 12px; color: #64748b; }
.lpt-tides-today-badge { background: #e11d48; color: #fff; font-size: 11px; padding: 3px 10px; border-radius: 99px; font-weight: 700; letter-spacing: .03em; }

.lpt-tides-day-body { padding: 14px 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lpt-tides-entry { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding: 10px 12px; border-radius: 10px; }
.lpt-tides-entry--high { background: #fff1f2; }
.lpt-tides-entry--low { background: #f8fafc; }
.lpt-tides-entry-info { display: flex; flex-direction: column; gap: 2px; }
.lpt-tides-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #94a3b8; }
.lpt-tides-time { font-size: 18px; font-weight: 800; color: #0f172a; line-height: 1; }
.lpt-tides-height { font-size: 13px; font-weight: 600; }
.lpt-tides-entry--high .lpt-tides-height { color: #e11d48; }
.lpt-tides-entry--low .lpt-tides-height { color: #475569; }

.lpt-wave { display: block; width: 40px; height: 20px; flex-shrink: 0; overflow: hidden; border-radius: 4px; }
.lpt-wave svg { width: 100%; height: 100%; display: block; }
.lpt-wave--high svg { animation: wave-move 2s ease-in-out infinite alternate; }
.lpt-wave--low  svg { animation: wave-move 3s ease-in-out infinite alternate; }

.lpt-wave--high .lpt-wave-path { fill: #e11d48; opacity: 0.85; }
.lpt-wave--low  .lpt-wave-path { fill: #0f172a; opacity: 0.6; }

@keyframes wave-move {
  from { transform: translateX(0); }
  to   { transform: translateX(-6px); }
}
.lpt-tides-disclaimer { font-size: 12px; color: #94a3b8; text-align: center; margin-top: 16px; }
/* ============================================================
   Navigation — mymento_v2
   ============================================================ */

/* ---- Header bar ---- */

.mn-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 800;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.mn-header--scrolled {
  border-color: #e2e8f0;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

/* ---- Inner container ---- */
.mn-header-inner {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* ---- Logo ---- */
.mn-logo { display: flex; align-items: center; flex-shrink: 0; margin-right: 36px; }

/* ---- Desktop nav ---- */
.mn-nav { display: flex; align-items: center; flex: 1; height: 100%; }
.mn-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  gap: 2px;
}
.mn-nav-list > li { height: 100%; display: flex; align-items: center; position: relative; }

/* shared link / button look */
.mn-nav-link,
.mn-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  margin: auto 0;
  padding: 0 13px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.mn-nav-link:hover,
.mn-nav-btn:hover,
.mn-has-drop--open > .mn-nav-btn {
  background: #fdf2f4;
  color: #e11d48;
}

/* caret */
.mn-caret { flex-shrink: 0; transition: transform .18s; opacity: .5; }
.mn-nav-btn:hover .mn-caret,
.mn-has-drop--open > .mn-nav-btn .mn-caret { opacity: 1; }
.mn-has-drop--open > .mn-nav-btn .mn-caret { transform: rotate(180deg); }

/* ---- Dropdown panel ---- */
.mn-drop-panel {
  position: fixed;
  top: 72px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 2px solid #e11d48;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 20px 56px rgba(0,0,0,.11);
  padding: 20px;
  min-width: 600px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s cubic-bezier(.4,0,.2,1), transform .22s cubic-bezier(.4,0,.2,1);
  z-index: 801;
}
.mn-drop-panel[hidden] { display: block; }
.mn-has-drop--open .mn-drop-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mn-drop-panel--sm { min-width: 300px; }

/* ---- Dropdown grid ---- */
.mn-drop-grid { display: grid; gap: 3px; }
.mn-drop-grid--2 { grid-template-columns: 1fr 1fr; }
.mn-drop-grid--1 { grid-template-columns: 1fr; }

.mn-drop-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .13s;
}
.mn-drop-item:hover { background: #fdf2f4; }

.mn-drop-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .13s;
}
.mn-drop-item:hover .mn-drop-icon { transform: scale(1.08); }

.mn-drop-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding-top: 1px;
}
.mn-drop-text strong {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #0f172a;
  display: block;
}
.mn-drop-text span {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.4;
}

/* ---- Dropdown footer ---- */
.mn-drop-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mn-drop-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #e11d48;
  text-decoration: none;
  transition: opacity .15s;
}
.mn-drop-footer-link:hover { opacity: .75; }

/* ---- Right actions ---- */
.mn-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.mn-link-ghost {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  padding: 0 8px;
  transition: color .15s;
}
.mn-link-ghost:hover { color: #0f172a; }

.mn-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: #e11d48;
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 9px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, transform .15s;
}
.mn-btn-cta:hover { background: #be123c; color: #fff; transform: translateY(-1px); }

/* ---- Hamburger ---- */
.mn-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
}
.mn-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #334155;
  border-radius: 2px;
  transition: .2s;
}

/* ============================================================
   Mobile drawer
   ============================================================ */
.mn-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 810;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.mn-overlay--show { opacity: 1; pointer-events: auto; }

.mn-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88vw;
  max-width: 360px;
  background: #ffffff;
  z-index: 820;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .27s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.12);
}
.mn-drawer--open { transform: translateX(0); }

.mn-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}
.mn-drawer-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #64748b;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background .14s, color .14s;
}
.mn-drawer-close:hover { background: #f1f5f9; color: #0f172a; }

.mn-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.mn-drawer-link {
  display: block;
  padding: 12px 20px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  text-decoration: none;
  transition: background .13s, color .13s;
}
.mn-drawer-link:hover { background: #fdf2f4; color: #e11d48; }

.mn-drawer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 20px;
  background: none;
  border: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  cursor: pointer;
  text-align: left;
  transition: background .13s;
}
.mn-drawer-toggle:hover { background: #f8fafc; }
.mn-drawer-toggle .bi-chevron-down { font-size: 13px; transition: transform .2s; }
.mn-drawer-group--open .mn-drawer-toggle .bi-chevron-down { transform: rotate(180deg); }

.mn-drawer-sub {
  display: none;
  background: #f8fafc;
  padding: 6px 0 10px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.mn-drawer-group--open .mn-drawer-sub { display: block; }
.mn-drawer-sub a {
  display: block;
  padding: 9px 20px 9px 36px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #475569;
  text-decoration: none;
  transition: color .13s;
}
.mn-drawer-sub a:hover { color: #e11d48; }

.mn-drawer-footer {
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.mn-btn-ghost-full {
  display: block;
  text-align: center;
  padding: 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 9px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.mn-btn-ghost-full:hover { border-color: #334155; background: #f8fafc; color: #334155; }

.mn-btn-cta-full {
  display: block;
  text-align: center;
  padding: 13px;
  background: #e11d48;
  border-radius: 9px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: background .15s;
}
.mn-btn-cta-full:hover { background: #be123c; color: #fff; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .mn-nav { display: none; }
  .mn-link-ghost { display: none; }
  .mn-btn-cta { display: none; }
  .mn-burger { display: flex; }
}
/* ============================================================
   Footer
   ============================================================ */

.mn-footer {
  background: #0f172a;
  color: #94a3b8;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
}

.mn-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr 1.4fr;
  gap: 56px;
  padding: 72px 0 56px;
  border-bottom: none;
}

.mn-footer-brand img {
  height: 28px;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.mn-footer-brand p { line-height: 1.75; margin-bottom: 18px; }
.mn-footer-contact-row { margin-bottom: 7px; line-height: 1.5; }
.mn-footer-contact-row a { color: #94a3b8; transition: color .15s; }
.mn-footer-contact-row a:hover { color: #ffffff; }

.mn-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.mn-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: #94a3b8;
  font-size: 16px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.mn-footer-social a:hover { background: #e11d48; color: #ffffff; }

.mn-footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #e2e8f0;
  margin-bottom: 18px;
}
.mn-footer-links { list-style: none; margin: 0; padding: 0; }
.mn-footer-links li { margin-bottom: 11px; }
.mn-footer-links a { color: #94a3b8; text-decoration: none; transition: color .15s; }
.mn-footer-links a:hover { color: #ffffff; }

.mn-footer-certs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.mn-footer-cert {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 10px 14px;
}
.mn-footer-cert img {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0) invert(.5);
  transition: filter .2s;
}
.mn-footer-cert:hover img { filter: brightness(0) invert(.8); }

.mn-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.mn-footer-bottom-links { display: flex; gap: 20px; }
.mn-footer-bottom a { color: #94a3b8; text-decoration: none; transition: color .15s; }
.mn-footer-bottom a:hover { color: #ffffff; }

@media (max-width: 1024px) {
  .mn-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 56px 0 44px; }
}
@media (max-width: 640px) {
  .mn-footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 44px 0 32px; }
  .mn-footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .mn-footer-bottom-links { flex-wrap: wrap; gap: 14px; }
  .mn-footer-brand img { height: 24px; }
}
/* ================================================================
   Homepage — mymento_v2
   ================================================================ */

/* Shared utilities */

.s-h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.18;
  margin-bottom: 14px;
}
.s-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #e11d48;
  margin-bottom: 10px;
}
.s-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #e11d48;
  text-decoration: none;
  transition: gap .15s;
}
.s-read-more:hover { gap: 10px; color: #be123c; }

.s-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: #e11d48;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, transform .12s;
}
.s-btn-primary:hover { background: #be123c; color: #fff; transform: translateY(-1px); }
.s-btn-primary--lg { padding: 15px 32px; font-size: 16px; }

.s-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  background: #fff;
  color: #334155;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.s-btn-ghost:hover { border-color: #94a3b8; color: #0f172a; }

.s-section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 52px;
}
.s-section-sub {
  font-size: 16.5px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.s-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.s-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14.5px;
  color: #334155;
  margin-bottom: 9px;
  line-height: 1.5;
}
.s-check-list .bi-check-circle-fill { color: #e11d48; flex-shrink: 0; margin-top: 2px; }

/* ================================================================
   HERO
   ================================================================ */
.s-hero {
  padding: 52px 0 0;
  background: #fff;
  overflow: hidden;
}
.s-hero-eyebrow { text-align: center; margin-bottom: 28px; }
.s-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 99px;
  padding: 7px 18px;
  font-size: 13.5px;
  color: #475569;
  text-decoration: none;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
  transition: box-shadow .15s;
}
.s-hero-badge:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.s-hero-badge i { font-size: 13px; }
.s-hero-badge strong { font-weight: 700; color: #0f172a; }
.s-hero-badge-sep { display: inline-block; width: 1px; height: 14px; background: #e2e8f0; margin: 0 8px; vertical-align: middle; }

.s-hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.s-hero-h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  color: #0f172a;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}
.s-hero-typed { color: #e11d48; }
.s-cursor {
  color: #e11d48;
  animation: blink .75s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.s-hero-sub {
  font-size: clamp(15px, 1.4vw, 17.5px);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 28px;
}
.s-hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.s-hero-note { font-size: 12.5px; color: #94a3b8; }

.s-hero-img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Two-column hero layout (inner pages) */
.s-hero-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Stats row */
.s-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}
.s-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 40px;
}
.s-stat-item strong { display: block; font-size: 16px; font-weight: 800; color: #0f172a; }
.s-stat-item span { font-size: 12.5px; color: #94a3b8; display: block; }
.s-stat-icon { font-size: 22px; color: #e11d48; flex-shrink: 0; }
.s-stat-sep { width: 1px; height: 40px; background: #e2e8f0; flex-shrink: 0; }

/* ================================================================
   ABOUT / VIDEO
   ================================================================ */
/* ================================================================
   TRUST STRIP
   ================================================================ */
.s-trust {
  padding: 48px 0;
}
.s-trust-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 24px;
}
.s-trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}
.s-trust-logo img {
  height: 32px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  filter: grayscale(1) opacity(.35);
  transition: filter .2s;
}
.s-trust-logo img:hover { filter: grayscale(0) opacity(.8); }

.s-about {
  padding: 88px 0;
  background: #fff;
}
.s-about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.s-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
}
.s-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.s-about-desc { font-size: 15.5px; color: #64748b; line-height: 1.75; margin-bottom: 24px; }
.s-check-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; margin-bottom: 24px; }

/* ================================================================
   FEATURES STACKED
   ================================================================ */
.s-features {
  padding: 88px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.s-feat-stack { display: flex; flex-direction: column; gap: 0; }

.s-feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid #e2e8f0;
}
.s-feat-row:last-child { border-bottom: none; }
.s-feat-row--flip .s-feat-copy { order: 2; }
.s-feat-row--flip .s-feat-image { order: 1; }
.s-feat-row--flip .s-feat-row__copy { order: 2; }
.s-feat-row--flip .s-feat-row__media { order: 1; }

.s-feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #e11d48;
  background: #fff1f2;
  border-radius: 99px;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.s-feat-copy h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.25;
}
.s-feat-copy p { font-size: 15.5px; color: #64748b; line-height: 1.75; margin-bottom: 22px; }
.s-feat-copy .s-check-list { margin-bottom: 26px; }

.s-feat-image { display: flex; align-items: center; justify-content: center; }
.s-feat-img {
  max-width: 100%;
  border-radius: 0;
  display: block;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.s-proof {
  padding: 88px 0;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}

/* ================================================================
   PAIN / VALUE
   ================================================================ */
.s-why {
  padding: 88px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.s-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.s-why-card {
  padding: 32px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: box-shadow .15s, transform .15s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.s-why-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-2px); }

.s-why-pain {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #f97316;
  background: #fff7ed;
  border-radius: 99px;
  padding: 4px 12px;
  width: fit-content;
}
.s-why-pain i { font-size: 12px; }

.s-why-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin: 0;
}
.s-why-p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.s-why-value {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13.5px;
  color: #166534;
  line-height: 1.55;
  margin-top: 4px;
}
.s-why-value .bi-check-circle-fill { color: #22c55e; flex-shrink: 0; font-size: 15px; display: flex; align-items: center; }

/* ================================================================
   PARTNERS & CERTIFICATIONS
   ================================================================ */
.s-partners {
  padding: 88px 0;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}
.s-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.s-partner-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  transition: box-shadow .15s, transform .15s;
}
.s-partner-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.07); transform: translateY(-2px); }
.s-partner-logo {
  flex-shrink: 0;
  width: 72px;
  height: 52px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.s-partner-logo img {
  max-width: 100%;
  max-height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}
.s-partner-body strong { display: block; font-size: 15px; font-weight: 700; color: #0f172a; margin-bottom: 5px; }
.s-partner-body span { font-size: 13.5px; color: #64748b; line-height: 1.6; }

/* ================================================================
   INTEGRATIONS
   ================================================================ */
.s-integrations {
  padding: 88px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.s-integ-block {
  margin-bottom: 44px;
}
.s-integ-block:last-of-type { margin-bottom: 0; }
.s-integ-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 20px;
}
.s-integ-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.s-integ-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 16px;
  height: 48px;
  transition: border-color .15s, box-shadow .15s;
}
.s-integ-logo:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
}
.s-integ-logo img {
  height: 22px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  display: block;
}

/* ================================================================
   SUPPORT
   ================================================================ */
.s-support {
  padding: 88px 0;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}
.s-support-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.s-support-img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.s-cta-banner {
  padding: 80px 0;
  background: #e11d48;
}
.s-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.s-cta-inner h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.s-cta-inner p { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 28px; }
.s-cta-inner .s-btn-primary {
  background: #fff;
  color: #e11d48;
  border-color: #fff;
}
.s-cta-inner .s-btn-primary:hover { background: #f1f5f9; border-color: #f1f5f9; transform: none; }

/* ================================================================
   FAQ
   ================================================================ */
.s-faq {
  padding: 88px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.s-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 72px;
  align-items: start;
}
.s-faq-sidebar { position: sticky; top: 88px; }
.s-faq-arrow { color: #cbd5e1; margin-top: 12px; }

.s-faq-list { display: flex; flex-direction: column; gap: 8px; }
.s-faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .15s;
}
.s-faq-item--open { box-shadow: 0 4px 20px rgba(0,0,0,.07); border-color: transparent; }
.s-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 20px;
  background: none;
  border: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  text-align: left;
  gap: 14px;
  line-height: 1.4;
}
.s-faq-icon { font-size: 20px; color: #e11d48; flex-shrink: 0; transition: transform .2s; }
.s-faq-item--open .s-faq-icon { transform: rotate(45deg); }
.s-faq-body { display: none; padding: 0 20px 18px; }
.s-faq-item--open .s-faq-body { display: block; }
.s-faq-body p { font-size: 14.5px; color: #64748b; line-height: 1.75; margin: 0; }

/* ================================================================
   BLOG
   ================================================================ */
.s-blog {
  padding: 88px 0 56px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}
.s-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 14px;
}
.s-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.s-blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: box-shadow .18s, transform .18s;
}
.s-blog-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,.09); transform: translateY(-3px); }
.s-blog-img { aspect-ratio: 16/9; overflow: hidden; background: #f1f5f9; }
.s-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; display: block; }
.s-blog-card:hover .s-blog-img img { transform: scale(1.04); }
.s-blog-body { padding: 18px 18px 20px; flex: 1; }
.s-blog-body h3 { font-size: 14px; font-weight: 700; color: #0f172a; line-height: 1.4; margin-bottom: 6px; }
.s-blog-body p { font-size: 12.5px; color: #64748b; line-height: 1.6; margin: 0; }

/* ================================================================
   INSTAGRAM
   ================================================================ */
.s-instagram { padding: 72px 0 56px; background: #f8fafc; border-top: 1px solid #e2e8f0; }

.s-insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.s-insta-profile { display: flex; align-items: center; gap: 18px; }

.s-insta-avatar-wrap { display: block; flex-shrink: 0; }
.s-insta-avatar-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.s-insta-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  display: block;
}

.s-insta-meta { display: flex; flex-direction: column; gap: 2px; }
.s-insta-handle {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
  line-height: 1.2;
  transition: color .15s;
}
.s-insta-handle:hover { color: #e11d48; }
.s-insta-followers { font-size: 13.5px; color: #64748b; }
.s-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.s-insta-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #f1f5f9;
}
.s-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.s-insta-item:hover img { transform: scale(1.05); }
.s-insta-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .25s;
}
.s-insta-item:hover::after { background: rgba(0,0,0,.18); }
.s-insta-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,.45);
  color: #fff;
  border-radius: 6px;
  padding: 3px 6px;
  font-size: 13px;
  line-height: 1;
  z-index: 1;
  display: flex;
  align-items: center;
}

/* ================================================================
   INLINE CTA
   ================================================================ */
.s-inline-cta {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}
.s-inline-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  color: #e11d48;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1.5px solid #fecdd3;
  background: #fff5f7;
  transition: background .15s, border-color .15s, gap .15s;
}
.s-inline-cta-link:hover {
  background: #fff1f3;
  border-color: #e11d48;
  gap: 12px;
}
.s-inline-cta-link .bi-arrow-right { font-size: 13px; transition: transform .15s; }
.s-inline-cta-link:hover .bi-arrow-right { transform: translateX(3px); }

/* ================================================================
   FINAL CTA
   ================================================================ */
.s-final-cta {
  background: #e11d48;
  padding: 96px 0 80px;
}
.s-final-cta-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.s-final-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 16px;
}
.s-final-cta h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 16px;
}
.s-final-cta-inner p {
  color: rgba(255,255,255,.75);
}
.s-final-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
}
.s-final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.s-final-cta .s-btn-primary {
  background: #fff;
  color: #e11d48;
  border-color: #fff;
}
.s-final-cta .s-btn-primary:hover { background: #f1f5f9; border-color: #f1f5f9; }
.s-final-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: border-color .15s, color .15s;
}
.s-final-cta-wa:hover { border-color: #fff; color: #fff; }
.s-final-cta .s-hero-note { color: rgba(255,255,255,.5); font-size: 13px; margin: 0; }

/* Icon div used in feature cards on sub-pages */
.s-card-icon {
  width: 48px;
  height: 48px;
  background: #fff1f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.s-card-icon i { color: #e11d48; font-size: 20px; }

/* ================================================================
   SUB-PAGE SHARED STYLES
   ================================================================ */

/* s-why-grid column variants */
.s-why-grid--3 { grid-template-columns: repeat(3, 1fr); }
.s-why-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Page hero (used on all sub-pages) */
.s-page-hero {
  padding: 80px 0 72px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}
.s-page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.s-page-hero-inner h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin: 12px 0 18px;
}
.s-page-hero-inner p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #475569;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* Shared CTA actions (2 buttons) */
.s-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.s-btn-primary--outline {
  background: transparent !important;
  color: #e11d48 !important;
  border: 2px solid #e11d48 !important;
}
.s-btn-primary--outline:hover {
  background: #e11d48 !important;
  color: #fff !important;
}
/* Inside red CTA banner, outline = white border */
.s-cta-inner .s-btn-primary--outline {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.6) !important;
}
.s-cta-inner .s-btn-primary--outline:hover {
  background: rgba(255,255,255,.15) !important;
  border-color: #fff !important;
}
.s-cta-wa-link {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.s-cta-wa-link a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.s-cta-wa-link a:hover { text-decoration: underline; }

/* Features page layout */
.s-features-page { padding: 64px 0 80px; }
.s-features-page-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 48px;
  align-items: start;
}
.s-feat-nav {
  position: sticky;
  top: 80px;
  background: #f8fafc;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #e2e8f0;
}
.s-feat-nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 12px;
}
.s-feat-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  font-size: 13.5px;
  color: #475569;
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s, color .15s;
  font-weight: 500;
}
.s-feat-nav a:hover { background: #e11d48; color: #fff; }
.s-feat-nav a i { font-size: 15px; flex-shrink: 0; }

/* Feature group (section within features page) */
.s-feat-group { padding: 48px 0; border-bottom: 1px solid #f1f5f9; }
.s-feat-group:first-child { padding-top: 0; }
.s-feat-group:last-child { border-bottom: none; }
.s-feat-group-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.s-feat-group-title i { color: #e11d48; }

/* Feature card grid */
.s-feat-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.s-feat-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow .2s, border-color .2s;
}
.s-feat-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); border-color: #fecdd3; }
.s-feat-card strong { display: block; font-size: 13px; font-weight: 700; color: #0f172a; margin-bottom: 3px; }
.s-feat-card p { font-size: 12.5px; color: #64748b; line-height: 1.5; margin: 0; }

/* Testimonials — vertical video grid */
.s-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.s-testimonial-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
}
.s-testimonial-video {
  position: relative;
  padding-bottom: 177.78%; /* 9:16 */
  height: 0;
  overflow: hidden;
  border-radius: 0;
  background: #0f172a;
}
.s-testimonial-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.s-testimonial-meta {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.s-testimonial-meta strong {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}
.s-testimonial-meta span {
  font-size: 12px;
  color: #94a3b8;
}
.s-testimonial-meta p {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  margin: 4px 0 0;
  font-style: italic;
}

/* Text-only testimonial cards */
.s-testimonials-text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.s-text-testimonial {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.s-text-testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.s-text-testimonial-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.s-text-testimonial-header div strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
}
.s-text-testimonial-header div span {
  font-size: 12px;
  color: #94a3b8;
}
.s-text-testimonial-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.s-text-testimonial p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

/* Pricing page */
.s-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  margin-top: 48px;
  background: #fff;
  border-radius: 24px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
  overflow: visible;
}
.s-pricing-card {
  padding: 36px 32px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-right: 1.5px solid #e2e8f0;
}
.s-pricing-card:last-child { border-right: none; }
.s-pricing-card--popular {
  background: #0f172a;
  border-radius: 22px;
  border: none;
  margin: -2px;
  box-shadow: 0 8px 48px rgba(15,23,42,.22);
  z-index: 2;
}
.s-pricing-badge {
  display: inline-flex;
  align-items: center;
  background: #e11d48;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: .4px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.s-pricing-plan {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.s-pricing-card--popular .s-pricing-plan { color: rgba(255,255,255,.5); }
.s-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.s-pricing-price .currency { font-size: 20px; font-weight: 700; color: #0f172a; }
.s-pricing-price .amount { font-size: 48px; font-weight: 800; color: #0f172a; line-height: 1; }
.s-pricing-price .period { font-size: 13px; color: #94a3b8; align-self: flex-end; padding-bottom: 4px; }
.s-pricing-card--popular .s-pricing-price .currency,
.s-pricing-card--popular .s-pricing-price .amount { color: #fff; }
.s-pricing-desc { font-size: 13.5px; color: #64748b; line-height: 1.6; margin-bottom: 20px; margin-top: 10px; }
.s-pricing-card--popular .s-pricing-desc { color: rgba(255,255,255,.6); }
.s-pricing-toggle-wrap {
  display: inline-flex;
  background: rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 3px;
  gap: 3px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.s-pricing-toggle-btn {
  border: none;
  background: transparent;
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: background .15s, color .15s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.s-pricing-toggle-btn.active { background: #e11d48; color: #fff; }
.s-pricing-discount-badge {
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 100px;
}
.s-pricing-divider { border: none; border-top: 1.5px solid #f1f5f9; margin: 18px 0; }
.s-pricing-card--popular .s-pricing-divider { border-color: rgba(255,255,255,.1); }
.s-pricing-features-label { font-size: 11px; font-weight: 700; color: #94a3b8; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.s-pricing-card--popular .s-pricing-features-label { color: rgba(255,255,255,.4); }
.s-pricing-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 32px;
}
.s-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #334155;
  line-height: 1.5;
}
.s-pricing-card--popular .s-pricing-features li { color: rgba(255,255,255,.85); }
.s-pricing-features li .bi-check-circle-fill { color: #22c55e; flex-shrink: 0; font-size: 14px; margin-top: 2px; }
.s-pricing-features li sup { font-size: 10px; vertical-align: super; line-height: 0; color: #94a3b8; }
.s-pricing-card--popular .s-pricing-features li sup { color: rgba(255,255,255,.4); }
.s-pricing-cta { display: flex; margin-top: auto; }
.s-pricing-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
  border: 2px solid #e2e8f0;
  color: #0f172a;
  background: transparent;
}
.s-pricing-cta a:hover { opacity: .85; transform: translateY(-1px); }
.s-pricing-cta--primary a { background: #e11d48; color: #fff; border-color: #e11d48; }
.s-pricing-cta--popular a { background: #e11d48; color: #fff; border-color: #e11d48; }
.s-pricing-cta--ghost a { background: transparent; color: #0f172a; border-color: #e2e8f0; }
.s-pricing-cta--white a { background: #fff; color: #e11d48; border-color: #fff; }

/* included-in-all boxes */
.s-included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.s-included-box {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  border: 1.5px solid #f1f5f9;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s-included-box i { font-size: 26px; color: #e11d48; }
.s-included-box h4 { font-size: 14.5px; font-weight: 700; color: #0f172a; margin: 0; }
.s-included-box p { font-size: 13px; color: #64748b; line-height: 1.6; margin: 0; }

/* comparison table */
.s-compare-wrap {
  overflow-x: auto;
  margin-top: 40px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.s-compare-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.s-compare-table th, .s-compare-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #f1f5f9;
  text-align: center;
  background: #fff;
}
.s-compare-table tbody tr:last-child td { border-bottom: none; }
.s-compare-table th:first-child, .s-compare-table td:first-child { text-align: left; color: #334155; }
.s-compare-table thead tr { border-bottom: 2px solid #e2e8f0; }
.s-compare-table thead th {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  background: #fff;
  padding: 14px 16px;
}
.s-compare-table thead th:nth-child(3) { color: #e11d48; font-size: 14px; }
.s-compare-table .s-compare-group td {
  background: #fef2f4;
  color: #e11d48;
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .6px;
  text-align: left;
  padding: 9px 16px;
  border-bottom: 1px solid #fecdd3;
}
.s-compare-table tbody tr:hover td { background: #fafafa; }
.s-compare-table tbody .s-compare-group:hover td { background: #fef2f4; }
.s-compare-table .bi-check-circle-fill { color: #22c55e; font-size: 15px; }
.s-compare-table .bi-dash { color: #cbd5e1; font-size: 18px; }
.s-compare-table sup { font-size: 10px; color: #94a3b8; }
.s-pricing-footnotes { font-size: 12.5px; color: #94a3b8; line-height: 1.7; text-align: center; margin-top: 28px; }

/* Blog / News grid */
.s-blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.s-blog-post-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.s-blog-post-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.10); transform: translateY(-2px); }
.s-blog-post-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.s-blog-post-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.s-blog-post-card-body h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.45;
  margin: 0;
}
.s-blog-post-card-body p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.s-blog-post-card-body .s-read-more {
  font-size: 13px;
  margin-top: 4px;
}
.s-blog-search {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 24px auto 0;
}
.s-blog-search input {
  flex: 1;
  border: 1.5px solid #e2e8f0;
  border-right: none;
  border-radius: 100px 0 0 100px;
  padding: 10px 18px;
  font-size: 14px;
  outline: none;
  color: #0f172a;
}
.s-blog-search input:focus { border-color: #e11d48; }
.s-blog-search button {
  background: #e11d48;
  color: #fff;
  border: none;
  border-radius: 0 100px 100px 0;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 15px;
}
.s-blog-pagination { text-align: center; margin-top: 40px; }
.s-blog-pagination .pagination { display: inline-flex; gap: 4px; list-style: none; padding: 0; margin: 0; }
.s-blog-pagination .pagination li a,
.s-blog-pagination .pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 13.5px;
  border: 1.5px solid #e2e8f0;
  color: #475569;
  text-decoration: none;
  transition: all .15s;
}
.s-blog-pagination .pagination li.active span,
.s-blog-pagination .pagination li a:hover { background: #e11d48; color: #fff; border-color: #e11d48; }

/* Blog / News post layout */
.s-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding: 56px 0 80px;
  align-items: start;
}
.s-post-content img { width: 100%; border-radius: 14px; margin-bottom: 24px; }
.s-post-content figcaption { font-size: 13px; color: #94a3b8; text-align: center; margin-top: -16px; margin-bottom: 24px; }
.s-post-body { font-size: 16px; color: #334155; line-height: 1.8; }
.s-post-body h2 { font-size: 22px; font-weight: 700; color: #0f172a; margin: 32px 0 12px; }
.s-post-body h3 { font-size: 18px; font-weight: 700; color: #0f172a; margin: 24px 0 10px; }
.s-post-body ul, .s-post-body ol { padding-left: 22px; margin: 12px 0; }
.s-post-body li { margin-bottom: 6px; }
.s-post-body a { color: #e11d48; }
.s-post-body strong { color: #0f172a; }
.s-post-body p { margin: 0 0 16px; }
.s-post-disclaimer {
  font-size: 13px;
  color: #94a3b8;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  margin-top: 32px;
  line-height: 1.6;
}
.s-post-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }
.s-post-sidebar-box {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 20px;
}
.s-post-sidebar-box h4 { font-size: 14px; font-weight: 700; color: #0f172a; margin: 0 0 14px; }
.s-post-sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.s-post-sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #475569;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.s-post-sidebar-links a:hover { background: #fff1f2; color: #e11d48; }
.s-post-sidebar-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.s-post-sidebar-contact a { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #475569; text-decoration: none; }
.s-post-sidebar-contact a:hover { color: #e11d48; }

/* Chatbot 3-col layout */
.s-chatbot-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
}
.s-chatbot-col { display: flex; flex-direction: column; gap: 24px; }
.s-chatbot-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f8fafc;
  border-radius: 12px;
  padding: 14px;
}
.s-chatbot-feature strong { display: block; font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.s-chatbot-feature p { font-size: 13px; color: #64748b; line-height: 1.55; margin: 0; }

/* App 3-col layout (same structure as chatbot) */
.s-app-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
}
.s-app-col { display: flex; flex-direction: column; gap: 24px; }
.s-app-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f8fafc;
  border-radius: 12px;
  padding: 14px;
}
.s-app-feature strong { display: block; font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.s-app-feature p { font-size: 13px; color: #64748b; line-height: 1.55; margin: 0; }

/* About milestones (about page) */
.s-about-milestones {
  background: #f8fafc;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
}
.s-milestone {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e8f0;
}
.s-milestone:last-child { border-bottom: none; padding-bottom: 0; }
.s-milestone-year {
  font-size: 13px;
  font-weight: 800;
  color: #e11d48;
  min-width: 52px;
  padding-top: 1px;
}
.s-milestone-event { font-size: 14px; color: #334155; line-height: 1.55; }

/* ================================================================
   ABOUT PHOTO COLLAGE
   ================================================================ */
.s-about-collage { padding: 64px 0; background: #fff; }

.s-collage-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px 200px;
  gap: 8px;
}

.s-collage-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #0f172a;
}

.s-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  opacity: 0.88;
}

.s-collage-item:hover img { transform: scale(1.05); opacity: 1; }

.s-collage-item--tall {
  grid-row: 1 / 3;
}

.s-collage-item--bottom {
  grid-column: span 1;
}

.s-collage-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  letter-spacing: 0.02em;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .s-partner-grid { grid-template-columns: 1fr; }
  .s-hero-body { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .s-hero-ctas { justify-content: center; }
  .s-hero-2col { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .s-about-inner { grid-template-columns: 1fr; gap: 44px; }
  .s-check-cols { grid-template-columns: 1fr 1fr; }
  .s-feat-row { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
  .s-feat-row--flip .s-feat-copy { order: 2; }
  .s-feat-row--flip .s-feat-image { order: 1; }
  .s-why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .s-support-inner { grid-template-columns: 1fr; gap: 44px; }
  .s-faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .s-faq-sidebar { position: static; }
  .s-faq-arrow { display: none; }
  .s-blog-grid { grid-template-columns: 1fr 1fr; }
  .s-insta-grid { grid-template-columns: repeat(6, 1fr); }
  /* sub-page responsive */
  .s-why-grid--3 { grid-template-columns: 1fr 1fr; }
  .s-why-grid--2 { grid-template-columns: 1fr 1fr; }
  .s-features-page-layout { grid-template-columns: 1fr; }
  .s-feat-nav { position: static; display: flex; flex-wrap: wrap; gap: 6px; }
  .s-feat-nav-title { display: none; }
  .s-feat-card-grid { grid-template-columns: 1fr 1fr; }
  .s-chatbot-layout { grid-template-columns: 1fr; }
  .s-chatbot-center { order: -1; }
  .s-app-layout { grid-template-columns: 1fr; }
  .s-app-center { order: -1; }
  .s-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .s-testimonials-text-grid { grid-template-columns: 1fr 1fr; }
  .s-blog-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .s-post-layout { grid-template-columns: 1fr; gap: 40px; }
  .s-post-sidebar { position: static; }
  .s-pricing-grid { grid-template-columns: 1fr; border-radius: 16px; }
  .s-pricing-card { border-right: none; border-bottom: 1.5px solid #e2e8f0; }
  .s-pricing-card:last-child { border-bottom: none; }
  .s-pricing-card--popular { margin: 0; border-radius: 0; box-shadow: none; border-bottom: 1.5px solid rgba(255,255,255,.1); }
  .s-included-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .s-collage-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, 180px); }
  .s-collage-item--tall { grid-row: 1 / 3; }
}

@media (max-width: 640px) {
  .s-collage-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, 140px); }
  .s-collage-item--tall { grid-row: 1 / 3; }
}

@media (max-width: 640px) {
  .s-hero { padding-top: 36px; }
  .s-hero-ctas { flex-direction: column; align-items: stretch; }
  .s-btn-primary, .s-btn-ghost { justify-content: center; }
  .s-stat-item { padding: 16px 20px; }
  .s-stat-sep { display: none; }
  .s-feat-row { padding: 44px 0; gap: 28px; }
  .s-feat-row--flip .s-feat-copy { order: 0; }
  .s-feat-row--flip .s-feat-image { order: 0; }
  .s-why-grid { grid-template-columns: 1fr; gap: 14px; }
  .s-blog-grid { grid-template-columns: 1fr; }
  .s-insta-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .s-insta-header { flex-wrap: wrap; }
  /* sub-page responsive */
  .s-why-grid--3 { grid-template-columns: 1fr; }
  .s-why-grid--2 { grid-template-columns: 1fr; }
  .s-feat-card-grid { grid-template-columns: 1fr; }
  .s-cta-actions { flex-direction: column; align-items: stretch; }
  .s-page-hero { padding: 56px 0 48px; }
  .s-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .s-testimonials-text-grid { grid-template-columns: 1fr; }
  .s-blog-posts-grid { grid-template-columns: 1fr; }
}
/*






*/

