/* CliqOut public website — shared stylesheet.
   Mobile-first. System font stack on purpose (no external font request —
   see performance requirements: nothing to fetch before first paint). */

:root {
  --navy: #0B1B32;
  --navy-soft: rgba(11, 27, 50, 0.7);
  --orange: #FC600C;
  --orange-dark: #E55500;
  --bg: #F8F4EE;
  --card: #FFFDFC;
  --text: #0B1B32;
  --text-secondary: #6B7280;
  --border: rgba(11, 27, 50, 0.10);
  --border-dark: rgba(255, 255, 255, 0.14);
  --success: #10B981;
  --error: #DC2626;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: 1120px;
  --radius: 16px;
  --radius-sm: 10px;

  color-scheme: light;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* Focus visibility — never remove outlines outright, only restyle them */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2.5px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

section { padding: 64px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; color: var(--navy); }
h1 { font-size: clamp(32px, 8vw, 60px); line-height: 1.05; }
h2 { font-size: clamp(26px, 5vw, 38px); }
h3 { font-size: 19px; }
p { color: var(--text-secondary); font-size: 16px; line-height: 1.65; }
.lead { font-size: clamp(17px, 2.4vw, 19px); line-height: 1.6; }

.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(252, 96, 12, 0.28); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: rgba(11, 27, 50, 0.06); color: var(--navy); }
.btn-secondary:hover { background: rgba(11, 27, 50, 0.10); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.35); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline-navy:hover { background: rgba(11, 27, 50, 0.04); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* ── Header / nav ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top);
}
.site-header .container {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;
}
.logo-word {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1;
}
.logo-icon { display: block; margin: 0 1px; flex-shrink: 0; }
.logo-img { display: block; height: 30px; width: auto; }

.nav-desktop { display: none; align-items: center; gap: 28px; }
.nav-desktop a { font-size: 14.5px; font-weight: 600; color: var(--navy); }
.nav-desktop a:hover { color: var(--orange); }
.header-actions { display: none; align-items: center; gap: 12px; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .header-actions { display: flex; }
  .nav-toggle { display: none; }
}

.nav-toggle {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--navy);
}

.nav-mobile {
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 8px 20px 32px;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-mobile.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
body.nav-open { overflow: hidden; }
.nav-mobile a {
  display: block;
  padding: 16px 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.nav-mobile .btn { margin-top: 20px; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 64px;
}
@media (min-width: 768px) { .hero { padding: 88px 0 96px; } }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255, 255, 255, 0.72); max-width: 560px; }
.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-media img {
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ── Cards / grids ───────────────────────────────────── */
.grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.card-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(252, 96, 12, 0.10);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 14.5px; }

.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* ── Photo strip ─────────────────────────────────────── */
.photo-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.photo-strip img { scroll-snap-align: start; border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; }
@media (min-width: 768px) {
  .photo-strip { grid-auto-columns: 30%; }
}

/* ── Store badges ────────────────────────────────────── */
.store-row { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 48px; padding: 0 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff; font-weight: 600; font-size: 14px;
}
.hero .store-badge, section.dark .store-badge { }
section:not(.dark) .store-badge {
  background: var(--navy); border-color: var(--navy); color: #fff;
}

/* ── Phone mockup (how-it-works steps) ──────────────────*/
.phone-frame {
  display: inline-block;
  border-radius: 34px;
  padding: 10px;
  background: #0B1B32;
  box-shadow: 0 20px 44px rgba(11, 27, 50, 0.22);
}
.phone-frame img { border-radius: 26px; display: block; width: 220px; }
.step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-weight: 800; font-size: 15px;
  margin-top: 22px;
}

/* ── Testimonials ────────────────────────────────────── */
.stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-card { display: flex; flex-direction: column; }
.testimonial-quote { font-size: 14.5px; color: var(--text); flex: 1; line-height: 1.6; }
.testimonial-who { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 13.5px; color: var(--navy); }
.testimonial-meta { font-size: 12px; color: var(--text-secondary); }

