@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/assets/manrope-var.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --purple: #5E17EB;
  --purple-light: #8924FF;
  --purple-hover: #4A10C4;
  --yellow: #FFBD58;
  --dark: #2E3A44;
  --white: #FFFFFF;
  --off-white: #FCFAFA;
  --surface: #F3F3F8;
  --text: #2E3A44;
  --muted: #474F7B;
  --border: #E0E2ED;
  --shadow-card: 0 5px 30px rgba(0,0,0,0.07);
  --shadow-soft: 0 2px 12px rgba(0,0,0,0.04);
  --shadow-pop: 0 12px 60px rgba(94,23,235,0.14);
}

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

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.1;
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

/* ── FLOATING CTA (top-right pill on vertical pages) ── */
.floating-cta {
  position: fixed;
  top: 20px;
  right: 24px;
  background: var(--purple);
  color: white;
  padding: 12px 22px 13px;
  border-radius: 48px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(94,23,235,0.28);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  letter-spacing: -0.01em;
}
.floating-cta:hover {
  background: var(--purple-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(94,23,235,0.36);
}
@media (max-width: 600px) {
  .floating-cta {
    top: auto;
    bottom: 16px;
    right: 16px;
    font-size: 13px;
    padding: 10px 18px 11px;
  }
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--purple);
  color: white;
  border: none;
  padding: 15px 30px 16px;
  border-radius: 48px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  letter-spacing: -0.01em;
}
.btn-primary:hover { background: var(--purple-hover); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(94,23,235,0.28); }
.btn-xl { padding: 18px 38px 19px; font-size: 17px; border-radius: 56px; }

.btn-secondary {
  color: var(--purple);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.btn-secondary:hover { gap: 10px; }

.section-tag {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple);
  margin-bottom: 18px;
}

