/* ════════════════════════════════════════════════════════════════════
   Coow Static Site — Shared Stylesheet
   Palette + Komponenten aus Homepage V2 (coow_colors.dart synced)
   ══════════════════════════════════════════════════════════════════════ */

:root {
  /* Brand palette — single source of truth */
  --bg: #FAF5EA;          /* brandCream */
  --bg-deep: #F5EFE3;     /* brandCreamDeep */
  --surface: #FFFFFF;
  --ink: #2A2318;
  --ink-soft: #6B5F4D;
  --ink-mute: #9A8E75;
  --ink-muted: #8B7E6A;
  --clay: #2C5F8A;        /* primary navy */
  --clay-soft: #5B89B5;
  --clay-deep: #1A2F47;
  --warm: #B89968;        /* tan/gold accent */
  --moss: #6B7F4A;
  --moss-soft: #A8B88A;
  --ochre: #E09520;
  --ochre-soft: #F0B840;
  --terra: #D93025;
  --terra-soft: #F28B82;
  --slate: #4A6B7F;
  --rust: #C94A30;
  --honey: #C99B5A;
  --sand: #F5E8DC;
  --border: #E8DDC8;
  --border-subtle: #F0E8D6;
  --cream: #FAF5EA;
  --dark: #1A130C;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button { font-family: inherit; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ──────────────────────────────────────────────────────────
   ANIMATIONS
   ────────────────────────────────────────────────────────── */
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-24px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-20px,18px)} }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.05);opacity:0.92} }
@keyframes shine { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ──────────────────────────────────────────────────────────
   NAV
   ────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 16px; z-index: 30;
  max-width: 1240px;
  margin: 16px auto 0;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-radius: 999px;
  padding: 8px 10px 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 32px -8px rgba(42,35,26,0.08), inset 0 0 0 1px rgba(255,255,255,0.5);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-brand img {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  padding: 2px;
}
.nav-links {
  display: flex; gap: 4px;
  font-size: 14px;
  font-weight: 500;
}
.nav-link {
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  color: var(--ink-soft);
}
.nav-link:hover { background: rgba(42,35,26,0.06); color: var(--ink); }
.nav-link.active { color: var(--ink); background: rgba(42,35,26,0.05); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-lang-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(42,35,26,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s;
}
.nav-lang-btn:hover { background: rgba(42,35,26,0.12); }
.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(42,35,26,0.25); }
.nav-mobile-toggle { display: none; }

@media (max-width: 820px) {
  .nav { margin: 12px 12px 0; padding: 8px 8px 8px 16px; }
  .nav-links { display: none; }
  .nav-brand { font-size: 24px; }
  .nav-cta { display: none; }
  .nav-mobile-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(42,35,26,0.06);
  }
}

/* ──────────────────────────────────────────────────────────
   PAGE HEADER (Hero for subpages)
   ────────────────────────────────────────────────────────── */
.page-header {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  position: relative;
  overflow: visible;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 40px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--clay-soft);
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
.page-header-inner { position: relative; z-index: 1; max-width: 880px; }
.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  white-space: nowrap;
  flex-wrap: nowrap;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
.eyebrow > * { white-space: nowrap; display: inline-flex; align-items: center; }
.eyebrow span {
  display: inline-block;
  width: 24px; height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.page-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin: 12px 0 24px;
  color: var(--ink);
}
.page-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--clay) 0%, var(--clay-soft) 50%, var(--clay) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s linear infinite;
}
.page-lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────
   PAGE SECTIONS
   ────────────────────────────────────────────────────────── */
.page-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 32px;
  position: relative;
}
.page-section.narrow { max-width: 820px; }
.page-section h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 16px 0 32px;
  max-width: 720px;
}
.page-section h2 em { font-style: italic; color: var(--clay); }

/* ──────────────────────────────────────────────────────────
   CARDS
   ────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -16px rgba(42,35,26,0.12); }
.card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--ink);
}
.card p, .card li {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.card ul, .card ol { padding-left: 1.2em; margin: 0 0 8px; }
.card a {
  color: var(--clay);
  text-decoration: underline;
  text-decoration-color: rgba(44,95,138,0.4);
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--clay-soft), var(--clay));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--cream);
  font-size: 22px;
}
.card-icon-warm { background: linear-gradient(135deg, var(--ochre-soft), var(--ochre)); }
.card-icon-moss { background: linear-gradient(135deg, var(--moss-soft), var(--moss)); }
.card-icon-honey { background: linear-gradient(135deg, var(--honey), var(--warm)); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────
   STEPS
   ────────────────────────────────────────────────────────── */
