/* ============================================
   CONTENTMONSTER Marketing Website
   Design System & Complete Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Pink CI */
  --pink-500: #e91e63;
  --pink-400: #ec407a;
  --pink-300: #f06292;
  --pink-600: #d81b60;
  --pink-glow: rgba(233,30,99,0.12);
  --pink-glow-m: rgba(233,30,99,0.22);

  /* Dark Backgrounds */
  --dark-0: #050506;
  --dark-1: #0a0a0f;
  --dark-2: #111117;
  --dark-3: #19191f;
  --dark-4: #222229;

  /* Light Backgrounds */
  --light-0: #ffffff;
  --light-1: #fafafa;
  --light-2: #f4f4f5;

  /* Text on Dark */
  --t-w: #ffffff;
  --t-w2: #d4d4d8;
  --t-w3: #a1a1aa;
  --t-w4: #71717a;
  --t-w5: #52525b;

  /* Text on Light */
  --t-b: #09090b;
  --t-b2: #27272a;
  --t-b3: #52525b;
  --t-b4: #71717a;

  /* Status */
  --green: #10b981;
  --blue: #3b82f6;
  --red: #ef4444;
  --amber: #f59e0b;
  --purple: #a855f7;
  --cyan: #06b6d4;

  /* Borders */
  --bord-d: rgba(255,255,255,0.06);
  --bord-d2: rgba(255,255,255,0.10);
  --bord-l: rgba(0,0,0,0.06);
  --bord-l2: rgba(0,0,0,0.10);

  /* Fonts */
  --font-h: 'Sora', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-py: 120px;
  --section-py-sm: 80px;
  --container-max: 1200px;
  --container-px: 24px;

  /* Animation */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  color: var(--t-w);
  background: var(--dark-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Skip Link (Accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--pink-500);
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.85rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3.25rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2.75rem, 5.5vw, 4rem); letter-spacing: -0.04em; }
h3 { font-size: clamp(2rem, 4vw, 3rem); }
h4 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); }

.text-gradient {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mono {
  font-family: var(--mono);
}

.label {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.label-pink {
  color: var(--pink-500);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.btn-primary {
  background: var(--pink-500);
  color: #fff;
  box-shadow: 0 0 24px var(--pink-glow-m);
}

.btn-primary:hover {
  background: var(--pink-400);
  transform: translateY(-2px);
  box-shadow: 0 4px 32px var(--pink-glow-m);
}

.btn-secondary {
  background: transparent;
  color: var(--t-w);
  border: 1px solid var(--bord-d2);
}

.btn-secondary:hover {
  border-color: var(--pink-500);
  color: var(--pink-400);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--t-b);
  color: #fff;
}

.btn-light:hover {
  background: var(--dark-3);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--t-b);
  border: 1px solid var(--bord-l2);
}

.btn-outline-light:hover {
  border-color: var(--pink-500);
  color: var(--pink-500);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--t-w);
  border: 1px solid var(--bord-d2);
}

.btn-outline-dark:hover {
  border-color: var(--pink-500);
  color: var(--pink-500);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(5,5,6,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bord-d);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.nav-brand {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--t-w);
  letter-spacing: -0.02em;
}

.nav-brand span {
  color: var(--pink-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-h);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t-w3);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--t-w);
}

.nav-cta {
  margin-left: 8px;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--t-w);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Image Placeholder --- */
.img-placeholder {
  background: linear-gradient(110deg, var(--dark-3) 8%, var(--dark-4) 18%, var(--dark-3) 33%);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

.img-placeholder-light {
  background: linear-gradient(110deg, var(--light-2) 8%, #fff 18%, var(--light-2) 33%);
  background-size: 200% 100%;
}

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

/* --- Sections --- */
.section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.section-dark-0 { background: var(--dark-0); color: var(--t-w); }
.section-dark-1 { background: var(--dark-1); color: var(--t-w); }
.section-dark-2 { background: var(--dark-2); color: var(--t-w); }

/* Section Divider – dezente Pink-Linie zwischen Sections */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(233,30,99,0.15) 50%, transparent 95%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header .label {
  display: inline-block;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.8;
}

/* Text colors for light sections */
.section-light .section-header p,
.section-white .section-header p {
  color: var(--t-b3);
}

/* --- Hero Section --- */
.hero {
  padding: 160px 0 var(--section-py);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark-0);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--pink-glow-m), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-3);
  border: 1px solid var(--bord-d2);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-family: var(--font-h);
  font-size: 0.8rem;
  color: var(--t-w3);
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.35rem;
  color: var(--t-w3);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--t-w4);
  font-size: 0.875rem;
}

.hero-proof-avatars {
  display: flex;
}

.hero-proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 2px solid var(--dark-0);
  margin-right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--t-w3);
}

.hero-proof-avatar:last-child {
  margin-right: 0;
}

.hero-visual {
  position: relative;
}

.hero-mockup {
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero-person-img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.hero-person-fade {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 55%, #050506 100%),
    linear-gradient(to right, #050506 0%, transparent 25%, transparent 75%, #050506 100%),
    linear-gradient(to bottom, #050506 0%, transparent 12%);
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  background: var(--dark-2);
  border: 1px solid var(--bord-d2);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-h);
  font-size: 0.85rem;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card:nth-child(2) {
  top: 15%;
  right: -20px;
  animation-delay: 0.5s;
}

.hero-float-card:nth-child(3) {
  bottom: 15%;
  left: -20px;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.float-icon-pink {
  background: var(--pink-glow-m);
  color: var(--pink-400);
}

.float-icon-green {
  background: rgba(16,185,129,0.15);
  color: var(--green);
}

.float-icon-blue {
  background: rgba(59,130,246,0.15);
  color: var(--blue);
}

/* --- Ticker Section --- */
.ticker {
  padding: 32px 0;
  background: var(--dark-0);
  border-top: 1px solid var(--bord-d);
  border-bottom: 1px solid var(--bord-d);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-h);
  font-size: 0.9rem;
  color: var(--t-w4);
  white-space: nowrap;
}

.ticker-item svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
  color: var(--pink-500);
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Funnel Section --- */
.funnel-section {
  background: var(--dark-1);
}

.funnel-visual {
  max-width: 900px;
  margin: 0 auto;
}

.funnel-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.funnel-step {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--dark-2);
  border: 1px solid var(--bord-d);
  border-radius: 16px;
  padding: 24px 32px;
  transition: all 0.3s ease;
}

.funnel-step:hover {
  border-color: var(--pink-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--pink-glow);
}

.funnel-step-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--pink-500);
  background: var(--pink-glow);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.funnel-step-content h4 {
  margin-bottom: 4px;
}

.funnel-step-content p {
  font-size: 0.9rem;
  color: var(--t-w3);
}

.funnel-connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, var(--pink-500), transparent);
  margin-left: 44px;
}