/* ── Über uns / Founder ──────────────────────────────── */
.about-grid { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 800px) { .about-grid { grid-template-columns: 280px 1fr; gap: 48px; } }
.about-photo { border-radius: 20px; overflow: hidden; border: 3px solid rgba(252,96,12,0.35); }
.about-signature { font-weight: 700; color: #fff; margin-top: 18px; }
.about-signature span { color: rgba(255,255,255,0.55); font-weight: 500; }

/* ── Recap (dark photo + copy) ───────────────────────── */
.recap-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 800px) { .recap-grid { grid-template-columns: 280px 1fr; gap: 56px; } }
.recap-phone {
  width: 220px; height: 460px; margin: 0 auto;
  border-radius: 32px; border: 8px solid #111; background: #111;
  overflow: hidden; box-shadow: 0 24px 50px rgba(0,0,0,0.4);
}
@media (min-width: 800px) { .recap-phone { margin: 0; } }
.recap-phone-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.recap-thumbs { display: flex; gap: 12px; margin-top: 24px; }
.recap-thumb {
  width: 140px; height: 90px; object-fit: cover;
  border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,0.3);
  border: 3px solid var(--navy);
}

/* ── Event cards (this month) ────────────────────────── */
.event-card { overflow: hidden; padding: 0; }
.event-photo { position: relative; height: 170px; }
.event-photo img { width: 100%; height: 100%; object-fit: cover; }
.event-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.95); color: var(--navy);
  font-size: 11.5px; font-weight: 700; padding: 4px 11px; border-radius: 999px;
}
.event-body { padding: 20px; }
.event-when { font-size: 12.5px; font-weight: 700; color: var(--orange); margin-bottom: 6px; }
.event-card-soon {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px 24px; min-height: 260px;
  border: 1.5px dashed var(--border);
}

/* ── Forms ───────────────────────────────────────────── */
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 13.5px; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.field .hint { font-size: 12.5px; color: var(--text-secondary); margin-top: 4px; }
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font-size: 16px; /* >=16px prevents iOS auto-zoom on focus */
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--orange);
  outline: none;
}
.field.has-error input, .field.has-error textarea, .field.has-error select {
  border-color: var(--error);
}
.field-error {
  display: none;
  font-size: 12.5px; color: var(--error); margin-top: 6px; font-weight: 600;
}
.field.has-error .field-error { display: block; }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--orange); }
.checkbox-row label { font-size: 13.5px; color: var(--text-secondary); font-weight: 500; }
.checkbox-row a { color: var(--orange); font-weight: 700; }

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}
@media (min-width: 640px) { .form-card { padding: 36px; } }

.form-status {
  display: none;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14.5px; font-weight: 600;
  margin-bottom: 20px;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(16, 185, 129, 0.10); color: #047857; border: 1px solid rgba(16,185,129,0.25); }
.form-status.error { background: rgba(220, 38, 38, 0.08); color: var(--error); border: 1px solid rgba(220,38,38,0.25); }

/* ── Footer ──────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, 0.65); padding: 56px 0 32px; }
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 40px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 {
  color: #fff; font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 14.5px; padding: 6px 0; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  font-size: 13px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex; align-items: center; justify-content: center;
}

/* ── Simple content pages (legal etc.) ──────────────────*/
.prose { max-width: 760px; }
.prose h2 { margin-top: 40px; margin-bottom: 12px; font-size: 21px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text-secondary); font-size: 15.5px; margin-bottom: 12px; }
.prose ul { padding-left: 20px; margin-bottom: 12px; }
.prose strong { color: var(--text); }
.placeholder {
  background: rgba(252, 96, 12, 0.08);
  border: 1px dashed rgba(252, 96, 12, 0.4);
  border-radius: 8px;
  padding: 2px 8px;
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.95em;
}
.updated-note { color: var(--text-secondary); font-size: 13.5px; margin-bottom: 32px; }

.page-hero {
  background: var(--navy); color: #fff; padding: 48px 0 40px;
}
.page-hero h1 { color: #fff; font-size: clamp(28px, 5vw, 42px); }
.page-hero p { color: rgba(255,255,255,0.7); margin-top: 10px; max-width: 560px; }

/* ── FAQ / accordion (help page) ─────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  min-height: 56px; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; font-size: 15.5px; font-weight: 700; color: var(--navy); padding: 4px 0;
}
.faq-q .chev { transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 0 18px;
  font-size: 14.5px; color: var(--text-secondary); line-height: 1.6;
}
.faq-item.open .faq-a { display: block; }

/* ── Utilities ───────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.dark { background: var(--navy); color: #fff; }
.dark h2, .dark h3 { color: #fff; }
.dark p { color: rgba(255,255,255,0.65); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 8px;
  z-index: 200; font-weight: 700; transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }
