/* =========================================================
   Floweffects — Stylesheet v2 (premium / animated)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --mint: #5FFFB8;
  --mint-bright: #3DFFA0;
  --mint-soft: rgba(95, 255, 184, 0.45);
  --mint-glow: rgba(95, 255, 184, 0.65);
  --black: #030504;
  --near-black: #0a0f0c;
  --dark-green: #10201a;
  --dark-green-2: #16261f;
  --text-white: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.62);
  --text-dimmer: rgba(255, 255, 255, 0.45);
  --card-bg: rgba(255, 255, 255, 0.035);
  --card-bg-hover: rgba(95, 255, 184, 0.05);
  --card-border: rgba(255, 255, 255, 0.09);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-width: 1180px;
  --font-head: 'Space Grotesk', 'Figtree', sans-serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
  --font-mono: 'Space Mono', 'SFMono-Regular', Menlo, monospace;
  --ease-out: cubic-bezier(.16,.8,.24,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 6.4vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4.4vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }

p { margin: 0 0 16px; }

/* =========================================================
   Global fx layers: noise texture + scroll progress
   ========================================================= */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--mint-bright), var(--mint));
  box-shadow: 0 0 12px var(--mint-glow);
  z-index: 9999;
  transition: width 0.08s linear;
}

/* =========================================================
   Scroll reveal
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[data-reveal].in-view ~ * { }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.16s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.27s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.38s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.eyebrow { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 8px; }

.underline-swash { position: relative; display: inline-block; }
.underline-swash::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 8px;
  background: var(--mint-soft);
  border-radius: 4px;
  z-index: -1;
  filter: blur(0.3px);
}

.highlight-box {
  background: rgba(30, 50, 42, 0.7);
  padding: 2px 14px;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: 0 0 40px rgba(95, 255, 184,0.06) inset;
}

/* Glow orbs (decorative, absolutely positioned inside relative sections) */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  animation: floatOrb 14s ease-in-out infinite;
}
.glow-orb.mint { background: radial-gradient(circle, rgba(95, 255, 184,0.9), transparent 70%); }
.glow-orb.green { background: radial-gradient(circle, rgba(110,196,156,0.8), transparent 70%); }
@keyframes floatOrb {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(24px,-30px) scale(1.08); }
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease-out), box-shadow 0.3s var(--ease-out);
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  z-index: 1;
}
.btn:hover::before { transform: translateX(120%); }
.btn-primary {
  background: linear-gradient(180deg, var(--mint-bright), rgba(61, 255, 160, 0.55));
  color: #05130c;
  box-shadow: 0 8px 30px rgba(61, 255, 160, 0.3), 0 0 0 1px rgba(95, 255, 184,0.25);
  animation: pulseGlow 3.2s ease-in-out infinite;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.015); box-shadow: 0 12px 40px rgba(61, 255, 160,0.45), 0 0 0 1px rgba(95, 255, 184,0.4); }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 8px 30px rgba(61, 255, 160,0.25), 0 0 0 1px rgba(95, 255, 184,0.2); }
  50% { box-shadow: 0 8px 44px rgba(61, 255, 160,0.45), 0 0 0 1px rgba(95, 255, 184,0.35); }
}
.btn-light { background: #ffffff; color: #0a0f0c; }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,255,255,0.15); }
.btn-block { display: block; width: 100%; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(3,5,4,0.55);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 40px; width: auto; transition: filter 0.3s ease; }
.logo:hover img { filter: drop-shadow(0 0 10px rgba(95, 255, 184,0.6)); }

.nav-links { display: none; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-weight: 500; opacity: 0.85; position: relative; padding-bottom: 4px; transition: opacity 0.2s ease, color 0.2s ease; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--mint); transition: right 0.25s var(--ease-out);
}
.nav-links a:hover { opacity: 1; color: var(--mint); }
.nav-links a:hover::after { right: 0; }

.nav-cta { display: none; }

.menu-toggle {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--dark-green-2); border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 0.2s ease;
}
.menu-toggle:hover { background: #1c3025; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: ''; display: block; width: 20px; height: 2px; background: #fff; position: relative; transition: 0.2s;
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }

.mobile-menu {
  position: fixed; inset: 0; background: var(--black); z-index: 200;
  display: flex; flex-direction: column; padding: 24px;
  transform: translateX(100%); transition: transform 0.35s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 28px; }
.mobile-menu a { font-size: 1.6rem; font-family: var(--font-head); font-weight: 600; }
.mobile-menu .btn { margin-top: 40px; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-block; }
  .menu-toggle { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(95, 255, 184,0.5) 0%, rgba(0,0,0,0) 45%),
    radial-gradient(circle at 6% 100%, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(circle at 31% 0%, rgba(110,196,156,0.5) 0%, rgba(0,0,0,0) 55%),
    var(--black);
}
.hero .glow-orb.mint { width: 340px; height: 340px; top: -100px; right: -60px; }
.hero .glow-orb.green { width: 260px; height: 260px; bottom: -60px; left: -40px; animation-delay: -6s; }
.hero .container { text-align: center; position: relative; z-index: 2; }
.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.5rem, 7.4vw, 4.3rem);
  line-height: 1.08;
  margin: 20px 0 24px;
}
.hero-title span.highlight-box { display: inline-block; margin: 4px 0; }
.hero-sub {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 28px;
  font-weight: 500;
}
.hero-desc { max-width: 640px; margin: 0 auto 32px; color: var(--text-dim); }
.hero-eyebrow {
  font-family: var(--font-mono);
  color: var(--mint);
  font-size: 0.92rem;
  margin-bottom: 4px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(95, 255, 184,0.4);
}
.section-eyebrow {
  display: block;
  font-family: var(--font-mono);
  color: var(--mint);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 0 16px rgba(95, 255, 184,0.35);
}

/* Marquee strip */
.marquee-strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--near-black);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dimmer);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.marquee-track span::after { content: '\2726'; color: var(--mint); font-size: 0.8rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* =========================================================
   Section shell w/ diagonal + gradients
   ========================================================= */
.section { padding: 90px 0; position: relative; }
.section-dark-green { background: linear-gradient(180deg, var(--near-black), var(--near-black) 15%, var(--dark-green) 55%, var(--dark-green-2)); }
.section-black { background: linear-gradient(180deg, var(--dark-green-2), var(--near-black) 25%, var(--black) 60%); }
#warum-social-media { background: linear-gradient(180deg, var(--near-black), var(--black) 40%); }

.section-intro { max-width: 760px; margin: 0 auto 48px; text-align: center; position: relative; z-index: 1; }
.section-intro p { color: var(--text-dim); }
.lead-connector {
  display: block;
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  opacity: 0.9;
}

/* Connector node: subtle glowing seam marker between sections for a smooth, flowing feel */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px 4px var(--mint-glow), 0 0 34px 10px rgba(95, 255, 184,0.22);
  z-index: 2;
  opacity: 0.75;
  pointer-events: none;
}
.section::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(95, 255, 184,0.35));
  z-index: 1;
  pointer-events: none;
}
.section:first-of-type::after { display: none; }