/* --- IG Automation Section (Light) --- */
/* OLD: .ig-section { background: var(--light-1); } – now dark via section-dark-1 */

.ig-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: center;
}

.ig-content .label {
  color: var(--pink-500);
  margin-bottom: 16px;
  display: inline-block;
}

.ig-content h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.ig-content p {
  color: #a1a1aa;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.ig-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.ig-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ig-feature svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
  color: var(--pink-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.ig-feature span {
  color: #d4d4d8;
  font-size: 1rem;
}

.ig-visual {
  position: relative;
}

.ig-mockup {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  border: 1px solid var(--bord-d2);
}

/* --- Feature Showcase (alternating left/right) --- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
  padding: 7rem 0;
  margin-bottom: 0;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block.reverse {
  direction: rtl;
  grid-template-columns: 1.3fr 1fr;
}

.feature-block.reverse > * {
  direction: ltr;
}

.feature-block-content .label {
  margin-bottom: 16px;
  display: inline-block;
  font-size: 0.82rem;
}

.feature-block-content h3 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
}

.feature-block-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--t-w3);
  margin-bottom: 28px;
}

.feature-block-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-block-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--t-w2);
}

.feature-block-list li svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  color: var(--green);
  flex-shrink: 0;
}

.feature-block-visual {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--bord-d2);
}

.feature-block-visual.composing {
  min-height: 540px;
}

img.feature-block-visual,
.feature-block img {
  min-height: auto;
  width: 100% !important;
  height: auto !important;
  max-height: 380px !important;
  object-fit: contain !important;
  border: none;
  border-radius: 16px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* --- Avatar System Visual (CSS-only, Phase 4 V5) --- */
.cm-avatar-visual {
  position: relative;
  min-height: 450px;
  border-radius: 20px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cm-avatar-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cm-avatar-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}

.cm-avatar-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--pink-500);
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(233,30,99,0.15);
}

.cm-avatar-circle svg {
  width: 28px;
  height: 28px;
  color: var(--pink-400);
}

.cm-avatar-label {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--t-w3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cm-avatar-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}

.cm-avatar-card span {
  font-family: var(--font-h);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--t-w3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cm-avatar-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cm-avatar-card-icon svg {
  width: 20px;
  height: 20px;
}

.cm-avatar-card-post svg { color: var(--pink-400); }
.cm-avatar-card-dm svg { color: var(--blue); }
.cm-avatar-card-email svg { color: var(--green); }
.cm-avatar-card-page svg { color: var(--purple); }

.cm-avatar-card-tl { top: 8%; left: 12%; }
.cm-avatar-card-tr { top: 8%; right: 12%; }
.cm-avatar-card-bl { bottom: 8%; left: 12%; }
.cm-avatar-card-br { bottom: 8%; right: 12%; }

.cm-avatar-visual:hover .cm-avatar-card-icon {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.cm-avatar-visual:hover .cm-avatar-circle {
  box-shadow: 0 0 32px rgba(233,30,99,0.25);
}

/* --- Module Grid (Dark) --- */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.module-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.module-card:hover {
  transform: translateY(-2px);
  border-color: var(--pink-500);
  box-shadow: 0 8px 32px rgba(233,30,99,0.08);
}

.module-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--pink-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.module-card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  color: var(--pink-500);
}

.module-card h4 {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.module-card p {
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.module-card-link {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.module-card-link:hover {
  gap: 10px;
}

.module-card-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

/* --- Comparison Section --- */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--bord-d);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--bord-d);
}

.compare-table th {
  font-family: var(--font-h);
  font-weight: 600;
  background: var(--dark-2);
  color: var(--t-w2);
}

.compare-table th:first-child {
  color: var(--t-w4);
}

.compare-table th.highlight {
  color: var(--pink-500);
  background: var(--dark-3);
}

.compare-table td {
  color: var(--t-w3);
  background: var(--dark-1);
}

.compare-table td.highlight {
  background: var(--dark-2);
  color: var(--t-w);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}

.compare-check {
  color: var(--green);
}

.compare-x {
  color: var(--t-w5);
}

.compare-partial {
  color: var(--amber);
}

/* --- Pricing Section (Light) --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-addon {
  text-align: center;
  font-size: 0.85rem;
  color: #a1a1aa;
  margin-top: 2rem;
}

.pricing-addon strong {
  color: #d4d4d8;
}

.pricing-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}

.pricing-card.featured {
  border-color: var(--pink-500);
  box-shadow: 0 0 0 1px var(--pink-500), 0 12px 48px rgba(233,30,99,0.12);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink-500);
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-card-name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.pricing-card-price {
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #a1a1aa;
}

.pricing-card-desc {
  font-size: 0.9rem;
  color: #a1a1aa;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #d4d4d8;
}

.pricing-feature svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  color: var(--pink-500);
  flex-shrink: 0;
}

.pricing-feature.disabled {
  color: #52525b;
}

.pricing-feature.disabled svg {
  color: #52525b;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
  background: var(--dark-2);
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  color: #e4e4e7;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
  color: #71717a;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  background: var(--dark-0);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, var(--pink-glow-m), transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  position: relative;
  margin-bottom: 20px;
}

.cta-section p {
  position: relative;
  font-size: 1.15rem;
  color: var(--t-w3);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  position: relative;
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* --- Footer --- */
.footer {
  background: var(--dark-0);
  border-top: 1px solid var(--bord-d);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--t-w);
  margin-bottom: 16px;
}

.footer-brand span {
  color: var(--pink-500);
}

.footer-desc {
  color: var(--t-w4);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h5 {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--t-w2);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a {
  display: block;
  color: var(--t-w4);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--pink-400);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--bord-d);
  color: var(--t-w5);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--t-w5);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--t-w3);
}

/* --- Animations (Scroll-triggered) --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* --- Page Hero (Subpages) --- */
.page-hero {
  padding: 140px 0 60px;
  background: var(--dark-0);
  text-align: center;
}

.page-hero .label {
  display: inline-block;
  margin-bottom: 16px;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--t-w3);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Feature Page Hero (with icon) --- */
.feature-hero {
  padding: 140px 0 0;
  background: var(--dark-0);
}

.feature-hero-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 64px;
}

.feature-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--pink-glow-m);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-hero-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
  color: var(--pink-500);
}

.feature-hero h1 {
  margin-bottom: 20px;
}

.feature-hero-desc {
  font-size: 1.15rem;
  color: var(--t-w3);
  line-height: 1.7;
  margin-bottom: 32px;
}

.feature-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Feature Product Visual */
.feature-visual-wrap {
  background: var(--dark-1);
  padding: 64px 0;
}

.feature-visual {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 20px;
  border: 1px solid var(--bord-d2);
}

