@import url('https://fonts.googleapis.com/css2?family=poppins:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #0B1021;
  --navy-light: #131B2F;
  --amber: #8745E0;
  --amber-light: #9B5DE5;
  --amber-pale: #F3E8FF;
  --cream: #F8FAFC;
  --sage: #E8F4F0;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --white: #FFFFFF;
  --green: #22C55E;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(15,31,61,0.10);
  --shadow-lg: 0 12px 48px rgba(15,31,61,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'poppins', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'poppins', sans-serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 16, 33, 0.08);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
  transition: all .3s ease;
}
nav.scrolled { 
  height: 76px;
  box-shadow: 0 8px 30px rgba(11, 16, 33, 0.08); 
  background: rgba(255, 255, 255, 0.98);
}

.nav-logo {
  display: flex; align-items: center; gap: 8px;
}
.nav-logo img {
  height: 85px !important;
  width: auto;
  transition: height 0.3s ease;
}
nav.scrolled .nav-logo img {
  height: 55px !important;
}

.nav-links { display: flex; gap: 2.25rem; align-items: center; }
.nav-links a {
  font-size: .95rem; font-weight: 600; color: var(--slate);
  transition: color .2s, transform .2s;
}
.nav-links a:hover { color: var(--amber); transform: translateY(-1px); }

.nav-cta {
  background: var(--amber); color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px;
  font-weight: 700 !important; font-size: .9rem !important;
  transition: background .2s, transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { 
  background: var(--amber-light); 
  transform: translateY(-2px) !important; 
  box-shadow: 0 6px 20px rgba(135, 69, 224, 0.35); 
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: .3s; }

.mobile-menu {
  display: none;
  position: fixed; top: 96px; left: 0; right: 0; z-index: 99;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 16, 33, 0.08);
  padding: 1.5rem 5%;
  flex-direction: column; gap: 1rem;
  box-shadow: 0 10px 40px rgba(11, 16, 33, 0.08);
  transition: top 0.3s ease;
}
nav.scrolled ~ .mobile-menu {
  top: 76px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.05rem; font-weight: 600; color: var(--slate); padding: .6rem 0; border-bottom: 1px solid rgba(11, 16, 33, 0.06); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta { border-bottom: none; text-align: center; padding: 14px 22px; margin-top: .5rem; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  padding: 100px 5% 60px;
  position: relative; overflow: hidden;
}

.hero-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(245,166,35,0.12) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.3);
  color: var(--amber); padding: 6px 16px; border-radius: 50px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge span { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-title .accent { color: var(--amber); }

.hero-sub {
  font-size: 1.1rem; color: var(--slate-light);
  max-width: 480px; margin-bottom: 2.5rem; font-weight: 400;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--amber); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: .96rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
  cursor: pointer; border: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,0.45); }

.btn-ghost {
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 500; font-size: .96rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color .2s, background .2s;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.06); }

.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item { }
.stat-num { font-family: 'poppins', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--amber); }
.stat-label { font-size: .8rem; color: var(--slate-light); margin-top: 2px; }

/* ── STAMP CARD VISUAL ── */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.stamp-card-wrapper {
  position: relative;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.stamp-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  width: 340px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative; overflow: hidden;
}

.stamp-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
}

.card-brand {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.card-brand-name { font-family: 'poppins', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--navy); }
.card-logo { width: 38px; height: 38px; background: var(--amber); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }

.card-tagline { font-size: .78rem; color: var(--slate); margin-bottom: 1.5rem; }

.stamp-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 10px; margin-bottom: 1.5rem;
}
.stamp {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed #DDE3EF;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  background: #F7F9FD;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  transform: scale(0.7); opacity: 0.3;
}
.stamp.filled {
  background: var(--amber-pale);
  border: 2px solid var(--amber);
  transform: scale(1); opacity: 1;
  animation: stampIn .5s cubic-bezier(.34,1.56,.64,1) forwards;
}
.stamp.reward {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  border: none;
  transform: scale(1.08); opacity: 1;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(245,166,35,0.4);
}

@keyframes stampIn {
  0% { transform: scale(1.4) rotate(-15deg); opacity: 0.6; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.card-progress-bar {
  background: #EEF1F7; border-radius: 50px; height: 6px; overflow: hidden; margin-bottom: .75rem;
}
.card-progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--amber), var(--amber-light));
  border-radius: 50px; width: 0;
  transition: width 2s ease;
}