.illustration {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--dark-green-2);
  position: relative;
}
.illustration img { width: 100%; height: auto; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.illustration:hover img { transform: scale(1.04); }

/* =========================================================
   Stats strip
   ========================================================= */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 56px auto 0;
  max-width: 900px;
  position: relative;
  z-index: 1;
}
@media (min-width: 700px) { .stats-strip { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  text-align: center;
  padding: 24px 12px;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.stat-item:hover { border-color: rgba(95, 255, 184,0.4); transform: translateY(-4px); background: var(--card-bg-hover); }
.stat-number {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  color: var(--mint);
  text-shadow: 0 0 24px rgba(95, 255, 184,0.35);
  margin-bottom: 4px;
}
.stat-label { font-family: var(--font-mono); font-size: 0.82rem; color: var(--text-dim); letter-spacing: 0.01em; }

/* =========================================================
   Package cards
   ========================================================= */
.packages-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 860px) { .packages-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.package-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}
.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(95, 255, 184,0.45);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(95, 255, 184,0.08);
}
.package-card .illustration { margin-bottom: 0; border-radius: 0; }
.package-card-body { padding: 28px; }
.package-card h3 { margin-bottom: 12px; }
.package-card .desc { color: var(--text-dim); margin-bottom: 20px; }
.package-card .includes-label {
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.03em; text-transform: uppercase;
  font-weight: 500; border-bottom: 2px solid var(--mint-soft);
  display: inline-block; padding-bottom: 4px; margin-bottom: 18px;
}
.package-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.package-card li { display: flex; align-items: flex-start; gap: 12px; }
.package-card .check {
  flex: none; width: 24px; height: 24px; border-radius: 7px;
  background: var(--mint-soft);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
  box-shadow: 0 0 12px rgba(95, 255, 184,0.25);
}
.package-card .check svg { width: 14px; height: 14px; stroke: #06170f; }
.package-card.featured {
  border-color: var(--mint);
  box-shadow: 0 0 0 1px var(--mint), 0 20px 60px rgba(95, 255, 184,0.12);
}
.package-card.featured:hover { box-shadow: 0 0 0 1px var(--mint), 0 28px 70px rgba(95, 255, 184,0.22); }
.featured-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #06170f;
  background: var(--mint);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 0 20px rgba(95, 255, 184,0.4);
}

/* =========================================================
   About
   ========================================================= */
.about-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.about-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
  pointer-events: none;
}
.about-photo img { width: 100%; transition: transform 0.6s var(--ease-out); }
.about-photo:hover img { transform: scale(1.03); }
.about-signature { color: var(--text-dim); font-style: italic; margin-top: 20px; }
.rating { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.rating .stars { color: #f5c518; letter-spacing: 2px; text-shadow: 0 0 16px rgba(245,197,24,0.4); }
.cta-center { text-align: center; margin-top: 36px; position: relative; z-index: 1; }

/* =========================================================
   Process timeline
   ========================================================= */
.timeline { position: relative; margin-top: 48px; }
.timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, rgba(95, 255, 184,0.5), rgba(255,255,255,0.1) 40%, rgba(255,255,255,0.1) 60%, rgba(95, 255, 184,0.5));
  transform: translateX(-50%);
  display: none;
}
.timeline-step { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; margin-bottom: 56px; text-align: center; }
.timeline-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--dark-green-2);
  border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center; margin: 0 auto;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.timeline-step:hover .timeline-icon { box-shadow: 0 0 24px rgba(95, 255, 184,0.3); border-color: rgba(95, 255, 184,0.5); }