.feature-visual-img {
  display: block;
  max-width: 100%;
  height: auto !important;
  max-height: 450px !important;
  object-fit: contain !important;
  margin: 0 auto;
  border-radius: 16px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* "So funktioniert es" Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
}

.step-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--pink-500);
  background: var(--pink-glow);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-card h4 {
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--t-w3);
  line-height: 1.6;
}

/* Feature List (detailed) */
.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--dark-2);
  border: 1px solid var(--bord-d);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-detail-item:hover {
  border-color: var(--pink-500);
  transform: translateY(-2px);
}

.feature-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pink-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
  color: var(--pink-500);
}

.feature-detail-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-detail-item p {
  font-size: 0.9rem;
  color: var(--t-w3);
  line-height: 1.5;
}

/* Light version of feature detail items */
.section-light .feature-detail-item,
.section-white .feature-detail-item {
  background: var(--light-0);
  border-color: var(--bord-l);
}

.section-white .feature-detail-item {
  background: var(--light-1);
}

.section-light .feature-detail-item h4,
.section-white .feature-detail-item h4 {
  color: var(--t-b);
}

.section-light .feature-detail-item p,
.section-white .feature-detail-item p {
  color: var(--t-b3);
}

.section-light .feature-detail-icon,
.section-white .feature-detail-icon {
  background: var(--pink-glow);
}

/* Use Cases / "Perfekt für..." */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.usecase-card {
  background: var(--light-0);
  border: 1px solid var(--bord-l);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.section-white .usecase-card {
  background: var(--light-1);
}

.usecase-card:hover {
  transform: translateY(-2px);
  border-color: var(--pink-500);
}

.usecase-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--pink-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.usecase-card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  color: var(--pink-500);
}

.usecase-card h4 {
  color: var(--t-b);
  font-size: 1rem;
  margin-bottom: 8px;
}

.usecase-card p {
  color: var(--t-b3);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Integration Links */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.integration-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--dark-2);
  border: 1px solid var(--bord-d);
  border-radius: 12px;
  transition: all 0.3s ease;
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--t-w2);
}

.integration-link:hover {
  border-color: var(--pink-500);
  color: var(--pink-400);
  transform: translateY(-2px);
}

.integration-link svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
  color: var(--pink-500);
  flex-shrink: 0;
}

/* Related Modules */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- Pricing Detail Page --- */
.pricing-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-detail-card {
  background: #111117;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 48px 36px;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}

.pricing-detail-card.featured {
  border-color: var(--pink-500);
  box-shadow: 0 0 0 1px var(--pink-500), 0 12px 48px rgba(233,30,99,0.12);
}

.pricing-detail-card .pricing-card-header {
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}

.pricing-feature-group {
  margin-bottom: 24px;
}

.pricing-feature-group-title {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 16px;
}

/* --- Feature Compare Table (full) --- */
.feature-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--bord-d);
  margin-top: 48px;
}

.feature-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.feature-table th,
.feature-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--bord-d);
}

.feature-table th {
  font-family: var(--font-h);
  font-weight: 600;
  background: var(--dark-2);
  color: var(--t-w2);
  position: sticky;
  top: 0;
}

.feature-table th.highlight {
  color: var(--pink-500);
  background: var(--dark-3);
}

.feature-table td {
  color: var(--t-w3);
  background: var(--dark-1);
}

.feature-table td.highlight {
  background: var(--dark-2);
  color: var(--t-w);
}

.feature-table tr:last-child td {
  border-bottom: none;
}

.feature-table .row-group-header td {
  background: var(--dark-3);
  color: var(--t-w2);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Light version of feature table */
.feature-table-light {
  border-color: var(--bord-l);
}

.feature-table-light th {
  background: var(--light-2);
  color: var(--t-b2);
}

.feature-table-light th.highlight {
  background: var(--pink-glow);
  color: var(--pink-500);
}

.feature-table-light td {
  background: var(--light-0);
  color: var(--t-b3);
  border-bottom-color: var(--bord-l);
}

.feature-table-light td.highlight {
  background: var(--light-1);
  color: var(--t-b);
}

.feature-table-light .row-group-header td {
  background: var(--light-2);
  color: var(--t-b2);
}

/* --- Add-on Cards --- */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.addon-card {
  background: var(--dark-2);
  border: 1px solid var(--bord-d);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.addon-card:hover {
  border-color: var(--pink-500);
  transform: translateY(-2px);
}

.addon-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--pink-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.addon-card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  color: var(--pink-500);
}

.addon-card h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.addon-card p {
  color: var(--t-w3);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.addon-card-price {
  font-family: var(--font-h);
  font-size: 0.85rem;
  color: var(--pink-400);
  font-weight: 600;
}

/* --- Pro/Contra Cards --- */
.procon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.procon-card {
  background: var(--dark-2);
  border: 1px solid var(--bord-d);
  border-radius: 16px;
  padding: 32px;
}

.procon-card h4 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.procon-card h4 svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.procon-card.pro h4 svg { color: var(--green); }
.procon-card.contra h4 svg { color: var(--amber); }

.procon-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--t-w2);
  border-bottom: 1px solid var(--bord-d);
}

.procon-list li:last-child {
  border-bottom: none;
}

.procon-list li svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

.procon-list.pro-list li svg { color: var(--green); }
.procon-list.contra-list li svg { color: var(--amber); }

/* --- Verdict / Fazit Section --- */
.verdict-box {
  background: var(--dark-2);
  border: 1px solid var(--pink-500);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  position: relative;
}

.verdict-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at center, var(--pink-glow), transparent 70%);
  pointer-events: none;
}

.verdict-box h3 {
  margin-bottom: 16px;
  position: relative;
}

.verdict-box p {
  color: var(--t-w3);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 32px;
  position: relative;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 0.8rem;
  color: var(--t-w4);
  padding: 100px 0 0;
}

.breadcrumb a {
  color: var(--t-w4);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--pink-400);
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.5;
}

/* ============================================
   COMPOSING 1: FUNNEL FLOW ANIMATION
   ============================================ */