.card-footer { display: flex; justify-content: space-between; align-items: center; }
.card-stamps-txt { font-size: .78rem; color: var(--slate); }
.card-stamps-txt strong { color: var(--navy); font-weight: 700; }
.card-reward-pill {
  background: var(--sage); color: #166534;
  font-size: .72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
}

.floating-notif {
  position: absolute; right: -30px; top: 30px;
  background: var(--white); border-radius: 14px;
  padding: .75rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 10px;
  font-size: .8rem; white-space: nowrap;
  animation: slideInRight 1s 2s both;
}
.notif-icon { font-size: 1.4rem; }
.notif-text strong { display: block; color: var(--navy); font-weight: 700; }
.notif-text span { color: var(--slate); }

.floating-scan {
  position: absolute; left: -40px; bottom: 40px;
  background: var(--navy); color: var(--white);
  border-radius: 14px; padding: .75rem 1rem;
  font-size: .8rem; white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: slideInLeft 1s 2.5s both;
}
.floating-scan .scan-icon { font-size: 1.3rem; }

@keyframes slideInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
@keyframes slideInLeft { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }

/* ── SECTIONS COMMON ── */
.section { padding: 100px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: .75rem; display: block;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--navy);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--slate);
  max-width: 560px;
}
.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── HOW IT WORKS ── */
#how-it-works { background: var(--white); }

.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 52px; left: calc(16.67% + 24px); right: calc(16.67% + 24px);
  height: 2px; background: linear-gradient(90deg, var(--amber), var(--amber-light));
  z-index: 0;
}

.step-card {
  text-align: center; padding: 2.5rem 2rem;
  border-radius: var(--radius); background: var(--cream);
  position: relative; z-index: 1;
  transition: transform .3s, box-shadow .3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.step-num {
  width: 56px; height: 56px;
  background: var(--navy); color: var(--amber);
  border-radius: 50%;
  font-family: 'poppins', sans-serif; font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--cream);
  box-shadow: 0 0 0 2px var(--navy);
}
.step-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.step-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; color: var(--navy); }
.step-card p { font-size: .9rem; color: var(--slate); line-height: 1.65; }

/* ── WHY LOVE IT ── */
#why-love-it { background: var(--cream); }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid rgba(15,31,61,0.07);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--amber); }
.feature-card.large { grid-column: span 2; }

.feature-icon {
  width: 52px; height: 52px;
  background: var(--amber-pale); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p { font-size: .88rem; color: var(--slate); line-height: 1.65; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--navy); }
#testimonials .section-title { color: var(--white); }
#testimonials .section-sub { color: var(--slate-light); }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 2rem;
  transition: background .3s, transform .3s;
}
.testi-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }

.testi-stars { color: var(--amber); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text { font-size: .92rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--amber); display: flex; align-items: center; justify-content: center;
  font-family: 'poppins', sans-serif; font-weight: 800; color: var(--navy);
  font-size: 1rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--white); font-size: .9rem; }
.testi-biz { font-size: .78rem; color: var(--slate-light); }

/* ── PRICING ── */
#pricing { background: var(--cream); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem; border: 1.5px solid rgba(15,31,61,0.08);
  position: relative; transition: transform .3s, box-shadow .3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--navy); border-color: var(--navy);
  transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--white);
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px;
}
.pricing-name { font-family: 'poppins', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: .5rem; }
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-desc { font-size: .85rem; color: var(--slate); margin-bottom: 1.75rem; }
.pricing-card.featured .pricing-desc { color: var(--slate-light); }
.pricing-price { margin-bottom: 2rem; }
.price-amount { font-family: 'poppins', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--navy); }
.pricing-card.featured .price-amount { color: var(--amber); }
.price-period { font-size: .85rem; color: var(--slate); }
.pricing-card.featured .price-period { color: var(--slate-light); }
.price-note { font-size: .78rem; color: var(--slate); margin-top: .25rem; }
.pricing-card.featured .price-note { color: var(--slate-light); }

