
/* SEO Footer */
.seo-footer { background: var(--footer-bg, #030710); color: var(--footer-text, #5a6070); padding: 60px 0 32px; }
.seo-footer a { color: var(--footer-text, #5a6070); text-decoration: none; transition: color .15s; }
.seo-footer a:hover { color: #fff; }
.seo-footer hr { border-color: #111827; }
.seo-footer-brand { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -.8px; }
.seo-footer-brand span { color: #7c3aed; }
.seo-footer-heading { color: #fff; font-size: .78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }

/* Page styles */
:root {
  --accent: #2563eb;
  --accent-warm: #f59e0b;
  --text: #111827;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f9fafb;
  --border: #e5e7eb;
  --radius: 16px;
}
* { box-sizing: border-box; }
body { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); background: var(--bg); margin: 0; }

.hero { min-height: 88vh; display: flex; flex-direction: column; justify-content: center; padding: 120px 0 80px; background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #f5f3ff 100%); }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: #eff6ff; color: var(--accent); border: 1px solid #bfdbfe; border-radius: 100px; padding: 4px 14px; font-size: .8rem; font-weight: 500; margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; }
.hero h1 span { color: var(--accent); }
.hero p.lead { font-size: 1.15rem; color: var(--text-muted); max-width: 540px; line-height: 1.7; }
.btn-primary-custom { background: var(--accent); color: #fff; border: none; border-radius: 12px; padding: 14px 32px; font-size: 1rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: opacity .15s, transform .15s; }
.btn-primary-custom:hover { opacity: .9; transform: translateY(-1px); color: #fff; }
.btn-outline-custom { background: transparent; color: var(--text); border: 1.5px solid var(--border); border-radius: 12px; padding: 13px 28px; font-size: 1rem; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: border-color .15s; }
.btn-outline-custom:hover { border-color: var(--accent); color: var(--accent); }

.section-label { display: none; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; letter-spacing: -0.5px; }
.features { padding: 100px 0; background: var(--bg-soft); }
.feature-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; height: 100%; transition: box-shadow .2s, transform .2s; }
.feature-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-2px); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: #eff6ff; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.4rem; color: var(--accent); }
.feature-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.6; margin: 0; }

.usecases { padding: 100px 0; }
.use-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.use-icon { width: 44px; height: 44px; border-radius: 12px; background: #eff6ff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--accent); flex-shrink: 0; }
.use-card h5 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.use-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.5; margin: 0; }

.how-it-works { padding: 100px 0; background: var(--bg-soft); }
.step { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 40px; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; font-size: 1rem; }
.step h5 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.step p { color: var(--text-muted); font-size: .95rem; line-height: 1.6; margin: 0; }

.cta-section { padding: 100px 0; background: var(--accent); color: #fff; text-align: center; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -1px; }
.cta-section p { font-size: 1.1rem; opacity: .85; }
.btn-white { background: #fff; color: var(--accent); border: none; border-radius: 12px; padding: 14px 32px; font-size: 1rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { opacity: .9; color: var(--accent); }

.qr-display { background: #fff; border-radius: 20px; padding: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.12); display: inline-block; }
.qr-grid { display: grid; grid-template-columns: repeat(7, 24px); gap: 3px; }
.qr-cell { width: 24px; height: 24px; border-radius: 4px; }
.qr-black { background: #111827; }
.qr-white { background: #fff; }
@keyframes scanLine { 0% { top: 8%; } 100% { top: 88%; } }
.qr-scanner { position: relative; overflow: hidden; border-radius: 12px; }
.scan-line { position: absolute; left: 0; right: 0; height: 2px; background: rgba(37,99,235,.7); box-shadow: 0 0 8px rgba(37,99,235,.5); animation: scanLine 2s ease-in-out infinite alternate; }

#cookieBanner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--text); color: #fff; padding: 16px 24px; z-index: 9999; display: none; }
#cookieBanner.show { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
#cookieBanner p { margin: 0; font-size: .9rem; opacity: .85; flex: 1; }

@keyframes _fadeUp { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: none; } }
.anim { opacity: 0; transform: translateY(36px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.anim.in { opacity: 1; transform: none; }
.hero-badge { animation: _fadeUp .6s cubic-bezier(.22,1,.36,1) .10s both; }
.hero h1    { animation: _fadeUp .8s cubic-bezier(.22,1,.36,1) .22s both; }
.hero .lead { animation: _fadeUp .7s cubic-bezier(.22,1,.36,1) .38s both; }
