@keyframes fadeInUp   { from { opacity:0; transform:translateY(32px) } to { opacity:1; transform:none } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-24px) } to { opacity:1; transform:none } }
@keyframes fadeInLeft { from { opacity:0; transform:translateX(-32px) } to { opacity:1; transform:none } }
@keyframes blob {
  0%,100% { transform: translate(0,0) scale(1) }
  25%      { transform: translate(20px,-28px) scale(1.05) }
  50%      { transform: translate(-10px,18px) scale(.95) }
  75%      { transform: translate(-28px,-8px) scale(1.02) }
}
@keyframes float {
  0%,100% { transform: translateY(0) }
  50%      { transform: translateY(-14px) }
}
@keyframes bounceSoft {
  0%,100% { transform: translateY(0) }
  50%      { transform: translateY(-5px) }
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50% }
  50%      { background-position: 100% 50% }
}
@keyframes pulseSoft {
  0%,100% { opacity:1 } 50% { opacity:.6 }
}
@keyframes marquee {
  from { transform: translateX(0) } to { transform: translateX(-50%) }
}
@keyframes slideIn {
  from { opacity:0; transform:translateX(-16px) } to { opacity:1; transform:none }
}

.anim-fade-up   { animation: fadeInUp .8s ease forwards }
.anim-fade-down { animation: fadeInDown .7s ease forwards }
.anim-fade-left { animation: fadeInLeft .7s ease forwards }
.anim-float     { animation: float 4s ease-in-out infinite }
.anim-blob      { animation: blob 12s ease-in-out infinite }
.anim-bounce    { animation: bounceSoft 2s ease-in-out infinite }
.anim-pulse     { animation: pulseSoft 3s ease-in-out infinite }

.d100 { animation-delay: .1s }  .d200 { animation-delay: .2s }
.d300 { animation-delay: .3s }  .d400 { animation-delay: .4s }
.d500 { animation-delay: .5s }  .d600 { animation-delay: .6s }
.d700 { animation-delay: .7s }  .d800 { animation-delay: .8s }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
#navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: .5rem; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 20px; height: 20px; fill: white; }
.nav-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--muted-fg); transition: color .2s; }
.nav-links a:hover { color: var(--fg); }
.nav-ctas { display: flex; align-items: center; gap: .75rem; }
.btn-ghost { font-size: .875rem; font-weight: 500; color: var(--fg); padding: .5rem .75rem; border-radius: 8px; transition: background .2s; }
.btn-ghost:hover { background: var(--muted); }
.btn-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--fg); color: #fff; font-size: .875rem; font-weight: 600;
  padding: .6rem 1.25rem; border-radius: 999px; transition: transform .2s, box-shadow .2s;
}
.btn-pill:hover { transform: scale(1.04); box-shadow: 0 6px 20px rgba(13,27,42,.2); }
.btn-pill-outline {
  display: inline-flex; align-items: center; gap: .4rem;
  border: 1.5px solid var(--border); color: var(--fg); font-size: .875rem; font-weight: 600;
  padding: .6rem 1.25rem; border-radius: 999px; transition: background .2s, border-color .2s;
  background: rgba(255,255,255,.5); backdrop-filter: blur(6px);
}
.btn-pill-outline:hover { background: var(--bg); border-color: var(--fg); }

/* hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; background: none; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-mobile { display: none; padding: 1rem 1.5rem 1.5rem; border-top: 1px solid var(--border); background: rgba(255,255,255,.96); backdrop-filter: blur(14px); }
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: .25rem; margin-bottom: 1rem; }
.nav-mobile a { display: block; padding: .6rem .75rem; border-radius: 8px; font-weight: 500; color: var(--muted-fg); transition: background .2s, color .2s; }
.nav-mobile a:hover { background: var(--muted); color: var(--fg); }
.nav-mobile-ctas { display: flex; flex-direction: column; gap: .5rem; }

/* ─── HERO ─── */
#hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #eef4ff 0%, #f3ebff 50%, #fce8f3 100%);
}
.hero-blobs { position: absolute; inset: 0; pointer-events: none; }
.hero-blobs span {
  position: absolute; border-radius: 50%; filter: blur(60px);
}
.blob-1 { width: 420px; height: 420px; background: rgba(155,93,229,.15); top: -80px; right: -60px; }
.blob-2 { width: 500px; height: 500px; background: rgba(19,87,124,.08); top: 40%; left: -100px; }
.blob-3 { width: 360px; height: 360px; background: rgba(241,91,181,.12); bottom: -60px; right: 25%; }