/* V5: Funnel container subtiler – Stationen stehen frei in der Section */
.cm-funnel-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 3rem 2rem 4rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.cm-funnel-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(233,30,99,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cm-funnel-stations {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.cm-funnel-station {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  flex: 1;
  max-width: 140px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s var(--ease);
}

.cm-funnel-station.show {
  opacity: 1;
  transform: translateY(0);
}

.cm-funnel-ico {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  background: var(--dark-3);
  border: 1.5px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s var(--ease);
}

.cm-funnel-ico svg {
  width: 36px;
  height: 36px;
  color: #71717a;
  transition: color 0.4s;
}

/* Default-Farben pro Station */
#cm-funnel-s1 .cm-funnel-ico { border-color: rgba(168,85,247,0.25); background: rgba(168,85,247,0.06); }
#cm-funnel-s1 .cm-funnel-ico svg { color: #a855f7; }
#cm-funnel-s2 .cm-funnel-ico { border-color: rgba(233,30,99,0.25); background: rgba(233,30,99,0.06); }
#cm-funnel-s2 .cm-funnel-ico svg { color: var(--pink-400); }
#cm-funnel-s3 .cm-funnel-ico { border-color: rgba(59,130,246,0.25); background: rgba(59,130,246,0.06); }
#cm-funnel-s3 .cm-funnel-ico svg { color: #3b82f6; }
#cm-funnel-s4 .cm-funnel-ico { border-color: rgba(245,158,11,0.25); background: rgba(245,158,11,0.06); }
#cm-funnel-s4 .cm-funnel-ico svg { color: #f59e0b; }
#cm-funnel-s5 .cm-funnel-ico { border-color: rgba(16,185,129,0.25); background: rgba(16,185,129,0.06); }
#cm-funnel-s5 .cm-funnel-ico svg { color: #10b981; }
#cm-funnel-s6 .cm-funnel-ico { border-color: rgba(233,30,99,0.3); background: rgba(233,30,99,0.08); }
#cm-funnel-s6 .cm-funnel-ico svg { color: var(--pink-500); }

.cm-funnel-station.active .cm-funnel-ico {
  border-color: var(--pink-500);
  background: rgba(233,30,99,0.08);
  box-shadow: 0 0 24px rgba(233,30,99,0.2);
  transform: scale(1.08);
}

.cm-funnel-station.active .cm-funnel-ico svg {
  color: var(--pink-500);
}

.cm-funnel-station.done .cm-funnel-ico {
  border-color: rgba(16,185,129,0.4);
  background: rgba(16,185,129,0.06);
  box-shadow: 0 0 16px rgba(16,185,129,0.1);
}

.cm-funnel-station.done .cm-funnel-ico svg {
  color: var(--green);
}

.cm-funnel-station.cm-funnel-final.active .cm-funnel-ico {
  border-color: var(--pink-500);
  background: rgba(233,30,99,0.1);
  box-shadow: 0 0 32px rgba(233,30,99,0.3);
  transform: scale(1.15);
}

.cm-funnel-title {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: #a1a1aa;
  text-align: center;
  line-height: 1.3;
  transition: color 0.4s;
}

.cm-funnel-station.active .cm-funnel-title {
  color: #fff;
}

.cm-funnel-station.done .cm-funnel-title {
  color: #71717a;
}

.cm-funnel-sub {
  font-size: 0.8rem;
  color: #52525b;
  text-align: center;
}

/* Connection Line */
.cm-funnel-conn-wrap {
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  z-index: 1;
  height: 3px;
  padding: 0 4.5rem;
}

.cm-funnel-conn-bg {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.04);
  border-radius: 1px;
  position: relative;
}

.cm-funnel-conn-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--pink-500));
  border-radius: 1px;
  width: 0%;
  transition: width 0.8s var(--ease);
  box-shadow: 0 0 8px rgba(233,30,99,0.3);
}

.cm-funnel-traveler {
  position: absolute;
  top: -7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pink-500);
  border: 2px solid #fff;
  box-shadow: 0 0 12px rgba(233,30,99,0.5), 0 0 24px rgba(233,30,99,0.2);
  z-index: 3;
  left: 0%;
  transition: left 0.8s var(--ease);
  opacity: 0;
}

.cm-funnel-traveler.show {
  opacity: 1;
}

/* Tooltips */
.cm-funnel-tooltip {
  position: absolute;
  z-index: 20;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(5px) scale(0.95);
  transition: all 0.35s var(--ease);
  pointer-events: none;
  bottom: calc(100% + 12px);
  left: 50%;
  transform-origin: bottom center;
}

.cm-funnel-tooltip.show {
  opacity: 1;
  transform: translateY(0) scale(1) translateX(-50%);
}

.cm-funnel-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0,0,0,0.85);
}

.cm-funnel-tooltip-text {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 600;
  color: #e4e4e7;
}

.cm-funnel-tooltip-icon {
  margin-right: 0.25rem;
}

/* Result Bar */
.cm-funnel-result-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
}

.cm-funnel-result-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s var(--ease);
}

.cm-funnel-result-item.show {
  opacity: 1;
  transform: translateY(0);
}

.cm-funnel-result-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.cm-funnel-result-dot.green {
  background: var(--green);
  box-shadow: 0 0 6px rgba(16,185,129,0.4);
}

.cm-funnel-result-dot.pink {
  background: var(--pink-500);
  box-shadow: 0 0 6px rgba(233,30,99,0.4);
}

.cm-funnel-result-dot.blue {
  background: var(--blue);
  box-shadow: 0 0 6px rgba(59,130,246,0.4);
}

.cm-funnel-result-label {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 600;
  color: #71717a;
}

.cm-funnel-result-val {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  color: #e4e4e7;
}

.cm-funnel-result-val.pink {
  color: var(--pink-300);
}

.cm-funnel-result-val.green {
  color: var(--green);
}

/* Success Burst */
.cm-funnel-burst {
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translate(50%, -50%);
  width: 120px;
  height: 120px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s;
}

.cm-funnel-burst.show {
  opacity: 1;
}

.cm-funnel-burst-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(233,30,99,0.15);
  border-radius: 50%;
  animation: cmFunnelBurstRing 2s ease-out infinite;
}

.cm-funnel-burst-ring:nth-child(2) { animation-delay: 0.5s; }
.cm-funnel-burst-ring:nth-child(3) { animation-delay: 1s; }

@keyframes cmFunnelBurstRing {
  0% { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Replay Button */
.cm-funnel-replay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 1.5rem;
  cursor: pointer;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  color: #52525b;
  opacity: 0;
  transition: all 0.4s;
  background: none;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

.cm-funnel-replay.show {
  opacity: 1;
}

.cm-funnel-replay:hover {
  color: #a1a1aa;
  border-color: rgba(255,255,255,0.12);
}

.cm-funnel-replay svg {
  width: 11px;
  height: 11px;
}

/* ============================================================
   COMPOSING 2: IG AUTOMATION – V5 (nur DM-Chat)
   ============================================================ */
.cm-ig-chat {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  min-height: 600px;
  max-width: 460px;
  margin: 0 auto;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Optional Photo Background */
.cm-ig-photo-bg {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  opacity: 0.15;
  /* background-image: url('assets/images/people/ig-woman.webp'); */
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

/* DM Header */
.cm-ig-dm-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.7rem;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transition: all 0.4s var(--ease);
  z-index: 2;
}

.cm-ig-dm-header.show {
  opacity: 1;
}

.cm-ig-dm-header-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-500);
}

.cm-ig-dm-header-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-h);
}

/* DM Bubbles */
.cm-ig-dm-bubbles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  z-index: 2;
}

