/* ============================================================
   4U Agency – Horeca Kassasysteem
   Vanilla CSS – no framework, no Tailwind
   Design system: Dark mode, Obsidian Pulse POS
   Fonts: Space Grotesk (headlines/labels), Plus Jakarta Sans (body)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties (Design Tokens) ───────────────── */
:root {
  /* Surface */
  --surface:                  #0f131c;
  --surface-dim:              #0f131c;
  --surface-bright:           #353942;
  --surface-container-lowest: #0a0e16;
  --surface-container-low:    #181c24;
  --surface-container:        #1c2028;
  --surface-container-high:   #262a33;
  --surface-container-highest:#31353e;
  --surface-variant:          #31353e;
  --surface-tint:             #4edea3;
  --background:               #0f131c;

  /* Text */
  --on-surface:               #dfe2ee;
  --on-surface-variant:       #bbcabf;
  --on-background:            #dfe2ee;
  --inverse-surface:          #dfe2ee;
  --inverse-on-surface:       #2c3039;

  /* Accents */
  --primary:                  #4edea3;
  --on-primary:               #003824;
  --primary-container:        #10b981;
  --on-primary-container:     #00422b;
  --primary-fixed:            #6ffbbe;
  --primary-fixed-dim:        #4edea3;
  --inverse-primary:          #006c49;

  --secondary:                #4cd7f6;
  --on-secondary:             #003640;
  --secondary-container:      #03b5d3;

  --tertiary:                 #ffb95f;
  --on-tertiary:              #472a00;
  --tertiary-container:       #e29100;

  --error:                    #ffb4ab;
  --on-error:                 #690005;
  --error-container:          #93000a;
  --on-error-container:       #ffdad6;

  --outline:                  #86948a;
  --outline-variant:          #3c4a42;

  /* Typography scale */
  --font-headline: 'Space Grotesk', sans-serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;
  --font-label:    'Space Grotesk', sans-serif;

  /* Spacing */
  --space-xs:   0.375rem;
  --space-sm:   0.75rem;
  --space-md:   1.25rem;
  --space-lg:   2rem;
  --space-xl:   3.5rem;
  --gutter:     1.5rem;
  --gutter-mob: 1rem;

  /* Radii */
  --radius-sm:  0.25rem;
  --radius:     0.5rem;
  --radius-md:  0.75rem;
  --radius-lg:  1rem;
  --radius-xl:  1.5rem;
  --radius-full:9999px;

  /* Brand flyer colors */
  --brand-bg:           #070a11;
  --brand-card:         #0d1424;
  --brand-emerald:      #10b981;
  --brand-emerald-light:#34d399;
  --brand-amber:        #f59e0b;
  --brand-cyan:         #06b6d4;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--background);
  color: var(--on-surface);
  font-family: var(--font-body);
  line-height: 1.5;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select, button { font: inherit; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* ── Scrollbar (hide, WebKit) ─────────────────────────────── */
::-webkit-scrollbar { display: none; }

/* ── Typography helpers ───────────────────────────────────── */
.font-headline  { font-family: var(--font-headline); }
.font-body      { font-family: var(--font-body); }
.font-label     { font-family: var(--font-label); }

.text-display-hero  { font-family: var(--font-headline); font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.14; letter-spacing: -0.03em; }
.text-headline-xl   { font-family: var(--font-headline); font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.text-headline-lg   { font-family: var(--font-headline); font-size: clamp(22px, 2.5vw, 28px); font-weight: 600; line-height: 1.29; letter-spacing: -0.01em; }
.text-headline-md   { font-family: var(--font-headline); font-size: 22px; font-weight: 600; line-height: 28px; }
.text-body-xl       { font-family: var(--font-body);     font-size: 18px; font-weight: 400; line-height: 28px; }
.text-body-md       { font-family: var(--font-body);     font-size: 15px; font-weight: 400; line-height: 24px; }
.text-body-sm       { font-family: var(--font-body);     font-size: 13px; font-weight: 400; line-height: 20px; }
.text-label-lg      { font-family: var(--font-label);    font-size: 14px; font-weight: 600; line-height: 20px; letter-spacing: 0.02em; }
.text-label-sm      { font-family: var(--font-label);    font-size: 11px; font-weight: 700; line-height: 16px; letter-spacing: 0.08em; }
.text-metric        { font-family: var(--font-headline); font-size: 32px; font-weight: 700; line-height: 36px; letter-spacing: -0.02em; }

/* ── Color utilities ──────────────────────────────────────── */
.text-primary          { color: var(--primary); }
.text-secondary        { color: var(--secondary); }
.text-tertiary         { color: var(--tertiary); }
.text-on-surface       { color: var(--on-surface); }
.text-on-surface-var   { color: var(--on-surface-variant); }
.text-outline          { color: var(--outline); }
.text-error            { color: var(--error); }

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
  padding-inline: var(--gutter-mob);
}

@media (min-width: 600px) {
  .container { padding-inline: var(--gutter); }
}

/* ── HEADER (mobile nav) ──────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 19, 28, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs);
  height: 64px;
  padding-inline: var(--gutter-mob);
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(78, 222, 163, 0.10);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding-inline: 12px;
  border-radius: var(--radius);
  background: var(--surface-container-high);
  color: var(--on-surface);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-call:hover { color: var(--primary); }

.header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(78, 222, 163, 0.3);
  color: var(--on-primary);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-headline);
  flex-shrink: 0;
}

/* ── BOTTOM NAV ───────────────────────────────────────────── */
.site-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 14, 22, 0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.bottom-nav__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 64px;
  padding-inline: 8px;
}

.bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  text-decoration: none;
  color: var(--on-surface-variant);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  border-radius: var(--radius);
  padding: 4px;
}

.bottom-nav__item:hover,
.bottom-nav__item.active {
  color: var(--primary);
}

.bottom-nav__item.active .bottom-nav__icon-wrap {
  background: rgba(78, 222, 163, 0.12);
}

.bottom-nav__icon-wrap {
  width: 36px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.nav-icon {
  font-size: 22px;
  line-height: 1;
}

/* ── Material Symbols polyfill ───────────────────────────── */
.material-icon {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

/* Fallback SVG icons (inline) are used when Material Symbols isn't loaded */

/* ── Main content wrapper ─────────────────────────────────── */
.page-main {
  padding-top: 64px;        /* header height */
  padding-bottom: 80px;     /* bottom nav height */
  min-height: 100dvh;
}

.contact-main {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  padding: 20px 16px 24px;
}

.page-main--flyer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  background: #070a11;
}

/* ── FLYER / Landing page ─────────────────────────────────── */
.flyer-canvas {
  width: 100%;
  max-width: 480px;
  min-height: 100dvh;
  margin-inline: auto;
  background: radial-gradient(circle at 50% 0%, #152238 0%, #070a11 60%, #030508 100%);
  position: relative;
  overflow: hidden;
  padding: 20px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 500px) {
  .flyer-canvas {
    border-left: 1px solid rgba(100, 116, 139, 0.2);
    border-right: 1px solid rgba(100, 116, 139, 0.2);
    border-radius: var(--radius-xl);
    margin-block: 16px;
    min-height: auto;
  }
}

@media print {
  body { background: #070a11; margin: 0; padding: 0; }
  .flyer-canvas {
    max-width: 100% !important;
    width: 148mm;
    height: 210mm;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
  }
  .page-main--flyer { padding: 0; }
}

/* Ambient glow blobs */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 1;
}
.glow-blob--teal   { background: rgba(20, 184, 166, 0.15); }
.glow-blob--emerald{ background: rgba(16, 185, 129, 0.10); }
.glow-blob--cyan   { background: rgba(6, 182, 212, 0.10); }

/* Top accent gradient line */
.flyer-top-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #34d399, #6ee7b7, #22d3ee);
  border-radius: var(--radius-full);
  margin-bottom: 4px;
  opacity: 0.9;
}

/* ── Flyer Header ─────────────────────────────────────────── */
.flyer-header {
  text-align: center;
  position: relative;
  z-index: 10;
}

.flyer-agency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(6, 20, 14, 0.5);
  color: #6ee7b7;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.flyer-agency-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse 2s infinite;
}

.flyer-title {
  font-family: var(--font-headline);
  font-size: clamp(20px, 5vw, 25px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.flyer-title__line1 { color: #fff; }
.flyer-title__line2 {
  background: linear-gradient(90deg, #6ee7b7, #a7f3d0, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.flyer-title__line3 { color: var(--brand-amber); }

.flyer-subtitle {
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 8px;
}

.flyer-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.flyer-tag {
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(71, 85, 105, 0.5);
  font-size: 10px;
  font-weight: 600;
  color: #cbd5e1;
}

.flyer-tag-dot { color: #34d399; font-weight: 700; }

/* ── Flyer Hero Image ─────────────────────────────────────── */
.flyer-hero-section {
  position: relative;
  z-index: 10;
}

.flyer-hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(71, 85, 105, 0.6);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  background: rgba(15, 23, 42, 0.6);
}

.flyer-hero-img-wrap:hover .flyer-hero-img { transform: scale(1.05); }

.flyer-hero-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

@media (min-width: 400px) { .flyer-hero-img { height: 210px; } }

.flyer-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #070a11 0%, rgba(7, 10, 17, 0.6) 40%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.flyer-hero-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22d3ee, transparent);
  opacity: 0.8;
  z-index: 2;
}

/* Metric pills grid */
.flyer-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.glass-pill {
  background: rgba(13, 20, 36, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.glass-pill__icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.glass-pill__icon--emerald { background: rgba(16, 185, 129, 0.20); }
.glass-pill__icon--cyan    { background: rgba(6, 182, 212, 0.20); }
.glass-pill__icon--teal    { background: rgba(20, 184, 166, 0.20); }
.glass-pill__icon--amber   { background: rgba(245, 158, 11, 0.20); }

.glass-pill__label {
  font-weight: 700;
  font-size: 10.5px;
  color: #f1f5f9;
  display: block;
  line-height: 1.3;
}

.glass-pill__sub {
  font-size: 9.5px;
  color: #94a3b8;
  display: block;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Flyer Pricing Card ───────────────────────────────────── */
.flyer-price-section { position: relative; z-index: 10; }

.glass-card {
  background: linear-gradient(135deg, rgba(20, 30, 52, 0.7) 0%, rgba(9, 14, 26, 0.85) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.price-card {
  border-radius: var(--radius-lg);
  padding: 12px;
  border: 2px solid rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 35px -5px rgba(16, 185, 129, 0.35);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(6, 20, 14, 0.20) 50%, rgba(15, 23, 42, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.price-card__bg-blob {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.10);
  filter: blur(20px);
  pointer-events: none;
}

.price-card__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.price-card__badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  background: var(--brand-emerald);
  color: #0d1a10;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.price-card__amount {
  font-family: var(--font-headline);
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #a7f3d0 50%, #34d399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.price-card__sub {
  font-size: 10px;
  color: var(--brand-emerald-light);
  font-weight: 500;
  margin-top: 2px;
}

.price-card__checklist {
  border-left: 1px solid rgba(71, 85, 105, 0.7);
  padding-left: 12px;
}

.price-card__checklist-label {
  font-size: 9px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.price-card__checklist-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 8px;
}

.price-card__check-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #6ee7b7;
}

.price-card__check-mark { font-weight: 900; color: #34d399; font-size: 12px; }

/* ── Flyer Features Section ───────────────────────────────── */
.flyer-features-section { z-index: 10; position: relative; }

.flyer-features-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  padding-inline: 4px;
}

.flyer-features-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.flyer-features-title__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
}

.flyer-features-sub {
  font-size: 9px;
  color: var(--brand-emerald-light);
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(30, 41, 59, 0.8);
  font-size: 10.5px;
  font-weight: 500;
  color: #e2e8f0;
  line-height: 1.3;
}

.feature-item__emoji { font-size: 13px; flex-shrink: 0; }

.feature-item--accent {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(6, 20, 14, 0.4) 100%);
  border-color: rgba(16, 185, 129, 0.3);
  font-weight: 600;
  color: #a7f3d0;
}

/* ── Flyer Footer ─────────────────────────────────────────── */
.flyer-footer {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(30, 41, 59, 0.8);
  text-align: center;
  position: relative;
  z-index: 10;
}

.flyer-footer__tagline {
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.btn-cta {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #10b981, #0d9488, #10b981);
  background-size: 200% 100%;
  color: #0d1a10;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 24px -4px rgba(16, 185, 129, 0.35);
  transition: brightness 0.2s, transform 0.1s;
}

.btn-cta:hover    { filter: brightness(1.1); }
.btn-cta:active   { transform: scale(0.99); }

.btn-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.flyer-footer__demo-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 10px;
  color: #64748b;
}

.flyer-footer__demo-note__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-inline: var(--gutter-mob);
  padding-bottom: 16px;
}

@media (min-width: 600px) {
  .contact-main { padding-inline: var(--gutter); }
}

/* Hero card */
.contact-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-container-low);
  padding: var(--space-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.contact-hero__blob--top {
  top: -64px; right: -64px;
  width: 192px; height: 192px;
  background: rgba(78, 222, 163, 0.10);
}

.contact-hero__blob--bottom {
  bottom: -80px; left: -48px;
  width: 192px; height: 192px;
  background: rgba(76, 215, 246, 0.10);
}

.contact-hero__content { position: relative; z-index: 2; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(78, 222, 163, 0.15);
  margin-bottom: 8px;
}

.live-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

.live-badge__text {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
}

.contact-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--on-surface);
  margin-bottom: 8px;
}

.contact-hero p {
  font-size: 14px;
  color: var(--on-surface-variant);
  line-height: 1.6;
}

/* Package summary bar */
.pkg-bar {
  margin-top: var(--space-sm);
  border-radius: var(--radius);
  background: var(--surface-container-high);
  padding: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.pkg-bar__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(78, 222, 163, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 22px;
}

.pkg-bar__body { flex: 1; min-width: 0; }

.pkg-bar__label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
  display: block;
}

.pkg-bar__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--on-surface);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pkg-bar__price {
  text-align: right;
  flex-shrink: 0;
}

.pkg-bar__amount {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.pkg-bar__period {
  display: block;
  font-size: 10px;
  color: var(--on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Banner image */
.contact-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 144px;
  background: var(--surface-container);
}

.contact-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--surface) 0%, rgba(15,19,28,0.6) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.contact-banner__caption {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--on-surface);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-label);
  letter-spacing: 0.06em;
}

/* ── FORM ─────────────────────────────────────────────────── */
.demo-form {
  background: var(--surface-container);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-field { display: flex; flex-direction: column; }

.form-label {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--on-surface);
  margin-bottom: 6px;
}

.form-label__required { color: var(--primary); margin-left: 2px; }
.form-label__opt { color: var(--outline); font-size: 12px; font-weight: 400; margin-left: 4px; }

.form-input-wrap { position: relative; }

.form-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--outline);
  font-size: 18px;
  pointer-events: none;
  line-height: 1;
}

