@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --emerald: #10b981;
  --emerald-dark: #059669;
  --emerald-light: #d1fae5;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --gold: #f59e0b;
  --violet: #8b5cf6;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 25px 60px rgba(15, 23, 42, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--slate-900);
  background: var(--slate-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1200px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 2rem)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: .75rem; font-weight: 800; font-size: 1.2rem; }
.logo-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--emerald), #14b8a6);
  color: #fff; box-shadow: 0 8px 20px rgba(16,185,129,0.35);
}
.logo-mark.sm { width: 36px; height: 36px; border-radius: 10px; }
.logo-wordmark span { color: var(--emerald); }
.nav-desktop { display: flex; gap: .25rem; }
.nav-desktop a {
  padding: .6rem 1rem; border-radius: 10px;
  color: var(--slate-700); font-weight: 500; font-size: .92rem;
  transition: .2s;
}
.nav-desktop a:hover { background: var(--slate-100); color: var(--slate-900); }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.nav-toggle {
  display: none; background: var(--slate-100); border: 0;
  width: 42px; height: 42px; border-radius: 10px; cursor: pointer;
  place-items: center;
}
.nav-mobile {
  display: none;
  gap: .25rem;
  padding: 1rem;
  border-top: 1px solid var(--slate-200);
  background: #fff;
}
.nav-mobile a { padding: .85rem 1rem; border-radius: 10px; font-weight: 500; }
.nav-mobile a:hover { background: var(--slate-100); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border: 0; border-radius: 12px; padding: .75rem 1.25rem;
  font-weight: 600; font-size: .92rem; cursor: pointer; transition: .2s;
  font-family: inherit;
}
.btn-primary { background: var(--emerald); color: #fff; box-shadow: 0 4px 14px rgba(16,185,129,0.35); }
.btn-primary:hover { background: var(--emerald-dark); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--slate-900); }
.btn-white:hover { background: var(--slate-100); }
.btn-glass { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.btn-glass:hover { background: rgba(255,255,255,0.2); }
.btn-outline { background: #fff; border: 1px solid var(--slate-200); color: var(--slate-700); }
.btn-outline:hover { border-color: var(--emerald); color: var(--emerald-dark); }
.btn-ghost { background: transparent; color: var(--slate-600); }
.btn-ghost:hover { background: var(--slate-100); }
.btn-lg { padding: 1rem 1.5rem; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: .55rem 1rem; font-size: .85rem; }
.btn-block { width: 100%; }

/* Hero Premium */
.hero-premium {
  position: relative; overflow: hidden;
  padding: 5rem 0 6rem;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(16,185,129,0.35), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(20,184,166,0.25), transparent 35%),
    linear-gradient(135deg, #022c22 0%, #064e3b 40%, #0f766e 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34h6v6h-6zM0 34h6v6H0zM0 0h6v6H0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-premium-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem .9rem; border-radius: 999px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  font-size: .82rem; font-weight: 600; margin-bottom: 1.25rem;
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05;
  letter-spacing: -0.03em; margin: 0 0 1.25rem;
}
.hero-copy h1 span { color: #6ee7b7; }
.hero-copy > p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 540px; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 2rem 0 1.5rem; }
.hero-search {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,0.95); border-radius: 16px;
  padding: .5rem .5rem .5rem 1.25rem;
  box-shadow: var(--shadow-lg); max-width: 560px;
}
.hero-search svg { color: var(--slate-400); flex-shrink: 0; }
.hero-search input {
  flex: 1; border: 0; background: transparent; font: inherit;
  font-size: .95rem; outline: none; color: var(--slate-900);
}
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-stat {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 1.25rem;
  backdrop-filter: blur(8px);
}
.hero-stat strong { display: block; font-size: 1.75rem; letter-spacing: -0.02em; }
.hero-stat span { color: rgba(255,255,255,0.7); font-size: .85rem; }
.hero-stat.accent { background: rgba(16,185,129,0.2); border-color: rgba(110,231,183,0.3); }
.deal-float-card {
  display: block; margin-top: 1.25rem;
  background: #fff; color: var(--slate-900);
  border-radius: var(--radius); padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  transition: .2s;
}
.deal-float-card:hover { transform: translateY(-4px); }
.deal-tag {
  display: inline-block; background: var(--emerald-light); color: var(--emerald-dark);
  font-weight: 700; font-size: .8rem; padding: .25rem .6rem; border-radius: 8px;
  margin-bottom: .5rem;
}
.deal-float-card strong { display: block; font-size: 1.05rem; }
.deal-float-card small { color: var(--slate-500); }

/* Sections */
.section { padding: 5rem 0; }
.section-muted { background: #eef2f7; }
.section-dark { background: var(--slate-900); color: #fff; }
.section-featured { background: linear-gradient(180deg, #fff, #f0fdf4); }
.section-header {
  display: flex; justify-content: space-between; align-items: end;
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.section-header.centered { flex-direction: column; align-items: center; text-align: center; }
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin: .35rem 0 0; letter-spacing: -0.02em; }
.section-sub { color: var(--slate-500); margin: .5rem 0 0; max-width: 560px; }
.section-dark .section-sub, .lead-light { color: rgba(255,255,255,0.7); }
.label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--emerald-dark);
}
.label-gold { color: #b45309; }
.label-violet { color: var(--violet); }
.label-light { color: #6ee7b7; }
.text-link { color: var(--emerald-dark); font-weight: 600; }

/* Category grid */
.category-grid-premium { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.category-card {
  display: flex; align-items: center; gap: 1rem;
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1.25rem;
  transition: .25s; box-shadow: var(--shadow);
}
.category-card:hover { transform: translateY(-3px); border-color: #6ee7b7; box-shadow: var(--shadow-lg); }
.category-card-icon { font-size: 2rem; width: 56px; text-align: center; }
.category-card h3 { margin: 0; font-size: 1rem; }
.category-card p { margin: .15rem 0 0; color: var(--slate-500); font-size: .88rem; }
.category-arrow { margin-left: auto; color: var(--emerald); font-weight: 700; }

/* Business cards v2 */
.featured-scroll {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem;
}
.business-card-v2, .business-card, .coupon-card, .coupon-card-v2 {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: .25s; position: relative; display: block;
}
.business-card-v2:hover, .business-card:hover, .coupon-card-v2:hover, .coupon-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #a7f3d0;
}
.business-card-v2.is-featured { border-color: #fcd34d; }
.card-badge, .badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  padding: .3rem .65rem; border-radius: 999px;
}
.badge-gold, .card-badge.badge-gold { background: #fef3c7; color: #92400e; }
.badge-violet { background: #ede9fe; color: #5b21b6; }
.business-card-v2-top, .business-card-top { display: flex; gap: 1rem; padding: 1.25rem; }
.avatar, .mini-avatar, .table-avatar {
  width: 56px; height: 56px; border-radius: 14px; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, var(--emerald), #14b8a6);
  color: #fff; display: grid; place-items: center; font-weight: 700;
}
.mini-avatar { width: 36px; height: 36px; border-radius: 10px; font-size: .75rem; }
.avatar img, .mini-avatar img { width: 100%; height: 100%; object-fit: cover; }
.business-card-v2 h3, .business-card h3 { margin: 0; font-size: 1.05rem; }
.meta, .tagline, .location { color: var(--slate-500); font-size: .88rem; margin: .15rem 0 0; }
.business-card-v2-foot, .business-card-foot {
  display: flex; justify-content: space-between; padding: .9rem 1.25rem;
  background: var(--slate-50); border-top: 1px solid var(--slate-100); font-size: .85rem;
}
.business-card-v2-foot .link, .business-card-foot .link { color: var(--emerald-dark); font-weight: 600; }

/* Coupon cards v2 */
.coupon-grid-premium, .coupon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.coupon-card-v2-image, .coupon-card-image { aspect-ratio: 16/10; position: relative; background: #ecfdf5; overflow: hidden; }
.coupon-card-v2-image img, .coupon-card-image img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.coupon-card-v2:hover img { transform: scale(1.05); }
.coupon-fallback {
  display: grid; place-items: center; height: 100%; min-height: 140px;
  font-size: 1.4rem; font-weight: 800; color: var(--emerald-dark);
  background: linear-gradient(135deg, #ecfdf5, #dbeafe);
}
.discount-pill, .discount-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--emerald); color: #fff; font-weight: 700;
  padding: .35rem .75rem; border-radius: 10px; font-size: .82rem;
}
.coupon-card-v2-body, .coupon-card-body { padding: 1.1rem; }
.coupon-card-v2-body h3, .coupon-card-body h3 { margin: 0 0 .75rem; font-size: 1rem; line-height: 1.35; }
.coupon-meta-row { display: flex; gap: .75rem; align-items: center; }
.coupon-meta-row p { margin: 0; font-weight: 600; font-size: .88rem; }
.coupon-meta-row small { color: var(--slate-500); }

/* Split / pricing / steps */
.split-premium { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.feature-list li { display: flex; gap: .75rem; margin-bottom: .75rem; color: rgba(255,255,255,0.85); }
.feature-list span { color: #6ee7b7; font-weight: 700; }
.pricing-stack { display: grid; gap: 1rem; }
.pricing-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.25rem;
}
.pricing-featured { background: rgba(16,185,129,0.15); border-color: rgba(110,231,183,0.3); }
.pricing-badge { font-size: .72rem; font-weight: 700; text-transform: uppercase; color: #6ee7b7; margin-bottom: .5rem; }
.steps-premium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.step-card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
}
.step-num { font-size: 2rem; font-weight: 800; color: var(--emerald-light); line-height: 1; margin-bottom: .75rem; }
.step-card h3 { margin: 0 0 .5rem; }

/* Testimonials */
.testimonial-grid-premium { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.testimonial-card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 1.5rem; margin: 0; box-shadow: var(--shadow);
}
.quote-mark { font-size: 3rem; line-height: 1; color: var(--emerald-light); font-weight: 800; }
.testimonial-card p { color: var(--slate-700); margin: 0 0 1rem; }
.testimonial-card footer strong { display: block; }
.testimonial-card footer span { color: var(--slate-500); font-size: .88rem; }

/* CTA */
.cta-premium {
  padding: 5rem 0; background: linear-gradient(135deg, #022c22, #065f46);
  color: #fff; text-align: center;
}
.cta-premium-inner h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); margin: 0 0 .75rem; letter-spacing: -0.02em; }
.cta-premium-inner p { color: rgba(255,255,255,0.75); margin: 0 0 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* Inner pages (keep compat) */
.page-hero { padding: 3rem 0 2rem; background: #fff; border-bottom: 1px solid var(--slate-200); }
.page-hero h1 { margin: 0; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
.business-grid, .carousel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.form-card label { display: block; margin-bottom: 1rem; font-weight: 600; font-size: .92rem; }
.form-card input, .form-card textarea, .form-card select, .search-bar input, .filter-bar input {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--slate-200);
  border-radius: 12px; font: inherit; margin-top: .35rem;
}
.form-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.alert, .alert-success, .alert-error { padding: .9rem 1rem; border-radius: 12px; margin-bottom: 1rem; }
.alert-success { background: #ecfdf5; color: #065f46; }
.alert-error, .alert.error { background: #fef2f2; color: #991b1b; }
.empty { text-align: center; padding: 3rem; color: var(--slate-500); border: 1px dashed var(--slate-200); border-radius: var(--radius); }
.business-banner { height: 280px; background: linear-gradient(135deg, #cbd5e1, #94a3b8); overflow: hidden; }
.business-banner img { width: 100%; height: 100%; object-fit: cover; }
.business-header { display: flex; gap: 1.25rem; align-items: end; margin-top: -3rem; position: relative; }
.avatar-lg { width: 96px; height: 96px; font-size: 1.4rem; border: 4px solid #fff; box-shadow: var(--shadow); }
.business-layout { display: grid; grid-template-columns: 1.5fr .8fr; gap: 2rem; margin-top: 2rem; }
.content-block { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: var(--shadow); }
.coupon-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.info-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.chip { padding: .45rem .9rem; border-radius: 999px; background: #fff; border: 1px solid var(--slate-200); font-size: .88rem; }
.chip.active { background: var(--emerald); color: #fff; border-color: var(--emerald); }
.search-bar, .filter-bar { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }

/* ═══ Homepage v2 — Stamp coupons & showcase ═══ */
.hero-v2 { padding: 4.5rem 0 5.5rem; }
.hero-bg-animated {
  animation: heroShift 18s ease-in-out infinite alternate;
}
@keyframes heroShift {
  0% { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(12deg) brightness(1.05); }
}
.hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .45;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-1 { width: 320px; height: 320px; background: #34d399; top: 10%; left: 5%; }
.hero-orb-2 { width: 260px; height: 260px; background: #14b8a6; bottom: 5%; right: 15%; animation-delay: -4s; }
.hero-orb-3 { width: 200px; height: 200px; background: #6ee7b7; top: 40%; right: 35%; animation-delay: -8s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}
.hero-stat-row {
  display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.75rem;
}
.hero-stat-pill {
  padding: .45rem .85rem; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  font-size: .82rem; color: rgba(255,255,255,.85);
}
.hero-stat-pill strong { color: #fff; margin-right: .25rem; }

/* Hero floating mini stamps */
.hero-stamp-stack {
  position: relative; width: min(380px, 100%); height: 420px; margin: 0 auto;
  perspective: 900px;
}
.hero-stamp-float {
  position: absolute; width: 280px;
  animation: stampBob 5s ease-in-out infinite;
  transition: transform .35s ease;
}
.hero-stamp-float-1 { top: 0; left: 50%; transform: translateX(-50%) rotate(-4deg); z-index: 3; animation-delay: 0s; }
.hero-stamp-float-2 { top: 110px; left: 0; transform: rotate(6deg); z-index: 2; animation-delay: -1.5s; opacity: .92; }
.hero-stamp-float-3 { top: 130px; right: 0; transform: rotate(-7deg); z-index: 1; animation-delay: -3s; opacity: .85; }
@keyframes stampBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
.hero-mini-stamp {
  background: #fffef8; border-radius: 14px; overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,.28), 0 0 0 1px rgba(0,0,0,.06);
  color: var(--slate-900);
}
.hero-mini-stamp-top {
  display: flex; align-items: center; gap: .55rem;
  padding: .65rem .85rem; background: linear-gradient(180deg, #fff, #f8fafc);
  font-size: .72rem; font-weight: 700; color: var(--slate-700);
}
.hero-mini-stamp-top img { width: 28px; height: 28px; border-radius: 8px; object-fit: cover; }
.hero-mini-stamp-cut {
  height: 8px; background:
    radial-gradient(circle at 8px 4px, transparent 4px, #e2e8f0 4px) 0 0 / 16px 8px repeat-x;
  border-top: 1px dashed #cbd5e1;
}
.hero-mini-stamp-off {
  padding: .85rem .85rem 0; font-size: 1.65rem; font-weight: 900;
  letter-spacing: -.03em; color: var(--emerald-dark);
  font-family: Georgia, 'Times New Roman', serif;
}
.hero-mini-stamp-title {
  padding: .25rem .85rem .85rem; font-size: .82rem; font-weight: 600; color: var(--slate-600);
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Stamp coupon cards */
.section-stamps { background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%); }
.section-stamps-alt { background: #fff; }
.stamp-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
}
.stamp-grid-compact { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.coupon-stamp {
  position: relative; perspective: 800px;
}
.coupon-stamp-link {
  position: absolute; inset: 0; z-index: 1;
}
.coupon-stamp-paper {
  position: relative; background: #fffef8;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 4px 6px rgba(15,23,42,.04), 0 20px 40px rgba(15,23,42,.08);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
  transform-style: preserve-3d;
}
.coupon-stamp:hover .coupon-stamp-paper {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 30px 60px rgba(15,23,42,.14);
}
.coupon-stamp-edge {
  position: absolute; left: 0; top: 0; bottom: 0; width: 10px;
  background: repeating-linear-gradient(
    180deg,
    var(--emerald) 0 6px,
    #059669 6px 12px
  );
}
.coupon-stamp-header {
  display: grid; grid-template-columns: auto 1fr auto; gap: .75rem; align-items: center;
  padding: 1rem 1rem 1rem 1.35rem;
  background: linear-gradient(180deg, #fff 0%, #fafaf5 100%);
}
.coupon-stamp-brand {
  width: 44px; height: 44px; border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, var(--emerald), #14b8a6);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .85rem;
  box-shadow: 0 4px 12px rgba(16,185,129,.3);
}
.coupon-stamp-brand img { width: 100%; height: 100%; object-fit: cover; }
.coupon-stamp-business { margin: 0; font-weight: 800; font-size: .88rem; color: var(--slate-900); }
.coupon-stamp-cat { margin: .1rem 0 0; font-size: .72rem; color: var(--slate-500); font-weight: 600; }
.coupon-stamp-badge {
  font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: .28rem .5rem; border-radius: 6px;
  background: var(--emerald-light); color: var(--emerald-dark);
  border: 1px solid #a7f3d0;
}
.coupon-stamp-perforation {
  height: 14px; margin: 0 1rem;
  background:
    radial-gradient(circle at 10px 7px, var(--slate-50) 5px, transparent 5px) 0 0 / 20px 14px repeat-x,
    linear-gradient(180deg, #f1f5f9, #e2e8f0);
  border-top: 2px dashed #cbd5e1;
  border-bottom: 2px dashed #cbd5e1;
}
.coupon-stamp-body { padding: 1.25rem 1.35rem 1rem 1.5rem; text-align: center; }
.coupon-stamp-value {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 2.75rem); font-weight: 900;
  letter-spacing: -.03em; line-height: 1;
  color: var(--emerald-dark);
  text-shadow: 1px 1px 0 rgba(255,255,255,.8);
}
.coupon-stamp-title {
  margin: .65rem 0 0; font-size: 1.05rem; font-weight: 700;
  color: var(--slate-800); line-height: 1.35;
}
.coupon-stamp-code-wrap {
  margin-top: 1rem; padding: .65rem 1rem;
  background: #f8fafc; border: 2px dashed #cbd5e1; border-radius: 12px;
}
.coupon-stamp-code-label {
  display: block; font-size: .65rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--slate-500); margin-bottom: .25rem;
}
.coupon-stamp-code {
  font-size: 1.15rem; font-weight: 800; letter-spacing: .12em;
  color: var(--slate-900); font-family: ui-monospace, monospace;
}
.coupon-stamp-exp {
  margin: .85rem 0 0; font-size: .78rem; font-weight: 600; color: var(--slate-500);
}
.coupon-stamp-foot {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .85rem 1.15rem 1.15rem 1.35rem;
  border-top: 1px solid #f1f5f9; background: #fafaf5;
  position: relative; z-index: 2;
}
.coupon-stamp-clip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .65rem 1.1rem; border: 0; border-radius: 12px;
  background: var(--emerald); color: #fff; font-weight: 800; font-size: .82rem;
  cursor: pointer; transition: .2s;
  box-shadow: 0 4px 14px rgba(16,185,129,.35);
}
.coupon-stamp-clip:hover { background: var(--emerald-dark); transform: scale(1.03); }
.coupon-stamp-clip.is-clipped { background: var(--slate-700); pointer-events: none; }
.coupon-stamp-view { font-size: .78rem; font-weight: 700; color: var(--emerald-dark); }

/* Clipped stamp ink */
.coupon-stamp-ink {
  position: absolute; inset: 0; display: grid; place-items: center;
  pointer-events: none; opacity: 0; z-index: 5;
}
.coupon-stamp-ink span {
  display: inline-block; padding: .5rem 1.25rem;
  border: 4px solid #dc2626; border-radius: 8px;
  color: #dc2626; font-weight: 900; font-size: 1.75rem;
  letter-spacing: .08em; text-transform: uppercase;
  font-family: Georgia, serif;
  transform: scale(2) rotate(-18deg); opacity: 0;
  mix-blend-mode: multiply;
}
.coupon-stamp.is-clipped .coupon-stamp-ink { opacity: 1; }
.coupon-stamp.is-clipped .coupon-stamp-ink span {
  animation: stampSlam .45s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes stampSlam {
  0% { transform: scale(2.5) rotate(-24deg); opacity: 0; }
  60% { transform: scale(.92) rotate(-14deg); opacity: 1; }
  100% { transform: scale(1) rotate(-12deg); opacity: .88; }
}
.coupon-stamp.is-clipped .coupon-stamp-paper {
  animation: paperPulse .4s ease;
}
@keyframes paperPulse {
  0%, 100% { transform: translateY(-8px) scale(1); }
  50% { transform: translateY(-8px) scale(.98); }
}

/* Business showcase carousel */
.section-showcase {
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 50%);
  overflow: hidden;
}
.showcase-track-wrap {
  margin: 0 -1rem; padding: .5rem 1rem 1.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.showcase-track-wrap::-webkit-scrollbar { display: none; }
.showcase-track {
  display: flex; gap: 1.25rem; width: max-content; padding-bottom: .5rem;
}
.biz-showcase {
  position: relative; flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--slate-200);
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.biz-showcase:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.biz-showcase-link { position: absolute; inset: 0; z-index: 2; }
.biz-showcase-banner {
  height: 120px; background: linear-gradient(135deg, #64748b, #334155);
  background-size: cover; background-position: center; position: relative;
}
.biz-showcase-ribbon {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  padding: .35rem .75rem; border-radius: 999px;
  font-size: .68rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
}
.biz-showcase-ribbon-featured { background: #fef3c7; color: #92400e; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.biz-showcase-ribbon-premium { background: #ede9fe; color: #5b21b6; }
.biz-showcase-ribbon-standard { background: rgba(255,255,255,.9); color: #475569; }
.biz-showcase-sponsored {
  position: absolute; top: 12px; right: 12px;
  padding: .3rem .6rem; border-radius: 999px;
  background: rgba(255,255,255,.92); font-size: .68rem; font-weight: 700; color: #9d174d;
}
.biz-showcase-body { padding: 0 1.25rem 1.25rem; margin-top: -32px; position: relative; }
.biz-showcase-logo-wrap { margin-bottom: .65rem; }
.biz-showcase-logo, .biz-showcase-logo-fallback {
  width: 64px; height: 64px; border-radius: 18px;
  border: 4px solid #fff; box-shadow: var(--shadow);
}
.biz-showcase-logo { object-fit: cover; }
.biz-showcase-logo-fallback {
  display: grid; place-items: center; font-weight: 800;
  background: linear-gradient(135deg, var(--emerald), #14b8a6); color: #fff;
}
.biz-showcase-name { margin: 0; font-size: 1.15rem; font-weight: 800; letter-spacing: -.02em; }
.biz-showcase-tagline { margin: .35rem 0 0; font-size: .88rem; color: var(--slate-500); line-height: 1.45; }
.biz-showcase-meta {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem;
  font-size: .78rem; font-weight: 600; color: var(--slate-500);
}
.biz-showcase-meta span {
  padding: .3rem .6rem; border-radius: 999px; background: var(--slate-50);
}
.biz-showcase-foot {
  display: flex; align-items: center; gap: 1rem; margin-top: 1rem;
  padding-top: 1rem; border-top: 1px solid var(--slate-100);
}
.biz-showcase-stat strong { display: block; font-size: 1rem; font-weight: 800; color: var(--slate-900); }
.biz-showcase-stat span { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--slate-400); }
.biz-showcase-cta {
  margin-left: auto; font-size: .85rem; font-weight: 800; color: var(--emerald-dark);
}

/* Footer */
.site-footer { background: var(--slate-900); color: rgba(255,255,255,0.75); margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding: 4rem 0; }
.footer-grid h4 { color: #fff; margin: 0 0 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .5rem; }
.footer-grid a:hover { color: #6ee7b7; }
.footer-tagline { max-width: 320px; margin-top: 1rem; font-size: .92rem; }
.logo-footer { color: #fff; font-weight: 800; font-size: 1.2rem; }
.logo-footer span { color: #6ee7b7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0 2rem; font-size: .88rem; }

@media (max-width: 960px) {
  .hero-premium-inner, .split-premium, .steps-premium, .split, .steps, .business-layout, .footer-grid { grid-template-columns: 1fr; }
  .nav-desktop { display: none; }
  .nav-toggle { display: grid; }
  .nav-mobile.is-open {
    display: grid;
  }
  .hero-visual { order: -1; }
  .hero-stamp-stack { height: 340px; margin-bottom: 1rem; }
  .hero-stamp-float { width: 240px; }
  .hero-stamp-float-2 { left: 5%; }
  .hero-stamp-float-3 { right: 5%; }
  .stamp-grid { grid-template-columns: 1fr; }
}