.cm-ig-dm-b {
  padding: 0.9rem 1.2rem;
  border-radius: 18px;
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: all 0.45s var(--ease);
  max-width: 85%;
}

.cm-ig-dm-b.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cm-ig-bot {
  background: var(--pink-500);
  color: #fff;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.cm-ig-user {
  background: rgba(44,44,46,0.95);
  color: #e4e4e7;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.cm-ig-dm-link {
  display: block;
  margin-top: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  transition: background 0.2s;
}

.cm-ig-dm-link:hover {
  background: rgba(255,255,255,0.1);
}

/* Typing indicator */
.cm-ig-typing {
  display: flex;
  gap: 4px;
  padding: 0.55rem 0.8rem;
  background: var(--pink-500);
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.cm-ig-typing.show {
  opacity: 1;
}

.cm-ig-typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  animation: cm-ig-typingBounce 1.2s ease-in-out infinite;
}

.cm-ig-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.cm-ig-typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes cm-ig-typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Notification Badge */
.cm-ig-notif {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s var(--ease);
  z-index: 2;
}

.cm-ig-notif.show {
  opacity: 1;
  transform: translateY(0);
}

.cm-ig-notif-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: cm-ig-typingBounce 2s infinite;
}

.cm-ig-notif-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #10b981;
  font-family: var(--font-h);
}

/* Replay Button */
.cm-ig-replay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  opacity: 0;
  transition: all 0.4s;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  z-index: 2;
  align-self: center;
}

.cm-ig-replay.show {
  opacity: 1;
}

.cm-ig-replay:hover {
  color: #a1a1aa;
  border-color: rgba(255,255,255,0.15);
}

.cm-ig-replay svg {
  width: 11px;
  height: 11px;
}

/* OLD: IG Post, Comments, Flow Lines, Flow Badges, Step Bar, LP Preview removed in V5 */

/* OLD DM area positioning - replaced by flex layout in .cm-ig-chat */
.cm-ig-dm-area {
  display: none; /* V5: no longer used */
  right: 0.85rem;
  z-index: 10;
  width: 210px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cm-ig-dm-header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.5rem;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.cm-ig-dm-header.show {
  opacity: 1;
}

.cm-ig-dm-header-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink-500);
}

.cm-ig-dm-header-text {
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-h);
}