.step-list { display: flex; flex-direction: column; gap: 16px; }
.step-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
}
.step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--clay);
  font-style: italic;
  font-weight: 400;
}
.step-row h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 8px;
  font-weight: 400;
  color: var(--ink);
}
.step-row p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  white-space: pre-line;
}
@media (max-width: 600px) {
  .step-row { grid-template-columns: 1fr; padding: 22px; }
  .step-num { font-size: 44px; }
}

/* ──────────────────────────────────────────────────────────
   FAQ
   ────────────────────────────────────────────────────────── */
.faq-cat {
  background: var(--surface);
  border-radius: 24px;
  padding: 24px 32px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.faq-cat-head {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 4px;
}
.faq-cat h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 8px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  line-height: 1.3;
  margin: 0;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  color: var(--ink);
}
.faq-q::after {
  content: '+';
  font-family: 'Geist', sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--clay);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.3s ease;
  white-space: pre-line;
}
.faq-item.open .faq-a { max-height: 2000px; margin-top: 12px; }

/* ──────────────────────────────────────────────────────────
   PRICING
   ────────────────────────────────────────────────────────── */
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--clay); border-width: 2px; }
.price-card .badge {
  position: absolute; top: -11px; right: 22px;
  background: var(--clay);
  color: var(--cream);
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.price-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  margin: 0;
  font-weight: 400;
  color: var(--ink);
}
.price-card .level {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.price-card .price-val {
  font-family: 'Instrument Serif', serif;
  font-size: 46px;
  font-weight: 400;
  margin: 16px 0 4px;
  line-height: 1;
  color: var(--ink);
}
.price-card .period { font-size: 12px; color: var(--ink-mute); margin-bottom: 20px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 22px; }
.price-card ul li {
  padding: 9px 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.price-card ul li::before {
  content: '✓';
  color: var(--clay);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card .price-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  background: transparent;
  border: 1.5px solid var(--clay);
  color: var(--clay);
  padding: 12px 20px;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  transition: all 0.2s;
}
.price-card .price-cta:hover {
  background: var(--clay);
  color: var(--cream);
}
.price-card.featured .price-cta { background: var(--clay); color: var(--cream); }
.price-card.featured .price-cta:hover { background: var(--clay-deep); }

/* ──────────────────────────────────────────────────────────
   CONTACT
   ────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 10px; }
.contact-info-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
}
.ci-ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--clay-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--clay);
  flex-shrink: 0;
}
.ci-label {
  font-size: 11px;
  color: var(--ink-mute);
  margin-bottom: 2px;
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ci-value { font-size: 16px; font-weight: 500; color: var(--ink); }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
}
.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  color: var(--ink-soft);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  font: inherit;
  font-size: 15px;
  margin-bottom: 16px;
  resize: vertical;
  color: var(--ink);
}
.contact-form textarea { min-height: 140px; }
.contact-form button {
  background: var(--clay);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s;
}
.contact-form button:hover { background: var(--clay-deep); }

/* ──────────────────────────────────────────────────────────
   LEGAL CONTENT
   ────────────────────────────────────────────────────────── */
.legal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  white-space: pre-wrap;
  font-family: 'Geist', system-ui, sans-serif;
}
.legal-content h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 28px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 19px; color: var(--ink); margin: 22px 0 8px; font-weight: 600; }
.legal-content p, .legal-content li { margin: 0 0 12px; }
.legal-content a {
  color: var(--clay);
  text-decoration: underline;
  text-decoration-color: rgba(44,95,138,0.4);
}
.legal-loading {
  display: flex; align-items: center; justify-content: center;
  padding: 80px 0;
  color: var(--ink-mute);
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* ──────────────────────────────────────────────────────────
   CTA BLOCKS
   ────────────────────────────────────────────────────────── */
.cta-block {
  background: linear-gradient(135deg, var(--clay), var(--clay-deep));
  color: var(--cream);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--clay-soft);
  filter: blur(70px);
  opacity: 0.4;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.cta-block h2 em { font-style: italic; }
.cta-block p {
  font-size: 17px;
  color: rgba(250,245,234,0.85);
  margin: 0 0 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.cta-btn-primary {
  display: inline-block;
  background: var(--cream);
  color: var(--clay);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
}
.cta-btn-primary:hover { transform: translateY(-2px); }
.cta-mascot {
  width: 80px; height: 80px;
  margin: 0 auto 16px;
  display: block;
}

/* ──────────────────────────────────────────────────────────
   WEBSHOP
   ────────────────────────────────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .shop-grid { grid-template-columns: 1fr; } }
.shop-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.shop-card:hover { transform: translateY(-3px); box-shadow: 0 20px 48px -20px rgba(42,35,26,0.15); }
.shop-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--bg-deep), var(--sand));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.shop-img img { width: 50%; height: 50%; object-fit: contain; opacity: 0.85; }
.shop-img-qr {
  width: 50%; aspect-ratio: 1;
  background: var(--ink);
  border-radius: 8px;
  position: relative;
}
.shop-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.shop-body h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.shop-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 16px;
}
.shop-body .price {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  color: var(--clay);
  margin-bottom: 14px;
  font-style: italic;
}
.shop-body .price-from {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 6px;
}
.shop-body .buy-btn {
  margin-top: auto;
  display: block;
  text-align: center;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.shop-body .buy-btn:hover { background: var(--clay); }

/* ──────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(250,245,234,0.7);
  margin-top: 80px;
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,245,234,0.08);
}
.footer-brand {
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--cream);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.footer-brand img {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  padding: 3px;
}
.footer-tag {
  font-size: 14.5px;
  color: rgba(250,245,234,0.55);
  max-width: 340px;
  line-height: 1.5;
}
.footer-col h5 {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,245,234,0.4);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li {
  font-size: 14.5px;
  padding: 5px 0;
}
.footer-col a {
  color: rgba(250,245,234,0.7);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--clay-soft); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(250,245,234,0.4);
}
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ──────────────────────────────────────────────────────────
   LANGUAGE PICKER MODAL
   ────────────────────────────────────────────────────────── */
.coow-lang-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,19,12,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.coow-lang-modal.open { display: flex; }
.coow-lang-modal-inner {
  background: var(--bg);
  border-radius: 28px;
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.coow-lang-header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.coow-lang-header h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
}
.coow-lang-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(42,35,26,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--ink-soft);
}
.coow-lang-list {
  overflow-y: auto;
  padding: 12px;
}
.coow-lang-item {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s;
}
.coow-lang-item:hover { background: rgba(44,95,138,0.08); }
.coow-lang-flag { font-size: 22px; line-height: 1; }
.coow-lang-name { flex: 1; }
.coow-lang-check { color: var(--clay); font-weight: 700; }

/* ──────────────────────────────────────────────────────────
   UTILITY
   ────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.spacer-16 { height: 16px; }
.spacer-32 { height: 32px; }
.spacer-48 { height: 48px; }

/* ──────────────────────────────────────────────────────────
   BUSINESS / WEBSHOP HEROES
   ────────────────────────────────────────────────────────── */
.business-feat {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.business-feat:last-child { border-bottom: none; }
.business-feat .num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 36px;
  color: var(--clay);
  line-height: 1;
}
.business-feat h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  margin: 0 0 6px;
  font-weight: 400;
  color: var(--ink);
}
.business-feat p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}


/* ──────────────────────────────────────────────────────────
   BITPOSSESS ICON (kleines Inline-Symbol neben dem Wort "Bitpossess")
   ────────────────────────────────────────────────────────── */
.bp-icon {
  display: inline-block;
  width: 0.75em !important;
  height: 0.75em !important;
  max-width: 0.75em;
  max-height: 0.75em;
  vertical-align: -0.05em;
  margin: 0 0.15em 0 0;
  flex-shrink: 0;
  opacity: 0.85;
}
h1 .bp-icon, h2 .bp-icon { width: 0.55em !important; height: 0.55em !important; vertical-align: 0.05em; }
h3 .bp-icon, h4 .bp-icon { width: 0.7em !important; height: 0.7em !important; }
.footer .bp-icon path[fill="#2C5F8A"] { fill: #5B89B5; }
.footer .bp-icon path[fill="#1A2F47"] { fill: #8DAFCC; }
.bp-icon-link { text-decoration: none; display: inline-block; }
.bp-icon-link:hover .bp-icon { opacity: 0.7; transition: opacity 0.2s; }