.form-input {
  width: 100%;
  height: 48px;
  padding: 0 12px 0 42px;
  border-radius: var(--radius);
  background: var(--surface-container-lowest);
  border: 1px solid var(--outline-variant);
  color: var(--on-surface);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-input::placeholder { color: var(--outline); }

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(78, 222, 163, 0.20);
}

.form-input--error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(255, 180, 171, 0.15);
}

.form-textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--surface-container-lowest);
  border: 1px solid var(--outline-variant);
  color: var(--on-surface);
  font-size: 15px;
  resize: none;
  min-height: 80px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-textarea::placeholder { color: var(--outline); }

.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(78, 222, 163, 0.20);
}

.form-error-msg {
  margin-top: 4px;
  font-size: 12px;
  color: var(--error);
  display: none;
}

.form-field.has-error .form-error-msg { display: block; }
.form-field.has-error .form-input,
.form-field.has-error .form-textarea {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(255, 180, 171, 0.15);
}

/* Chip grids (venue, count) */
.chip-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.chip-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }

.venue-chip, .count-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--surface-container-lowest);
  border: 2px solid transparent;
  color: var(--on-surface-variant);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.venue-chip:hover, .count-chip:hover {
  background: var(--surface-container-high);
  color: var(--on-surface);
}

.venue-chip.active, .count-chip.active {
  background: var(--surface-container-high);
  color: var(--primary);
  border-color: rgba(78, 222, 163, 0.3);
}