.timeline-icon svg { width: 28px; height: 28px; stroke: var(--mint); }
.timeline-step .step-text p { color: var(--text-dim); }
.timeline-step .step-num {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}
@media (min-width: 860px) {
  .timeline-line { display: block; }
  .timeline-step { grid-template-columns: 1fr 64px 1fr; text-align: left; }
  .timeline-step:nth-child(even) .step-text { grid-column: 1; text-align: right; }
  .timeline-step:nth-child(even) .timeline-icon { grid-column: 2; }
  .timeline-step:nth-child(even) .spacer { grid-column: 3; }
  .timeline-step:nth-child(odd) .spacer-left { grid-column: 1; }
  .timeline-step:nth-child(odd) .timeline-icon { grid-column: 2; }
  .timeline-step:nth-child(odd) .step-text { grid-column: 3; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }
.faq-item {
  background: #000;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.open { border-color: rgba(95, 255, 184,0.35); box-shadow: 0 0 30px rgba(95, 255, 184,0.08); }
.faq-question {
  width: 100%; background: none; border: none; color: #fff;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 500;
  text-align: left; padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 20px;
}
.faq-question .plus { flex: none; font-size: 1.4rem; transition: transform 0.3s var(--ease-out), color 0.3s ease; color: var(--text-dim); }
.faq-item.open .faq-question .plus { transform: rotate(45deg); color: var(--mint); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease-out); color: var(--text-dim); }
.faq-answer-inner { padding: 0 24px 22px; }
.faq-item.open .faq-answer { max-height: 400px; }

/* =========================================================
   Contact form
   ========================================================= */
.contact-section { padding-bottom: 100px; }
.contact-form-wrap { max-width: 640px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-dim); margin-bottom: 40px; }
form.contact-form { text-align: left; display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 640px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }
label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; }
input, textarea, select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(95, 255, 184,0.15);
  background: rgba(255,255,255,0.08);
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.35); }
textarea { min-height: 120px; resize: vertical; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--text-dim); }
.checkbox-row input { width: 18px; height: 18px; flex: none; margin-top: 3px; }
.checkbox-row a { text-decoration: underline; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: #000; padding: 70px 0 30px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.footer-col a { color: rgba(255,255,255,0.75); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--mint); }
.footer-legal a { text-decoration: underline; text-decoration-color: var(--mint); text-underline-offset: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.footer-logo img { height: 34px; margin-bottom: 12px; }
.footer-email { color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: #fff; color: #000;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.footer-social a:hover { transform: translateY(-3px); background: var(--mint); box-shadow: 0 8px 20px rgba(95, 255, 184,0.3); }
.footer-social svg { width: 18px; height: 18px; }

/* =========================================================
   Legal pages
   ========================================================= */
.legal-content { max-width: 760px; margin: 0 auto; padding: 60px 0 100px; }
.legal-content h1 { margin-bottom: 32px; }
.legal-content h2 { font-size: 1.3rem; margin-top: 36px; }
.legal-content p, .legal-content li { color: var(--text-dim); }
.legal-content a { text-decoration: underline; color: var(--mint); }

/* =========================================================
   Portfolio
   ========================================================= */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.video-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover { transform: translateY(-6px); border-color: rgba(95, 255, 184,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.video-card .video-frame { aspect-ratio: 9 / 16; background: #000; display: flex; align-items: center; justify-content: center; }
.video-card video, .video-card iframe { width: 100%; height: 100%; object-fit: cover; border: none; }
.video-card .video-caption { padding: 16px; font-weight: 500; }
.video-placeholder {
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 60px 24px;
  text-align: center;
  color: var(--text-dim);
  grid-column: 1 / -1;
}

/* =========================================================
   Particle background canvas
   ========================================================= */
.particle-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* =========================================================
   Value grid (Warum Social Media / Warum Floweffects)
   ========================================================= */
.value-grid { display: grid; grid-template-columns: 1fr; gap: 24px; position: relative; z-index: 1; }
@media (min-width: 700px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .value-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 255, 184,0.4);
  background: var(--card-bg-hover);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 30px rgba(95, 255, 184,0.07);
}
.value-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--mint-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(95, 255, 184,0.2);
}
.value-icon svg { width: 22px; height: 22px; stroke: #06170f; fill: none; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { color: var(--text-dim); font-size: 0.96rem; margin: 0; }
.value-card.featured { border-color: rgba(95, 255, 184,0.5); box-shadow: 0 0 0 1px rgba(95, 255, 184,0.3); }

/* =========================================================
   Chain grid (Strategie -> Produktion -> Wachstum)
   ========================================================= */
.chain-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: stretch; position: relative; z-index: 1; }
@media (min-width: 900px) { .chain-grid { grid-template-columns: 1fr auto 1fr auto 1fr; } }
.chain-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  position: relative;
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}
.chain-card:hover { transform: translateY(-6px); border-color: rgba(95, 255, 184,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 30px rgba(95, 255, 184,0.07); }
.chain-num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-dimmer); letter-spacing: 0.06em; margin-bottom: 14px; }
.chain-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.chain-card p { color: var(--text-dim); font-size: 0.92rem; margin: 0; }
.chain-arrow { display: none; }
@media (min-width: 900px) {
  .chain-arrow { display: flex; align-items: center; justify-content: center; color: var(--mint); opacity: 0.6; }
  .chain-arrow svg { width: 22px; height: 22px; }
}

/* =========================================================
   Data / statistics grid
   ========================================================= */
.data-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .data-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .data-grid { grid-template-columns: repeat(4, 1fr); } }
.data-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}
.data-card:hover { transform: translateY(-6px); border-color: rgba(95, 255, 184,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(95, 255, 184,0.07); }
.data-number {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--mint);
  text-shadow: 0 0 28px rgba(95, 255, 184,0.35);
  line-height: 1;
  margin-bottom: 14px;
}
.data-card p { color: var(--text-dim); font-size: 0.92rem; margin: 0 0 14px; }
.data-source { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.03em; color: var(--text-dimmer); text-transform: uppercase; }