.cm-ig-dm-bubbles {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cm-ig-dm-b {
  padding: 0.5rem 0.7rem;
  border-radius: 14px;
  font-size: 0.68rem;
  line-height: 1.45;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: all 0.45s var(--ease);
  max-width: 90%;
}

.cm-ig-dm-b.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cm-ig-bot {
  background: var(--pink-500);
  color: #fff;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.cm-ig-user {
  background: rgba(44,44,46,0.95);
  color: #e4e4e7;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.cm-ig-dm-link {
  display: block;
  margin-top: 0.3rem;
  padding: 0.25rem 0;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 0.58rem;
  color: #fff;
  transition: background 0.2s;
}

.cm-ig-dm-link:hover {
  background: rgba(255,255,255,0.1);
}

/* Typing indicator */
.cm-ig-typing {
  display: flex;
  gap: 3px;
  padding: 0.4rem 0.6rem;
  background: var(--pink-500);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.cm-ig-typing.show {
  opacity: 1;
}

.cm-ig-typing-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  animation: cm-ig-typingBounce 1.2s ease-in-out infinite;
}

.cm-ig-typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.cm-ig-typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes cm-ig-typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Landing Page Mini Preview */
.cm-ig-lp-card {
  position: absolute;
  bottom: 1rem;
  right: 0.85rem;
  z-index: 10;
  width: 185px;
  background: rgba(28,28,30,0.95);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: all 0.5s var(--ease);
}

.cm-ig-lp-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cm-ig-lp-bar {
  height: 16px;
  background: rgba(44,44,46,0.8);
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 7px;
  border-radius: 10px 10px 0 0;
}

.cm-ig-lp-d {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.cm-ig-lp-d-r { background: #ff5f57; }
.cm-ig-lp-d-y { background: #febc2e; }
.cm-ig-lp-d-g { background: #28c840; }

.cm-ig-lp-url {
  flex: 1;
  text-align: center;
  font-size: 0.45rem;
  color: #71717a;
  font-family: var(--mono);
}

.cm-ig-lp-body {
  padding: 0.55rem 0.6rem;
}

.cm-ig-lp-h-bar {
  width: 75%;
  height: 5px;
  background: #3f3f46;
  border-radius: 2px;
  margin-bottom: 5px;
}

.cm-ig-lp-p-bar {
  width: 100%;
  height: 3px;
  background: #27272a;
  border-radius: 1px;
  margin-bottom: 3px;
}

.cm-ig-lp-cta {
  display: block;
  margin-top: 0.4rem;
  padding: 5px;
  background: var(--pink-500);
  border-radius: 4px;
  text-align: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: #fff;
}

/* Flow Connection Lines */
.cm-ig-flow-lines {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.cm-ig-flow-line {
  stroke: rgba(233,30,99,0.35);
  stroke-width: 1.5;
  stroke-dasharray: 5 4;
  fill: none;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.5s ease;
}

.cm-ig-flow-line.animate {
  stroke-dashoffset: 0;
  animation: cm-ig-flowDash 2s linear infinite;
}

@keyframes cm-ig-flowDash {
  from { stroke-dashoffset: 18; }
  to { stroke-dashoffset: 0; }
}

/* Flow Badges */
.cm-ig-flow-badge {
  position: absolute;
  z-index: 10;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(233,30,99,0.4);
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s var(--ease);
}

.cm-ig-flow-badge.show {
  opacity: 1;
  transform: scale(1);
}

.cm-ig-flow-badge svg {
  width: 10px;
  height: 10px;
  color: #fff;
}

.cm-ig-fb-1 { top: 42%; left: 43%; }
.cm-ig-fb-2 { bottom: 28%; right: 40%; }

/* Notification Badge */
.cm-ig-notif {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s var(--ease);
}

.cm-ig-notif.show {
  opacity: 1;
  transform: translateY(0);
}

.cm-ig-notif-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: cm-ig-typingBounce 2s infinite;
}

.cm-ig-notif-text {
  font-size: 0.5rem;
  font-weight: 600;
  color: #10b981;
  font-family: var(--font-h);
}

/* Replay Button */
.cm-ig-replay {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  opacity: 0;
  transition: all 0.4s;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.cm-ig-replay.show {
  opacity: 1;
}

.cm-ig-replay:hover {
  color: #a1a1aa;
  border-color: rgba(255,255,255,0.12);
}

.cm-ig-replay svg {
  width: 10px;
  height: 10px;
}

/* ============================================================
   COMPOSING 3: CONTENT STUDIO
   ============================================================ */
.cm-cs-comp {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
  position: relative;
  min-height: 580px;
}

/* Top Bar */
.cm-cs-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: var(--dark-3);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cm-cs-dots {
  display: flex;
  gap: 4px;
}

.cm-cs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.cm-cs-d-r { background: #ff5f57; }
.cm-cs-d-y { background: #febc2e; }
.cm-cs-d-g { background: #28c840; }

.cm-cs-tab {
  font-family: var(--font-h);
  font-size: 0.58rem;
  font-weight: 600;
  color: #52525b;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}

.cm-cs-tab.active {
  color: #d4d4d8;
  background: rgba(255,255,255,0.04);
}

/* V5: Single column editor body (replaces old split grid) */
.cm-cs-editor-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* OLD: .cm-cs-body grid removed in V5 */
/* OLD: .cm-cs-editor border-right removed in V5 */

/* Avatar Badge */
.cm-cs-avatar-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.5rem;
  background: rgba(233,30,99,0.06);
  border: 1px solid rgba(233,30,99,0.12);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.4s var(--ease);
}

.cm-cs-avatar-badge.show {
  opacity: 1;
  transform: translateY(0);
}

.cm-cs-avatar-pic {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-500), #a855f7);
}

.cm-cs-avatar-info {
  display: flex;
  flex-direction: column;
}

.cm-cs-avatar-name {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 700;
  color: #d4d4d8;
}

.cm-cs-avatar-style {
  font-size: 0.65rem;
  color: #71717a;
}

/* Topic Input */
.cm-cs-topic-input {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.4s var(--ease);
}

.cm-cs-topic-input.show {
  opacity: 1;
  transform: translateY(0);
}

.cm-cs-topic-input.typing {
  border-color: var(--pink-500);
}

.cm-cs-topic-label {
  font-size: 0.6rem;
  color: #52525b;
  font-family: var(--font-h);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.cm-cs-topic-text {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: #d4d4d8;
  min-height: 1.1em;
  position: relative;
}

.cm-cs-topic-cursor {
  display: inline-block;
  width: 1px;
  height: 0.7em;
  background: var(--pink-500);
  margin-left: 1px;
  animation: cm-cs-blink 0.8s step-end infinite;
  vertical-align: middle;
}

@keyframes cm-cs-blink {
  50% { opacity: 0; }
}

/* Format Tabs */
.cm-cs-format-tabs {
  display: flex;
  gap: 0.25rem;
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.cm-cs-format-tabs.show {
  opacity: 1;
}

.cm-cs-format-tab {
  font-family: var(--font-h);
  font-size: 0.56rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 5px;
  color: #52525b;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s;
}

.cm-cs-format-tab.active {
  color: var(--pink-400);
  border-color: rgba(233,30,99,0.2);
  background: rgba(233,30,99,0.06);
}

/* Generated Text Area */
.cm-cs-gen-area {
  flex: 1;
  background: var(--dark-3);
  border-radius: 8px;
  padding: 0.6rem;
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.cm-cs-gen-area.show {
  opacity: 1;
  min-height: 160px;
  max-height: none;
  overflow: visible;
}

.cm-cs-gen-area.generating {
  border-color: rgba(233,30,99,0.15);
}

.cm-cs-gen-text {
  font-size: 0.95rem;
  color: #d4d4d8;
  line-height: 1.8;
  white-space: pre-wrap;
}

.cm-cs-gen-loader {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-h);
  font-size: 0.75rem;
  color: var(--pink-400);
  opacity: 0;
  transition: all 0.3s;
  margin-bottom: 0.4rem;
}

.cm-cs-gen-loader.show {
  opacity: 1;
}

.cm-cs-gen-loader-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink-500);
  animation: cm-cs-genBounce 1.2s ease-in-out infinite;
}

.cm-cs-gen-loader-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.cm-cs-gen-loader-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes cm-cs-genBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-3px); opacity: 1; }
}

/* Preview */
.cm-cs-preview {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: rgba(0,0,0,0.15);
}

.cm-cs-preview-label {
  font-family: var(--font-h);
  font-size: 0.56rem;
  font-weight: 600;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  align-self: flex-start;
  opacity: 0;
  transition: all 0.3s;
}

.cm-cs-preview-label.show {
  opacity: 1;
}

/* IG Post Preview */
.cm-cs-ig-prev {
  width: 100%;
  max-width: 260px;
  background: #1c1c1e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: all 0.5s var(--ease);
}

.cm-cs-ig-prev.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cm-cs-ig-prev-head {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
}

.cm-cs-ig-prev-av {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-500), #a855f7);
}

.cm-cs-ig-prev-name {
  font-size: 0.58rem;
  font-weight: 700;
  color: #e4e4e7;
}

.cm-cs-ig-prev-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1030, #0f2030);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cm-cs-ig-prev-overlay {
  position: absolute;
  inset: 0;
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s var(--ease);
}

.cm-cs-ig-prev-overlay.show {
  opacity: 1;
}

.cm-cs-ig-prev-quote {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  white-space: pre-line;
}

.cm-cs-ig-prev-actions {
  display: flex;
  gap: 7px;
  padding: 6px 8px;
}

.cm-cs-ig-prev-actions svg {
  width: 12px;
  height: 12px;
  color: #a1a1aa;
}

.cm-cs-ig-prev-caption {
  padding: 4px 8px 8px;
  font-size: 0.52rem;
  color: #a1a1aa;
  line-height: 1.5;
}

.cm-cs-ig-prev-caption strong {
  color: #e4e4e7;
}

/* Planer Badge */
.cm-cs-planer-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.55rem;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.4s var(--ease);
}

.cm-cs-planer-badge.show {
  opacity: 1;
  transform: translateY(0);
}

.cm-cs-planer-badge svg {
  width: 12px;
  height: 12px;
  color: var(--green);
}

.cm-cs-planer-text {
  font-family: var(--font-h);
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--green);
}

/* Replay */
.cm-cs-replay {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  z-index: 20;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  color: #52525b;
}

.cm-cs-replay.show {
  opacity: 1;
}

.cm-cs-replay:hover {
  color: #a1a1aa;
  border-color: rgba(255,255,255,0.15);
}

.cm-cs-replay svg {
  width: 9px;
  height: 9px;
}

/* ============================================================
   COMPOSING 4: LANDINGPAGE WIZARD
   Light style kept as browser-window contrast in dark section
   ============================================================ */
.cm-lp-comp {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.2);
  position: relative;
  min-height: 580px;
}

/* Browser Frame (V5.2: simplified) */
.cm-lp-browser {
  border-radius: 20px;
  overflow: hidden;
}

.cm-lp-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--dark-3);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cm-lp-br-dots {
  display: flex;
  gap: 4px;
}