.pricing-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--slate); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.75); }
.pricing-features li .check { color: var(--green); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.btn-pricing {
  width: 100%; padding: 13px; border-radius: 50px;
  font-weight: 700; font-size: .92rem; text-align: center;
  cursor: pointer; border: none; transition: .2s; display: block;
}
.btn-pricing-outline { background: transparent; border: 1.5px solid rgba(15,31,61,0.2); color: var(--navy); }
.btn-pricing-outline:hover { background: var(--cream); }
.btn-pricing-solid { background: var(--amber); color: var(--white); }
.btn-pricing-solid:hover { background: var(--amber-light); }
.btn-pricing-ghost { background: rgba(255,255,255,0.1); color: var(--white); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-pricing-ghost:hover { background: rgba(255,255,255,0.18); }

/* ── FAQ ── */
#faq { background: var(--white); }

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  border: 1.5px solid rgba(15,31,61,0.1); border-radius: var(--radius-sm);
  overflow: hidden; background: var(--cream);
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--amber); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem;
  background: none; border: none; cursor: pointer;
  text-align: left; font-family: 'poppins', sans-serif; font-size: .98rem; font-weight: 700; color: var(--navy);
  gap: 1rem;
}
.faq-q .faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%; background: var(--amber-pale);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, background .3s;
  font-size: .85rem; color: var(--amber);
}
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); background: var(--amber); color: var(--navy); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; font-size: .9rem; color: var(--slate); line-height: 1.7; }

/* ── DEMO / CTA ── */
#demo {
  background: var(--navy); position: relative; overflow: hidden;
}
#demo::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(245,166,35,0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.demo-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.demo-inner .section-title { color: var(--white); margin-bottom: 1rem; }
.demo-inner .section-sub { color: var(--slate-light); max-width: 520px; margin: 0 auto 2.5rem; }

.demo-form {
  display: flex; gap: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 50px;
  padding: 6px 6px 6px 1.5rem;
  max-width: 500px; margin: 0 auto 1.5rem;
}
.demo-form input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--white); font-size: .96rem; font-family: 'Inter', sans-serif;
}
.demo-form input::placeholder { color: rgba(255,255,255,0.35); }
.demo-form button {
  background: var(--amber); color: var(--white);
  border: none; border-radius: 50px;
  padding: 12px 28px; font-weight: 700; font-size: .92rem;
  cursor: pointer; white-space: nowrap;
  transition: background .2s, transform .2s;
}
.demo-form button:hover { background: var(--amber-light); transform: translateY(-1px); }

.demo-note { font-size: .8rem; color: var(--slate-light); }

/* ── FOOTER ── */
footer {
  background: #0A1828; color: rgba(255,255,255,0.6);
  padding: 60px 5% 30px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand { }
.footer-logo {
  font-family: 'poppins', sans-serif; font-size: 1.4rem; font-weight: 800;
  color: var(--white); margin-bottom: .75rem;
}
.footer-logo .accent { color: var(--amber); }
.footer-tagline { font-size: .85rem; line-height: 1.65; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: .75rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background .2s;
  cursor: pointer;
}
.social-btn:hover { background: rgba(245,166,35,0.25); }

.footer-col h4 { font-family: 'poppins', sans-serif; color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--amber); }

/* ── INNER PAGES ── */
.page-hero {
  background: var(--navy); padding: 140px 5% 80px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .75rem; }
.page-hero p { color: var(--slate-light); font-size: 1rem; }

.page-content {
  max-width: 780px; margin: 0 auto;
  padding: 80px 5%;
}
.page-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 2rem 0 .75rem; }
.page-content p { color: var(--slate); font-size: .95rem; line-height: 1.8; margin-bottom: 1rem; }
.page-content ul { padding-left: 1.5rem; color: var(--slate); font-size: .95rem; line-height: 1.8; margin-bottom: 1rem; }
.page-content ul li { margin-bottom: .4rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: 900px; margin: 0 auto; padding: 80px 5%; }
.contact-info h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info p { color: var(--slate); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1rem; align-items: flex-start; }
.contact-item-icon { width: 42px; height: 42px; background: var(--amber-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: .85rem; color: var(--navy); }
.contact-item-text span { font-size: .85rem; color: var(--slate); }

.contact-form-card { background: var(--white); border-radius: var(--radius); padding: 2rem; border: 1.5px solid rgba(15,31,61,0.08); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid rgba(15,31,61,0.12); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--navy);
  background: var(--cream); outline: none;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--amber); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  .floating-notif { right: 0; }
  .floating-scan { left: 0; }
  .steps-grid, .features-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .feature-card.large { grid-column: span 1; }
  .testi-grid, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stamp-card { width: 300px; }
  .floating-notif, .floating-scan { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .demo-form { flex-direction: column; border-radius: var(--radius-sm); padding: 1rem; }
  .demo-form button { border-radius: var(--radius-sm); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