/* ── HERO ── */
.hero {
  padding: 110px 6% 96px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-visual { position: relative; }
.product-screenshot {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
}
.product-screenshot img { width: 100%; display: block; }

.float-badge {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  z-index: 10;
}
.float-badge-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.float-badge-text { font-size: 13px; font-weight: 700; color: var(--dark); letter-spacing: -0.01em; }
.float-badge-sub { font-size: 11.5px; color: var(--muted); font-weight: 500; }
.badge-top { top: 20px; right: -20px; animation: floatY 3s ease-in-out infinite 1.5s; }
.badge-bot { bottom: -14px; left: -20px; animation: floatY 3s ease-in-out infinite; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F0E8FD;
  color: var(--purple);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--purple);
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.hero h1 em { font-style: normal; color: var(--purple); }
.hero-sub {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 500;
}
.hero-sub strong { color: var(--dark); font-weight: 700; }
.hero-ctas {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.hero-stars { display: flex; gap: 2px; }
.star-sm { width: 14px; height: 14px; fill: #FFBD58; }

/* ── RECEIPTS / STATS ── */
.stats {
  background: #F3F0FD;
  padding: 110px 6%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(94,23,235,0.12);
  color: var(--purple);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px 6px 6px;
  border-radius: 100px;
  margin-bottom: 26px;
  letter-spacing: -0.005em;
}
.stats-badge-num {
  background: var(--purple);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.stats-content h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  line-height: 1.1;
}
.stats-content p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 34px;
  font-weight: 500;
  max-width: 500px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: white;
  border-radius: 22px;
  padding: 42px 28px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(94,23,235,0.14); }
.stat-num {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.stat-label {
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* ── VIBE AI SUITE ── */
.vibe-ai {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF7FE 100%);
  padding: 110px 6%;
}
.vibe-ai-inner { max-width: 1200px; margin: 0 auto; }
.vibe-ai-header { text-align: center; margin-bottom: 60px; }
.vibe-ai-header h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.vibe-ai-header h2 em { font-style: normal; color: var(--purple); }
.vibe-ai-header p { font-size: 19px; color: var(--muted); max-width: 640px; margin: 0 auto; font-weight: 500; }
.vibe-ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.vibe-ai-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.vibe-ai-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); border-color: rgba(94,23,235,0.25); }
.vibe-ai-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; background: #F3F0FD; }
.vibe-ai-card-body { padding: 28px 30px 32px; }
.vibe-ai-tag {
  display: inline-block;
  background: #F0E8FD;
  color: var(--purple);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.vibe-ai-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.vibe-ai-card p { font-size: 15.5px; color: var(--muted); line-height: 1.6; font-weight: 500; }
.vibe-ai-card-receipt {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  background: #FFF5E0;
  padding: 6px 12px;
  border-radius: 100px;
}
.vibe-ai-card-receipt span.bullet { color: #A0700A; }

/* ── BRANDED SOLUTIONS ── */
.branded-solutions {
  padding: 110px 6%;
  max-width: 1200px;
  margin: 0 auto;
}
.branded-solutions-header { text-align: center; margin-bottom: 56px; }
.branded-solutions-header h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.branded-solutions-header p { font-size: 19px; color: var(--muted); max-width: 620px; margin: 0 auto; font-weight: 500; }
.branded-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bsol-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.bsol-card.featured { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(94,23,235,0.06), var(--shadow-card); }
.bsol-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); border-color: rgba(94,23,235,0.25); }
.bsol-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #F0E8FD;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.bsol-icon .icon { width: 24px; height: 24px; }
.bsol-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.bsol-card p { font-size: 15px; color: var(--muted); line-height: 1.6; font-weight: 500; }
.bsol-rank {
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── FEATURES DARK ── */
.features { background: var(--off-white); padding: 110px 6%; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 60px; }
.features-header .section-tag { color: var(--purple); }
.features-header h2 {
  color: var(--dark);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.features-header p { color: var(--muted); font-size: 19px; max-width: 620px; margin: 0 auto; font-weight: 500; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { border-color: rgba(94,23,235,0.25); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.feature-card-image { display: block; }
.feature-card-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #F0E8FD 0%, #FFEFC9 100%);
}
.feature-card-body { padding: 26px 28px 30px; }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon .icon { color: white; }
.feature-card h3 { color: var(--dark); font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.015em; }
.feature-card p { color: var(--muted); font-size: 15px; line-height: 1.6; font-weight: 500; }
.features-cta { text-align: center; }

/* ── PRICING ── */
.pricing { padding: 110px 6%; background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing-inner { max-width: 1140px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.pricing-header p { font-size: 19px; color: var(--muted); font-weight: 500; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.pricing-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 38px 30px;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s, transform 0.25s;
}
.pricing-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(94,23,235,0.06), var(--shadow-card); }
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}
.pricing-tagline { font-size: 14px; color: var(--muted); margin-bottom: 18px; font-weight: 500; }
.price-main { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-dollar {
  font-family: 'Manrope', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.04em;
}
.price-mo { font-size: 16px; color: var(--muted); font-weight: 500; }
.price-note { font-size: 13px; color: var(--muted); margin-bottom: 26px; font-weight: 500; }
.pricing-divider { height: 1px; background: var(--border); margin: 22px 0; }
.pricing-features { list-style: none; margin-bottom: 30px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
  font-weight: 500;
}
.pricing-features li:last-child { border: none; }
.check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #E8FBF0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-cta {
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 48px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: all 0.25s ease;
  letter-spacing: -0.01em;
}
.cta-outline { background: transparent; border: 1.5px solid var(--purple); color: var(--purple); }
.cta-outline:hover { background: var(--purple); color: white; transform: translateY(-1px); }
.cta-solid { background: var(--purple); border: 1.5px solid var(--purple); color: white; }
.cta-solid:hover { background: var(--purple-hover); border-color: var(--purple-hover); box-shadow: 0 10px 28px rgba(94,23,235,0.28); transform: translateY(-1px); }
.addon-tag {
  display: inline-block;
  background: #FFF5E0;
  color: #A0700A;
  font-family: 'Manrope', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 14px;
}
.pricing-note { text-align: center; font-size: 14.5px; color: var(--muted); font-weight: 500; }

/* ── FAQ ── */
.faq {
  padding: 110px 6%;
  max-width: 900px;
  margin: 0 auto;
}
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-header h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.faq-header p { font-size: 19px; color: var(--muted); font-weight: 500; max-width: 620px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-card); border-color: #D6CFE8; }
.faq-item summary {
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--off-white); }
.faq-chev {
  width: 20px;
  height: 20px;
  color: var(--purple);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-answer {
  padding: 0 26px 24px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 500;
}
.faq-answer strong { color: var(--dark); font-weight: 700; }
.faq-answer a { color: var(--purple); text-decoration: none; font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }

/* ── FINAL CTA ── */
.final-cta {
  padding: 110px 6%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 auto 20px;
  line-height: 1.05;
  max-width: 760px;
}
.final-cta h2 em { font-style: normal; color: var(--purple); }
.final-cta > p { font-size: 20px; color: var(--muted); margin: 0 auto 36px; line-height: 1.55; font-weight: 500; max-width: 640px; }
.final-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.final-checks {
  display: flex;
  justify-content: center;
  gap: 14px 28px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 720px;
}
.final-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--dark);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.final-check svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--purple);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: white;
  border-radius: 50%;
  padding: 2px;
  box-shadow: 0 2px 8px rgba(94,23,235,0.15);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 42px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 500;
}
.footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); }
footer a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 600; }
footer a:hover { color: white; }

/* ── ICON SVG ── */
.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
/* feature-icon .icon styling moved to .feature-icon block above */
.float-badge-icon .icon { color: var(--purple); width: 20px; height: 20px; }

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero,
  .stats-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 56px 6% 64px; }
  .hero-visual { order: -1; }
  .badge-top, .badge-bot { display: none; }
  .features-grid,
  .vibe-ai-grid,
  .branded-solutions-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .stat-card { padding: 32px 20px; }
  .features, .pricing, .final-cta, .faq, .stats, .vibe-ai, .branded-solutions { padding-top: 72px; padding-bottom: 72px; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .features-grid,
  .vibe-ai-grid,
  .branded-solutions-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(36px, 9vw, 44px); }
}