.cm-lp-br-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.cm-lp-br-dots span:nth-child(1) { background: #ff5f57; }
.cm-lp-br-dots span:nth-child(2) { background: #febc2e; }
.cm-lp-br-dots span:nth-child(3) { background: #28c840; }

.cm-lp-br-url {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: #71717a;
}

/* Live Badge */
.cm-lp-live-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 6px;
  font-family: var(--font-h);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.cm-lp-live-badge.show {
  opacity: 1;
}

.cm-lp-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: cm-lp-pulse 2s infinite;
}

@keyframes cm-lp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Body */
.cm-lp-body {
  background: #0d0d12;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Loading Phase */
.cm-lp-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cm-lp-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255,255,255,0.06);
  border-top-color: var(--pink-500);
  border-radius: 50%;
  animation: cm-lp-spin 0.8s linear infinite;
}

@keyframes cm-lp-spin {
  to { transform: rotate(360deg); }
}

.cm-lp-loading-text {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 600;
  color: #a1a1aa;
}

/* Success Phase */
.cm-lp-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cm-lp-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  border: 2px solid #10b981;
  color: #10b981;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cm-lp-success-title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 1rem;
}

.cm-lp-success-url {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--pink-500);
  margin-top: 0.5rem;
}

/* Replay */
.cm-lp-replay {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  z-index: 20;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  color: #52525b;
}

.cm-lp-replay.show {
  opacity: 1;
}

.cm-lp-replay:hover {
  color: #a1a1aa;
  border-color: rgba(255,255,255,0.15);
}

.cm-lp-replay svg {
  width: 9px;
  height: 9px;
}

/* ============================================================
   COMPOSING 5: NEWSLETTER DRIP
   ============================================================ */
.cm-drip-comp {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
  padding: 1.25rem;
  position: relative;
  min-height: 580px;
}

/* Contact Card */
.cm-drip-contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.7rem;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s var(--ease);
}

.cm-drip-contact.show {
  opacity: 1;
  transform: translateY(0);
}

.cm-drip-contact-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--pink-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: #fff;
}

.cm-drip-contact-info {
  flex: 1;
}

.cm-drip-contact-name {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  color: #e4e4e7;
}

.cm-drip-contact-email {
  font-size: 0.58rem;
  color: #71717a;
}

.cm-drip-contact-tag {
  padding: 0.2rem 0.5rem;
  background: rgba(233,30,99,0.1);
  border: 1px solid rgba(233,30,99,0.15);
  border-radius: 4px;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pink-400);
}

/* Timeline */
.cm-drip-timeline {
  position: relative;
  padding-left: 1.5rem;
}

.cm-drip-timeline-line {
  position: absolute;
  left: 7px;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--pink-500), var(--green));
  transition: height 0.6s var(--ease);
  border-radius: 1px;
}

.cm-drip-timeline-line-bg {
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 1px;
}

.cm-drip-tl-item {
  position: relative;
  padding-bottom: 0.9rem;
  padding-left: 0.8rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.45s var(--ease);
}

.cm-drip-tl-item.show {
  opacity: 1;
  transform: translateX(0);
}

.cm-drip-tl-item:last-child {
  padding-bottom: 0;
}