.chip-icon { font-size: 16px; }

.venue-chip--full { grid-column: 1 / -1; }

/* Demo method radio options */
.demo-options { display: flex; flex-direction: column; gap: 8px; }

.demo-option-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--surface-container-lowest);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.demo-option-label:has(input:checked),
.demo-option-label.selected {
  background: var(--surface-container-high);
  border-color: rgba(78, 222, 163, 0.3);
}

.demo-option-label__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-option-label__icon {
  font-size: 20px;
  line-height: 1;
}

.demo-option-label__icon--primary  { color: var(--primary); }
.demo-option-label__icon--secondary{ color: var(--secondary); }
.demo-option-label__icon--tertiary { color: var(--tertiary); }

.demo-option-label__name {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface);
  letter-spacing: 0.02em;
}

.demo-option-label__desc {
  font-size: 12px;
  color: var(--on-surface-variant);
}

/* Checkbox */
.checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  cursor: pointer;
  user-select: none;
}

.checkbox-input {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--outline-variant);
  background: var(--surface-container-lowest);
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label {
  font-size: 13px;
  color: var(--on-surface-variant);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Honeypot - visually hidden but accessible */
.honeypot-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
  aria-hidden: true;
}

/* Submit button */
.btn-submit {
  width: 100%;
  height: 56px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 24px rgba(78, 222, 163, 0.35);
  transition: transform 0.1s, box-shadow 0.2s, opacity 0.2s;
  border: none;
  cursor: pointer;
}

.btn-submit:hover   { box-shadow: 0 0 32px rgba(78, 222, 163, 0.5); }
.btn-submit:active  { transform: scale(0.98); }
.btn-submit:disabled{ opacity: 0.6; cursor: not-allowed; }

@keyframes spin { 100% { transform: rotate(360deg); } }
.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 56, 36, 0.2);
  border-top-color: var(--on-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

/* Form alert messages */
.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.form-alert.visible { display: block; }

.form-alert--success {
  background: rgba(78, 222, 163, 0.12);
  border: 1px solid rgba(78, 222, 163, 0.30);
  color: var(--primary);
}

.form-alert--error {
  background: rgba(255, 180, 171, 0.10);
  border: 1px solid rgba(255, 180, 171, 0.25);
  color: var(--error);
}

/* Direct call section */
.direct-call-section {
  border-radius: var(--radius-lg);
  background: var(--surface-container-high);
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.btn-call-full {
  width: 100%;
  height: 48px;
  border-radius: var(--radius);
  background: var(--surface-container-lowest);
  color: var(--on-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 700;
}

.btn-call-full:hover { color: var(--primary); }

/* Trust badges row */
.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding-bottom: 8px;
}

.trust-badge {
  border-radius: var(--radius);
  background: var(--surface-container-lowest);
  padding: 10px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-badge__icon { font-size: 18px; line-height: 1; }
.trust-badge__icon--primary   { color: var(--primary); }
.trust-badge__icon--secondary { color: var(--secondary); }
.trust-badge__icon--tertiary  { color: var(--tertiary); }

.trust-badge__title {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--on-surface);
  line-height: 1.2;
}

.trust-badge__sub {
  font-size: 10px;
  color: var(--on-surface-variant);
  line-height: 1.2;
}

/* ── SUCCESS MODAL ────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter-mob);
  background: rgba(10, 14, 22, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  background: var(--surface-container-high);
  padding: var(--space-md);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transform: scale(0.95);
  transition: transform 0.3s;
}

.modal-overlay.visible .modal-card { transform: scale(1); }

.modal-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(78, 222, 163, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 30px;
}

.modal-title {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 600;
  color: var(--on-surface);
}

.modal-body {
  font-size: 13px;
  color: var(--on-surface-variant);
  line-height: 1.6;
}

.btn-modal-close {
  width: 100%;
  height: 44px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-modal-close:hover { opacity: 0.9; }

/* ── Utility: visually hidden ─────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* ── Focus styles for accessibility ──────────────────────── */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