.hero-inner {
  position: relative; z-index: 1; text-align: center; padding: 8rem 1.5rem 5rem;
  max-width: 900px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.8); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 999px;
  padding: .4rem 1rem; margin-bottom: 2rem; font-size: .8rem; font-weight: 500;
  opacity: 0;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulseSoft 2s ease-in-out infinite; }
.hero-badge a { color: var(--primary-mid); font-weight: 600; margin-left: .25rem; }
.hero-h1 {
  font-family: var(--font-display); font-size: clamp(2.8rem,7vw,5.5rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -.03em;
  margin-bottom: 1.25rem; opacity: 0;
}
.hero-sub {
  font-size: clamp(1rem,2vw,1.2rem); color: var(--muted-fg);
  max-width: 580px; margin: 0 auto 2.5rem; opacity: 0;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; opacity: 0; margin-bottom: 4rem; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--fg); color: #fff; font-weight: 700; font-size: 1rem;
  padding: .9rem 2rem; border-radius: 999px; transition: transform .2s, box-shadow .2s;
}
.btn-hero-primary:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(13,27,42,.2); }
.btn-hero-primary svg { transition: transform .2s; }
.btn-hero-primary:hover svg { transform: translateX(4px); }
.btn-hero-secondary {
  display: inline-flex; align-items: center;
  border: 1.5px solid rgba(13,27,42,.2); color: var(--fg); font-weight: 600; font-size: 1rem;
  padding: .9rem 2rem; border-radius: 999px; background: rgba(255,255,255,.6); backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s;
}
.btn-hero-secondary:hover { background: #fff; border-color: var(--fg); }

.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; opacity: 0; }
.hero-stat-value { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; letter-spacing: -.03em; }
.hero-stat-label { font-size: .8rem; color: var(--muted-fg); margin-top: .15rem; }
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-size: .7rem; color: var(--muted-fg); letter-spacing: .08em; text-transform: uppercase;
}
.hero-scroll-track {
  width: 28px; height: 46px; border: 2px solid rgba(13,27,42,.2); border-radius: 999px;
  display: flex; justify-content: center; padding-top: 6px;
}
.hero-scroll-dot { width: 5px; height: 10px; background: var(--muted-fg); border-radius: 999px; }

/* ─── SECTION SHARED ─── */
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary-light); margin-bottom: .75rem;
}
.section-h2 { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin-bottom: .75rem; }
.section-sub { font-size: 1.05rem; color: var(--muted-fg); max-width: 520px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 3.5rem; }