.cm-drip-tl-dot {
  position: absolute;
  left: -1.5rem;
  top: 0.15rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.cm-drip-tl-item.show .cm-drip-tl-dot {
  border-color: var(--pink-500);
  background: rgba(233,30,99,0.1);
}

.cm-drip-tl-item.sent .cm-drip-tl-dot {
  border-color: var(--green);
  background: rgba(16,185,129,0.1);
}

.cm-drip-tl-dot svg {
  width: 8px;
  height: 8px;
  color: transparent;
  transition: color 0.3s;
}

.cm-drip-tl-item.sent .cm-drip-tl-dot svg {
  color: var(--green);
}

.cm-drip-tl-day {
  font-family: var(--font-h);
  font-size: 0.58rem;
  font-weight: 700;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.cm-drip-tl-mail {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cm-drip-tl-mail-ico {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cm-drip-tl-mail-ico svg {
  width: 12px;
  height: 12px;
}

.cm-drip-welcome { background: rgba(59,130,246,0.1); color: var(--blue); }
.cm-drip-tip { background: rgba(168,85,247,0.1); color: #a855f7; }
.cm-drip-story { background: rgba(245,158,11,0.1); color: var(--amber); }
.cm-drip-offer { background: rgba(233,30,99,0.1); color: var(--pink-500); }

.cm-drip-tl-mail-info {
  flex: 1;
}

.cm-drip-tl-mail-subj {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 700;
  color: #d4d4d8;
}

.cm-drip-tl-mail-prev {
  font-size: 0.75rem;
  color: #71717a;
  margin-top: 2px;
}

.cm-drip-tl-mail-stat {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  opacity: 0;
  transition: all 0.3s;
}

.cm-drip-tl-mail-stat.show {
  opacity: 1;
}

.cm-drip-opened {
  background: rgba(16,185,129,0.1);
  color: var(--green);
}

.cm-drip-clicked {
  background: rgba(233,30,99,0.1);
  color: var(--pink-400);
}

/* Highlight on offer mail */
.cm-drip-tl-item.highlight .cm-drip-tl-mail {
  border-color: rgba(233,30,99,0.25);
  box-shadow: 0 0 16px rgba(233,30,99,0.08);
}

/* Stats Bar */
.cm-drip-stats-bar {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.cm-drip-stat-card {
  flex: 1;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 0.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.45s var(--ease);
}

.cm-drip-stat-card.show {
  opacity: 1;
  transform: translateY(0);
}

.cm-drip-stat-val {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cm-drip-green { color: var(--green); }
.cm-drip-pink { color: var(--pink-400); }
.cm-drip-blue { color: var(--blue); }

.cm-drip-stat-label {
  font-size: 0.8rem;
  color: #52525b;
  font-family: var(--font-h);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.1rem;
}

/* V5: Open Rate Badge (replaces old stats bar) */
.cm-drip-open-rate-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 12px;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.5s var(--ease);
}

.cm-drip-open-rate-badge.show {
  opacity: 1;
  transform: translateY(0);
}

.cm-drip-open-rate-val {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
}

.cm-drip-open-rate-label {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(16,185,129,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Replay */
.cm-drip-replay {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  z-index: 20;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  color: #52525b;
}

.cm-drip-replay.show {
  opacity: 1;
}

.cm-drip-replay:hover {
  color: #a1a1aa;
  border-color: rgba(255,255,255,0.15);
}

.cm-drip-replay svg {
  width: 9px;
  height: 9px;
}

/* --- Responsive: Tablet (900px) --- */
@media (max-width: 900px) {
  :root {
    --section-py: 80px;
    --container-px: 20px;
  }

  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .ig-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ig-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Funnel Composing Tablet */
  .cm-funnel-stations {
    gap: 0.5rem;
    padding: 0;
  }

  .cm-funnel-ico {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .cm-funnel-ico svg {
    width: 18px;
    height: 18px;
  }

  .cm-funnel-title {
    font-size: 0.55rem;
  }

  .cm-funnel-sub {
    display: none;
  }

  .cm-funnel-conn-wrap {
    padding: 0 3rem;
    top: 22px;
  }

  .cm-funnel-result-bar {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .cm-funnel-tooltip {
    font-size: 0.5rem;
  }

  /* V5: IG Chat Tablet */
  .cm-ig-chat {
    max-width: 380px;
  }

  /* V5: Content Studio Tablet – already single column */

  /* Newsletter Drip Composing Tablet */
  .cm-drip-stats-bar {
    flex-wrap: wrap;
  }

  .cm-drip-stat-card {
    min-width: calc(50% - 0.3rem);
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 4rem 0;
  }

  .feature-block.reverse {
    direction: ltr;
    grid-template-columns: 1fr;
  }

  .feature-block-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .compare-table {
    font-size: 0.8rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5,5,6,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 80px 40px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links .nav-link {
    font-size: 1.25rem;
    color: var(--t-w);
  }

  .nav-links .nav-cta {
    margin-left: 0;
    margin-top: 16px;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .pricing-detail-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .addon-grid {
    grid-template-columns: 1fr;
  }

  .procon-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 120px 0 48px;
  }

  .feature-hero {
    padding: 120px 0 0;
  }

  .feature-detail-grid {
    grid-template-columns: 1fr;
  }

  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* --- Responsive: V5 IG Chat Mobile (768px) --- */
@media (max-width: 768px) {
  .cm-ig-chat {
    max-width: 100%;
    min-height: 460px;
    padding: 1rem;
  }

  .cm-avatar-visual {
    min-height: 350px;
  }

  .cm-avatar-circle {
    width: 56px;
    height: 56px;
  }

  .cm-avatar-circle svg {
    width: 22px;
    height: 22px;
  }

  .cm-avatar-card-icon {
    width: 40px;
    height: 40px;
  }

  .cm-avatar-card-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* --- Responsive: Mobile (600px) --- */
@media (max-width: 600px) {
  :root {
    --section-py: 60px;
    --container-px: 16px;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-float-card {
    display: none;
  }

  .module-grid {
    grid-template-columns: 1fr;
  }

  .funnel-step {
    padding: 20px;
    gap: 16px;
  }

  /* Funnel Composing Mobile */
  .cm-funnel-stations {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .cm-funnel-station {
    max-width: 90px;
  }

  .cm-funnel-ico {
    width: 40px;
    height: 40px;
  }

  .cm-funnel-ico svg {
    width: 16px;
    height: 16px;
  }

  .cm-funnel-conn-wrap {
    display: none;
  }

  .cm-funnel-wrap {
    padding: 1.5rem 0.75rem 1.5rem;
  }

  .cm-funnel-result-bar {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-detail-card {
    padding: 32px 24px;
  }

  .addon-card {
    flex-direction: column;
    gap: 16px;
  }

  .verdict-box {
    padding: 32px 24px;
  }

  .breadcrumb {
    padding: 90px 0 0;
  }

  .page-hero {
    padding: 110px 0 40px;
  }

  .feature-hero {
    padding: 110px 0 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 24px 16px;
  }

  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .integration-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PHASE 5: Contact, About, Resources, Legal
   ============================================ */

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--t-w3);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5px;
  color: var(--pink-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item div h5 {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-item div p {
  color: var(--t-w3);
  font-size: 0.9rem;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--t-w2);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid var(--bord-d2);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-b);
  font-size: 0.95rem;
  color: var(--t-w);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink-500);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--t-w4);
  margin-top: -8px;
}

.form-success,
.form-error {
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-b);
}

.form-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--green);
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--red);
}

/* --- About Page --- */
.about-mission {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-mission p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--t-w2);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--dark-2);
  border: 1px solid var(--bord-d);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s, border-color 0.2s;
}

.value-card:hover {
  transform: translateY(-2px);
  border-color: var(--bord-d2);
}

.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-glow);
  margin-bottom: 20px;
}

.value-card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5px;
  color: var(--pink-500);
}

.value-card h4 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--t-w3);
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.about-stat {
  padding: 32px 16px;
}

.about-stat-num {
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pink-500);
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 0.9rem;
  color: var(--t-b3);
}

/* --- Resource Hub --- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.resource-card {
  background: var(--light-0);
  border: 1px solid var(--bord-l);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-2px);
  border-color: var(--bord-l2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.resource-card-thumb {
  height: 200px;
  background: var(--light-2);
  position: relative;
  overflow: hidden;
}

.resource-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233,30,99,0.05), transparent);
}

.resource-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-card-tag {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pink-500);
  margin-bottom: 10px;
}

.resource-card-body h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  color: var(--t-b);
  margin-bottom: 10px;
  line-height: 1.4;
}

.resource-card-body p {
  color: var(--t-b3);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.resource-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--bord-l);
  font-size: 0.8rem;
  color: var(--t-b4);
}

.resource-card-meta svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.5px;
}

/* --- Article Page --- */
.article-header {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--t-w3);
}

.article-meta svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.5px;
}

.article-content {
  max-width: 760px;
  margin: 0 auto;
}

.article-content h2 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  margin: 48px 0 16px;
  color: #ffffff;
}

.article-content h3 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  margin: 32px 0 12px;
  color: #ffffff;
}

.article-content p {
  color: #d4d4d8;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}

.article-content ul,
.article-content ol {
  color: #d4d4d8;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content strong {
  color: #ffffff;
  font-weight: 600;
}

.article-content a {
  color: var(--pink-400);
}

.article-content blockquote {
  border-left: 3px solid var(--pink-500);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--light-2);
  border-radius: 0 10px 10px 0;
}

.article-content blockquote p {
  color: var(--t-b2);
  margin: 0;
  font-style: italic;
}

.article-cta-box {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin: 48px 0;
}

.article-cta-box h3 {
  font-family: var(--font-h);
  color: #ffffff;
  margin: 0 0 12px;
}

.article-cta-box p {
  color: #a1a1aa;
  margin-bottom: 20px;
}

.article-related {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.article-related h3 {
  margin-top: 0;
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  margin: 40px 0 16px;
  color: var(--t-b);
}

.legal-content h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  margin: 28px 0 10px;
  color: var(--t-b);
}

.legal-content p {
  color: var(--t-b2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  color: var(--t-b2);
  line-height: 1.8;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--pink-500);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--pink-400);
}

/* --- Phase 5 Responsive: 900px --- */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .resource-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Phase 5 Responsive: 600px --- */
@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 24px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-stat-num {
    font-size: 2rem;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-card-thumb {
    height: 160px;
  }

  .article-content h2 {
    font-size: 1.3rem;
  }
}