/* =========================================================
   Client logos strip
   ========================================================= */
.logos-strip { padding: 64px 0; background: var(--near-black); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.logos-strip .logos-caption {
  font-family: var(--font-mono);
  text-align: center;
  color: var(--text-dimmer);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.logos-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: center; }
@media (min-width: 640px) { .logos-row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .logos-row { grid-template-columns: repeat(6, 1fr); } }
.logo-slot {
  aspect-ratio: 3 / 2;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
.logo-slot img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}
.logo-slot:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.06);
}

/* =========================================================
   Pricing (comparison-style package cards)
   ========================================================= */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; position: relative; z-index: 1; }
@media (min-width: 860px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.price-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(95, 255, 184,0.35); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.price-card.featured { border-color: var(--mint); box-shadow: 0 0 0 1px var(--mint), 0 20px 60px rgba(95, 255, 184,0.12); }
.price-card.featured:hover { box-shadow: 0 0 0 1px var(--mint), 0 28px 70px rgba(95, 255, 184,0.22); }
.price-card h3 { font-size: 1.4rem; margin: 4px 0 22px; }
.price-features { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.96rem; }
.price-features li.yes { color: var(--text-white); }
.price-features li.no { color: var(--text-dimmer); }
.price-features .mark { flex: none; width: 22px; height: 22px; border-radius: 7px; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.price-features li.yes .mark { background: var(--mint-soft); box-shadow: 0 0 10px rgba(95, 255, 184,0.2); }
.price-features li.yes .mark svg { width: 13px; height: 13px; stroke: #06170f; }
.price-features li.no .mark { background: rgba(255,255,255,0.06); }
.price-features li.no .mark svg { width: 12px; height: 12px; stroke: var(--text-dimmer); }
.price-tag { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--card-border); }
.price-tag .amount-row { display: flex; align-items: baseline; gap: 8px; }
.price-tag .amount {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--mint);
  text-shadow: 0 0 24px rgba(95, 255, 184,0.3);
  filter: blur(7px);
  user-select: none; -webkit-user-select: none; pointer-events: none;
  transition: filter 0.3s ease;
}
.price-tag .period { color: var(--text-dim); font-size: 0.9rem; filter: blur(4px); user-select: none; }
.price-reveal {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.02em;
  color: var(--mint);
  border-bottom: 1px solid rgba(95, 255, 184,0.35);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.price-reveal svg { width: 14px; height: 14px; stroke: currentColor; }
.price-card:hover .price-reveal { color: var(--mint-bright); border-color: var(--mint-bright); }

.addon-bar {
  margin-top: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  position: relative; z-index: 1;
}
@media (min-width: 760px) { .addon-bar { grid-template-columns: 1fr 1fr auto; align-items: center; gap: 32px; } }
.addon-item { display: flex; flex-direction: column; gap: 4px; }
.addon-title { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.8rem; color: var(--mint); }
.addon-desc { color: var(--text-dim); font-size: 0.92rem; }
.addon-price { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
@media (min-width: 760px) { .addon-price { align-items: flex-end; text-align: right; } }
.addon-price .amount {
  font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--mint); display: block;
  filter: blur(6px); user-select: none; -webkit-user-select: none; pointer-events: none;
}
.addon-price .period { display: block; color: var(--text-dimmer); font-size: 0.8rem; filter: blur(3px); user-select: none; margin-bottom: 6px; }

/* utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