/* ─── PRODUCTS ─── */
#products { padding: 7rem 0; background: var(--bg); }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.product-card {
  position: relative; border: 1px solid var(--border); border-radius: 1.25rem;
  padding: 2rem; background: var(--card); overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
}
.product-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  transition: opacity .3s;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card:hover::before { opacity: 1; }
.product-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: transform .3s;
}
.product-card:hover .product-icon-wrap { transform: scale(1.1); }
.product-icon-wrap svg { width: 26px; height: 26px; }
.product-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
.product-card p { font-size: .9rem; color: var(--muted-fg); line-height: 1.6; }
.product-arrow {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  opacity: 0; transform: translateX(6px); transition: opacity .3s, transform .3s;
}
.product-card:hover .product-arrow { opacity: 1; transform: none; }
.ic-blue   { background: #eff6ff; color: #2563eb; }
.ic-purple { background: #f5f3ff; color: #7c3aed; }
.ic-green  { background: #f0fdf4; color: #16a34a; }
.ic-orange { background: #fff7ed; color: #ea580c; }
.ic-pink   { background: #fdf2f8; color: #db2777; }
.ic-cyan   { background: #ecfeff; color: #0891b2; }

/* ─── FEATURES ─── */
#features { padding: 7rem 0; background: var(--muted); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.feature-card {
  display: flex; gap: 1rem; padding: 1.5rem; border-radius: 1rem;
  background: var(--bg); border: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.feature-card:hover { border-color: var(--border); box-shadow: var(--shadow-sm); }
.feature-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: rgba(19,87,124,.08); display: flex; align-items: center; justify-content: center; }
.feature-icon svg { width: 22px; height: 22px; color: var(--primary); }
.feature-card h3 { font-weight: 700; font-size: .95rem; margin-bottom: .3rem; }
.feature-card p { font-size: .85rem; color: var(--muted-fg); line-height: 1.55; }

/* ─── EDITOR PREVIEW ─── */
#demo { padding: 7rem 0; background: var(--bg); overflow: hidden; }
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.demo-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(155,93,229,.08); border: 1px solid rgba(155,93,229,.2);
  border-radius: 999px; padding: .35rem .85rem; margin-bottom: 1.25rem;
  font-size: .78rem; font-weight: 700; color: var(--accent); letter-spacing: .04em; text-transform: uppercase;
}
.demo-features { display: flex; flex-direction: column; gap: .85rem; margin: 1.75rem 0 2.25rem; }
.demo-feature { display: flex; align-items: center; gap: .75rem; }
.demo-feature-icon { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; background: rgba(19,87,124,.08); display: flex; align-items: center; justify-content: center; }
.demo-feature-icon svg { width: 16px; height: 16px; color: var(--primary); }
.demo-feature span { font-size: .9rem; font-weight: 500; }
.demo-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-dark {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--fg); color: #fff; font-weight: 700; font-size: .9rem;
  padding: .8rem 1.6rem; border-radius: 999px; transition: transform .2s, box-shadow .2s;
}
.btn-dark:hover { transform: scale(1.04); box-shadow: var(--shadow-md); }
.btn-dark svg { transition: transform .2s; }
.btn-dark:hover svg { transform: translateX(3px); }
.btn-outline {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--border); color: var(--fg); font-weight: 600; font-size: .9rem;
  padding: .8rem 1.6rem; border-radius: 999px; transition: background .2s;
}
.btn-outline:hover { background: var(--muted); }

/* phone mockup */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-glow {
  position: absolute; inset: -60px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(19,87,124,.15) 0%, rgba(155,93,229,.1) 50%, transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.phone-frame {
  position: relative; width: 300px; background: var(--fg);
  border-radius: 48px; padding: 12px; box-shadow: var(--shadow-lg);
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 28px; background: var(--fg); border-radius: 0 0 18px 18px; z-index: 5;
}
.phone-screen { background: var(--bg); border-radius: 38px; overflow: hidden; }
.phone-status { height: 40px; background: linear-gradient(to bottom, rgba(19,87,124,.08), transparent); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 8px; }
.phone-status-bar { width: 70px; height: 4px; background: rgba(13,27,42,.12); border-radius: 2px; }
.phone-body { padding: 0 1.25rem 1.5rem; }
.phone-avatar-wrap { display: flex; justify-content: center; margin-bottom: 1rem; }
.phone-avatar-ring { padding: 3px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-light), var(--accent)); }
.phone-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--muted); display: flex; align-items: center; justify-content: center; }
.phone-avatar svg { width: 40px; height: 40px; color: var(--muted-fg); }
.phone-name { text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: .2rem; }
.phone-bio { text-align: center; font-size: .75rem; color: var(--muted-fg); margin-bottom: 1rem; }
.phone-contacts { display: flex; justify-content: center; gap: .6rem; margin-bottom: 1rem; }
.phone-contact-btn { width: 42px; height: 42px; border-radius: 50%; background: var(--muted); display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: transform .2s; }
.phone-contact-btn:hover { transform: scale(1.1); }
.phone-contact-btn svg { width: 18px; height: 18px; }
.phone-links { display: flex; flex-direction: column; gap: .5rem; }
.phone-link-btn {
  display: flex; align-items: center; gap: .6rem; padding: .65rem 1rem;
  border-radius: 12px; font-weight: 600; font-size: .8rem; color: #fff; border: none; cursor: pointer;
  transition: transform .15s;
}
.phone-link-btn:hover { transform: scale(1.02); }
.phone-link-btn svg { width: 18px; height: 18px; }
.phone-bottom { height: 28px; display: flex; justify-content: center; align-items: flex-end; padding-bottom: 8px; }
.phone-home-bar { width: 100px; height: 4px; background: rgba(13,27,42,.12); border-radius: 2px; }
.phone-float-icon {
  position: absolute; border-radius: 16px;
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
}
.phone-float-1 { top: -16px; right: -16px; width: 60px; height: 60px; background: rgba(155,93,229,.15); }
.phone-float-2 { bottom: -12px; left: -16px; width: 50px; height: 50px; background: rgba(19,87,124,.15); }
.phone-float-1 svg { width: 28px; height: 28px; color: var(--accent); }
.phone-float-2 svg { width: 22px; height: 22px; color: var(--primary-light); }

