/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(15, 10, 30, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  transition: background 0.3s;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--card-border);
}

.btn-ghost:hover {
  background: var(--card-bg);
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(35,71,232,0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(35,71,232,0.55);
}

.btn-large {
  padding: 15px 32px;
  font-size: 1rem;
  border-radius: 12px;
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(35,71,232,0.22) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
}

.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(56,189,248,0.15) 0%, transparent 70%);
  bottom: 0; right: 5%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(35,71,232,0.15);
  border: 1px solid rgba(35,71,232,0.35);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-2);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--brand-2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 12px;
}

h1 .highlight {
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-khmer {
  font-family: 'Noto Sans Khmer', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-trust .avatars {
  display: flex;
}

.hero-trust .avatars span {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
}

.hero-trust .avatars span:first-child { margin-left: 0; }

/* ─── PHONE MOCKUP ─── */
.hero-mockup {
  position: relative;
  margin-top: 20px;
  width: 100%;
  max-width: 900px;
}

.phone-frame {
  width: 248px;
  height: 510px;
  background: #0F1535;
  border-radius: 38px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 50px 120px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.07);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.phone-notch {
  width: 80px; height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  position: relative;
  padding: 0;
  height: calc(100% - 22px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #F0F3FA;
}

.app-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 14px 2px;
  background: #111B5E;
  font-size: 7px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111B5E;
  padding: 8px 14px 10px;
}

.app-ham {
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
}

.app-header-center {
  display: flex;
  align-items: center;
  gap: 7px;
}

.app-avatar-circle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.app-name-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.owner-badge {
  font-size: 5.5px;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 1px 4px;
  letter-spacing: 0.07em;
  vertical-align: middle;
}

.app-store-name {
  font-size: 7px;
  color: rgba(255,255,255,0.6);
  line-height: 1.3;
  margin-top: 1px;
}

.bell-wrap {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.perf-card {
  background: #111B5E;
  margin: 8px 10px;
  border-radius: 14px;
  padding: 10px 14px 14px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

.perf-title { font-size: 8.5px; font-weight: 700; margin-bottom: 9px; color: rgba(255,255,255,0.75); letter-spacing: 0.02em; }

.perf-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.perf-stat {
  flex: 1;
  padding: 8px 10px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.perf-divider { display: none; }

.perf-stat-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
  flex-shrink: 0;
}

.sales-icon { background: rgba(35,71,232,0.12); color: #2347E8; }
.dlv-icon { background: rgba(52,211,153,0.18); color: #059669; }

.perf-lbl { font-size: 7px; color: rgba(0,0,0,0.5); line-height: 1.2; }
.perf-val { font-size: 13px; font-weight: 800; color: #1A1A2E; line-height: 1.2; }
.perf-sub { font-size: 7px; color: rgba(0,0,0,0.4); }

.order-list {
  flex: 1;
  padding: 10px 8px 0;
  overflow: hidden;
  background: #F0F3FA;
}

.order-list-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  padding: 0 2px;
}

.order-list-title { font-size: 9.5px; font-weight: 700; color: #1A1A2E; }
.view-all { font-size: 7.5px; color: #2347E8; font-weight: 600; }

.order-item {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 5px;
  gap: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.o-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.o-delivery { background: rgba(255,160,0,0.14); }
.o-walkin { background: rgba(35,71,232,0.1); }

.o-info { flex: 1; min-width: 0; }

.o-id {
  font-size: 7px;
  font-weight: 700;
  color: #2347E8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.o-meta { font-size: 6.5px; color: rgba(0,0,0,0.45); margin-top: 1px; line-height: 1.2; }
.o-time { font-size: 6px; color: rgba(0,0,0,0.35); margin-top: 1px; }

.o-right { text-align: right; flex-shrink: 0; }
.order-item .o-price { font-size: 9px; font-weight: 700; color: #1A1A2E; }

.o-badge {
  display: inline-block;
  font-size: 6px;
  padding: 2px 5px;
  border-radius: 100px;
  font-weight: 700;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.o-badge.completed { background: rgba(52,211,153,0.15); color: #059669; }
.o-badge.pending { background: rgba(251,191,36,0.15); color: #FBBF24; }
.o-badge.processing { background: rgba(251,146,60,0.15); color: #EA580C; }

.o-arrow {
  font-size: 10px;
  color: rgba(0,0,0,0.25);
  flex-shrink: 0;
  margin-left: 1px;
}

.fab-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #1A2575;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 300;
  box-shadow: 0 4px 16px rgba(26,37,117,0.5);
  line-height: 1;
  z-index: 10;
}

/* ─── SECTIONS COMMON ─── */
section {
  position: relative;
  z-index: 1;
  padding: 100px 5%;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--brand-2);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  max-width: 640px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ─── FEATURES ─── */
#features {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(35,71,232,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(35,71,232,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-icon-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.feature-icon-row .feature-icon {
  margin-bottom: 0;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-card .khmer-label {
  font-family: 'Noto Sans Khmer', sans-serif;
  font-size: 0.78rem;
  color: var(--brand-2);
  margin-top: 12px;
  font-weight: 600;
}

/* ─── HOW IT WORKS ─── */
#how-it-works { background: var(--dark-2); }

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 0;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-1), var(--brand-2), transparent);
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(35,71,232,0.4);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step p { font-size: 0.88rem; color: var(--text-muted); }

/* ─── PRICING ─── */
#pricing { background: var(--dark); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(35,71,232,0.15), rgba(79,115,240,0.1));
  border-color: rgba(35,71,232,0.4);
  box-shadow: var(--shadow);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2), var(--brand-3));
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.plan-badge.free { background: rgba(52,211,153,0.15); color: #34D399; }
.plan-badge.pro { background: rgba(35,71,232,0.2); color: var(--brand-2); }

.price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.price sup { font-size: 1.2rem; vertical-align: super; font-weight: 700; }

.price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.plan-divider { height: 1px; background: var(--card-border); margin-bottom: 24px; }

.plan-features { list-style: none; margin-bottom: 32px; }

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 12px;
}

.plan-features li .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features li .check.yes { background: rgba(52,211,153,0.2); color: #34D399; }
.plan-features li .check.soon { background: rgba(245,158,11,0.15); color: var(--accent); }
.plan-features li.muted { color: var(--text-muted); }

/* ─── STATS ─── */
#stats {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  padding: 80px 5%;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item .num {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .label { font-size: 0.95rem; color: var(--text-muted); }

/* ─── CTA ─── */
#cta { background: var(--dark); text-align: center; }

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(35,71,232,0.12), rgba(79,115,240,0.08));
  border: 1px solid rgba(35,71,232,0.25);
  border-radius: 28px;
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-1), var(--brand-2), transparent);
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.2s;
}

.store-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.store-btn .store-icon { font-size: 22px; }
.store-btn .store-text .sub { font-size: 0.68rem; color: var(--text-muted); }
.store-btn .store-text .main { font-size: 0.92rem; font-weight: 700; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--card-border);
  padding: 60px 5% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--card-border);
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-socials { display: flex; gap: 12px; }

.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.social-link:hover {
  background: rgba(35,71,232,0.2);
  border-color: rgba(35,71,232,0.4);
  color: var(--white);
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator .arrow {
  width: 22px; height: 22px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── MARQUEE ─── */
.marquee-section {
  padding: 28px 0;
  overflow: hidden;
  background: rgba(35,71,232,0.06);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 22s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-2);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── MOBILE NAV ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--dark-2);
  border-bottom: 1px solid var(--card-border);
  padding: 20px 5%;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--card-border);
}

/* ─── FLOATING BADGES ─── */
.float-badge {
  position: absolute;
  background: var(--dark-3);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  z-index: 2;
}

.float-badge.left {
  left: -40px; top: 30%;
  animation: floatL 3.5s ease-in-out infinite;
}

.float-badge.right {
  right: -40px; top: 55%;
  animation: floatR 3s ease-in-out infinite;
}

@keyframes floatL {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatR {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 768px) { .float-badge { display: none; } }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn-ghost { display: none; }
  .steps-container::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-card { padding: 32px 24px; }
  .cta-box { padding: 48px 24px; }
  .steps-container { grid-template-columns: 1fr; gap: 40px; }
}