/* ─── TESTIMONIALS ─── */
#testimonials { padding: 7rem 0; background: var(--muted); overflow: hidden; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.testimonial-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 1.25rem;
  padding: 1.75rem; transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.star { width: 16px; height: 16px; fill: #facc15; color: #facc15; }
.testimonial-text { font-size: .9rem; color: var(--fg); line-height: 1.65; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem; color: #fff; font-family: var(--font-display);
}
.testimonial-name { font-weight: 700; font-size: .9rem; }
.testimonial-role { font-size: .78rem; color: var(--muted-fg); }

/* ─── CTA ─── */
#cta { padding: 7rem 0; background: var(--bg); }
.cta-box {
  position: relative; border-radius: 2rem; overflow: hidden;
  background: linear-gradient(135deg, var(--fg) 0%, #1a2e44 100%);
  padding: 5rem 2rem; text-align: center;
}
.cta-glow-1 { position: absolute; top: -60px; right: -60px; width: 320px; height: 320px; border-radius: 50%; background: rgba(19,87,124,.3); filter: blur(80px); }
.cta-glow-2 { position: absolute; bottom: -60px; left: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(155,93,229,.2); filter: blur(60px); }
.cta-content { position: relative; z-index: 1; }
.cta-h2 { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,3rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 1rem; }
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 500px; margin: 0 auto 2rem; }
.cta-benefits { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; margin-bottom: 2.5rem; }
.cta-benefit { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.75); font-size: .875rem; }
.cta-check { width: 20px; height: 20px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-check svg { width: 11px; height: 11px; color: #fff; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--fg); font-weight: 700; font-size: .95rem;
  padding: .9rem 2rem; border-radius: 999px; transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: scale(1.04); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.btn-white svg { transition: transform .2s; }
.btn-white:hover svg { transform: translateX(3px); }
.btn-ghost-white {
  display: inline-flex; align-items: center;
  border: 1.5px solid rgba(255,255,255,.3); color: #fff; font-weight: 600; font-size: .95rem;
  padding: .9rem 2rem; border-radius: 999px; transition: background .2s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.1); }

/* ─── FOOTER ─── */
footer { background: rgba(244,246,249,.6); border-top: 1px solid var(--border); }
.footer-main { padding: 4rem 0; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand-desc { font-size: .875rem; color: var(--muted-fg); max-width: 220px; margin: .75rem 0 1.25rem; line-height: 1.65; }
.footer-socials { display: flex; gap: .5rem; }
.footer-social {
  width: 38px; height: 38px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--muted-fg);
  transition: color .2s, border-color .2s;
}
.footer-social:hover { color: var(--fg); border-color: var(--fg); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: .875rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .85rem; color: var(--muted-fg); transition: color .2s; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  padding: 1.5rem 0; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .8rem; color: var(--muted-fg); }

/* ─── WHATSAPP ─── */
#whatsapp-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
#whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 10px 28px rgba(37,211,102,.5); }
#whatsapp-btn svg { width: 28px; height: 28px; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  /* .products-grid, .features-grid { grid-template-columns: repeat(2,1fr); } */
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .demo-grid { grid-template-columns: 1fr; gap: 3rem; }
  .demo-phone { order: -1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
  .products-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

