/* ──────────────────────────────────────────────────────────────────
   Origin-anchored Morph Modal — cinematic edition
   ────────────────────────────────────────────────────────────────── */

/* Backdrop ----------------------------------------------------------- */
.morph-backdrop {
  position: fixed; inset: 0;
  background: rgba(8, 6, 18, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  z-index: 100;
  pointer-events: none;
  transition: background 0.55s cubic-bezier(.2,.8,.2,1), backdrop-filter 0.55s cubic-bezier(.2,.8,.2,1);
}
.morph-backdrop.open {
  background: rgba(6, 4, 14, 0.72);
  backdrop-filter: blur(22px) saturate(1.1);
  -webkit-backdrop-filter: blur(22px) saturate(1.1);
  pointer-events: auto;
}

/* Modal shell — fixed, transformed via JS for FLIP --------------------- */
.morph-modal {
  position: fixed;
  top: 0; left: 0;
  z-index: 101;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 30% -10%, rgba(168,85,247,0.14), transparent 70%),
    radial-gradient(ellipse 700px 360px at 110% 110%, rgba(212,168,75,0.10), transparent 70%),
    linear-gradient(180deg, #1a1426 0%, #0e0918 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 40px 100px -24px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
  will-change: transform, width, height, border-radius;
  /* spring-ish curve */
  transition:
    transform 0.62s cubic-bezier(.16,1,.32,1),
    width 0.62s cubic-bezier(.16,1,.32,1),
    height 0.62s cubic-bezier(.16,1,.32,1),
    border-radius 0.5s cubic-bezier(.2,.85,.2,1),
    opacity 0.4s ease;
  display: flex;
  flex-direction: column;
}
.morph-modal.entering { transition: none; }
.morph-modal.full { border-radius: 0; border: none; }
.morph-modal.dragging { transition: none; }

/* Close button ---------------------------------------------------------- */
.morph-close {
  position: fixed;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(20, 14, 32, 0.72);
  border: 1px solid rgba(255,255,255,0.10);
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.25s, transform 0.3s, border-color 0.25s;
  z-index: 110;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.morph-close:hover {
  background: rgba(30, 22, 48, 0.85);
  border-color: rgba(212,168,75,0.45);
  transform: rotate(90deg);
}
.morph-close svg { width: 16px; height: 16px; }

/* Inner scroll region --------------------------------------------------- */
.morph-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.12) transparent;
}
.morph-body::-webkit-scrollbar { width: 8px; }
.morph-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.10); border-radius: 4px; }
.morph-body::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.18); }

/* Drag-handle (mobile) ------------------------------------------------- */
.morph-grip {
  display: none;
  width: 44px; height: 4px;
  background: rgba(255,255,255,0.20);
  border-radius: 2px;
  margin: 12px auto 0;
}
@media (max-width: 720px) {
  .morph-grip { display: block; }
}

/* ──────────────────────────────────────────────────────────────────
   Teaser content (compact preview before "Mehr")
   ────────────────────────────────────────────────────────────────── */
.teaser {
  padding: 56px 56px 44px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Staggered entrance */
.t-stagger { opacity: 0; transform: translateY(10px); animation: stagIn 0.55s cubic-bezier(.2,.85,.2,1) forwards; }
.t-stagger[data-i="0"] { animation-delay: 0.20s; }
.t-stagger[data-i="1"] { animation-delay: 0.27s; }
.t-stagger[data-i="2"] { animation-delay: 0.34s; }
.t-stagger[data-i="3"] { animation-delay: 0.41s; }
.t-stagger[data-i="4"] { animation-delay: 0.48s; }
.t-stagger[data-i="5"] { animation-delay: 0.55s; }
.t-stagger[data-i="6"] { animation-delay: 0.62s; }
@keyframes stagIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.teaser-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: flex; align-items: center; gap: 12px;
}
.teaser-eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold-soft);
  display: inline-block;
}

.teaser-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
.teaser-title em { color: var(--gold-soft); font-style: italic; font-weight: 300; }

.teaser-lead {
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.6;
  max-width: 60ch;
  margin: 0;
}

/* Hero block = mockup container */
.teaser-hero {
  position: relative;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 30%, rgba(168,85,247,0.30), transparent 60%),
              radial-gradient(ellipse at 80% 70%, rgba(212,168,75,0.22), transparent 60%),
              #1a1430;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  isolation: isolate;
}
.teaser-hero[data-tone="gold"] {
  background: radial-gradient(ellipse at 30% 30%, rgba(212,168,75,0.35), transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(168,85,247,0.18), transparent 60%),
              #18132c;
}
.teaser-hero-tag {
  position: absolute;
  bottom: 14px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.55);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  z-index: 2;
}

/* Points */
.teaser-points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  margin: 0; padding: 0;
}
.teaser-points li {
  display: flex; gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
}
.teaser-points li::before {
  content: "→";
  color: var(--gold);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

/* Stats */
.teaser-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.teaser-stat-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 36px;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.teaser-stat-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Actions */
.teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.teaser-expand {
  appearance: none;
  border: 1px solid rgba(212,168,75,0.45);
  background: linear-gradient(135deg, rgba(212,168,75,0.20), rgba(168,85,247,0.12));
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.2,.85,.2,1);
  display: inline-flex; align-items: center; gap: 12px;
  position: relative;
  overflow: hidden;
}
.teaser-expand::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,168,75,0.0), rgba(212,168,75,0.18));
  opacity: 0;
  transition: opacity 0.3s;
}
.teaser-expand:hover { transform: translateY(-1px); border-color: var(--gold); box-shadow: 0 10px 28px -8px rgba(212,168,75,0.4); }
.teaser-expand:hover::before { opacity: 1; }
.teaser-expand svg { width: 14px; height: 14px; transition: transform 0.3s; position: relative; }
.teaser-expand:hover svg { transform: translateX(4px); }

.teaser-secondary {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: transparent;
  color: var(--ink-dim);
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex; align-items: center;
}
.teaser-secondary:hover {
  border-color: rgba(255,255,255,0.22);
  color: var(--ink);
}

/* ──────────────────────────────────────────────────────────────────
   Fullscreen page-in-modal
   ────────────────────────────────────────────────────────────────── */
.morph-modal.full .teaser { display: none; }

.morph-page { padding: 0; opacity: 0; animation: pageIn 0.5s 0.18s cubic-bezier(.2,.85,.2,1) forwards; }
@keyframes pageIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Sticky internal header */
.morph-page-stick {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(14, 9, 24, 0.80);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 16px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.mps-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mps-title em { color: var(--gold-soft); font-style: italic; font-weight: 300; }
.mps-nav {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.mps-nav::-webkit-scrollbar { display: none; }
.mps-nav button {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.06);
  background: transparent;
  color: var(--ink-dim);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s;
}
.mps-nav button:hover {
  color: var(--ink);
  border-color: rgba(255,255,255,0.18);
}
.mps-nav button.active {
  color: var(--gold-soft);
  border-color: rgba(212,168,75,0.4);
  background: rgba(212,168,75,0.08);
}

.morph-page-hero {
  padding: 88px 64px 72px;
  position: relative;
  overflow: hidden;
}
.morph-page-hero::before {
  content: "";
  position: absolute;
  top: -25%; left: 25%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(168,85,247,0.20), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.morph-page-hero::after {
  content: "";
  position: absolute;
  bottom: -30%; right: -10%;
  width: 50%; height: 70%;
  background: radial-gradient(ellipse, rgba(212,168,75,0.16), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.morph-page-hero > * { position: relative; }

.morph-page-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.morph-page-eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold-soft);
}

.morph-page-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 18ch;
  margin: 0;
}
.morph-page-title em { color: var(--gold-soft); font-style: italic; font-weight: 300; }
.morph-page-lead {
  margin: 32px 0 0;
  color: var(--ink-dim);
  font-size: 19px;
  line-height: 1.55;
  max-width: 64ch;
}

.morph-page-section {
  padding: 72px 64px;
  border-top: 1px solid rgba(255,255,255,0.04);
  scroll-margin-top: 76px;
}
.morph-page-section.no-border { border-top: none; }

.morph-page-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 36px;
  max-width: 22ch;
}
.morph-page-h2 em { color: var(--gold-soft); font-style: italic; font-weight: 300; }

.morph-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.morph-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.morph-card {
  padding: 30px 32px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.35s cubic-bezier(.2,.85,.2,1);
}
.morph-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(212,168,75,0.22);
  transform: translateY(-2px);
}
.morph-card-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 10px;
}
.morph-card-desc {
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.morph-cta {
  padding: 80px 64px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(212,168,75,0.04));
  border-top: 1px solid rgba(255,255,255,0.04);
}
.morph-cta-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 36px;
  line-height: 1.05;
}
.morph-cta-title em { color: var(--gold-soft); font-style: italic; font-weight: 300; }

/* Responsive ----------------------------------------------------------- */
@media (max-width: 720px) {
  .teaser { padding: 48px 24px 32px; }
  .teaser-points { grid-template-columns: 1fr; }
  .teaser-hero { height: 180px; }
  .morph-page-stick { padding: 14px 20px; }
  .mps-title { font-size: 14px; }
  .morph-page-hero { padding: 72px 24px 56px; }
  .morph-page-section { padding: 56px 24px; }
  .morph-cta { padding: 56px 24px; }
  .morph-grid-2, .morph-grid-3 { grid-template-columns: 1fr; }
  .morph-close { top: 16px; right: 16px; }
}

/* Body lock when modal open */
body.modal-open { overflow: hidden; }

/* Subtle button affordance */
[data-modal] { cursor: pointer; }


/* ──────────────────────────────────────────────────────────────────
   Mockups (in teaser-hero)
   ────────────────────────────────────────────────────────────────── */
.mock {
  position: relative;
  width: 78%;
  max-width: 460px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  background: rgba(14, 10, 24, 0.85);
  border: 1px solid rgba(255,255,255,0.08);
  transform: translateY(10px);
}
.mock-bar {
  height: 28px;
  background: rgba(20, 14, 34, 0.9);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.mock-dot:nth-child(1) { background: rgba(255, 95, 86, 0.7); }
.mock-dot:nth-child(2) { background: rgba(255, 189, 46, 0.7); }
.mock-dot:nth-child(3) { background: rgba(40, 200, 64, 0.7); }
.mock-url {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}
.mock-canvas {
  padding: 16px;
  min-height: 130px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}

/* Browser canvas (web service) */
.mock-canvas-web .mw-h1 { width: 50%; height: 12px; border-radius: 3px; background: linear-gradient(90deg, var(--gold-soft), transparent 70%); margin-bottom: 8px; }
.mock-canvas-web .mw-h2 { width: 70%; height: 8px; border-radius: 3px; background: rgba(255,255,255,0.10); margin-bottom: 16px; }
.mock-canvas-web .mw-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mock-canvas-web .mw-cell { height: 60px; border-radius: 6px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.05); }
.mock-canvas-web .mw-cell:nth-child(2) { background: linear-gradient(135deg, rgba(168,85,247,0.18), rgba(212,168,75,0.10)); }

/* Dashboard canvas (CRM/ERP) */
.mock-canvas-dash {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  padding: 12px;
  min-height: 150px;
}
.md-side { display: flex; flex-direction: column; gap: 6px; padding: 4px; background: rgba(255,255,255,0.02); border-radius: 6px; }
.md-side-row { height: 8px; background: rgba(255,255,255,0.08); border-radius: 2px; }
.md-side-row:nth-child(1) { background: rgba(212,168,75,0.5); width: 80%; }
.md-main { display: flex; flex-direction: column; gap: 10px; }
.md-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.md-stat { padding: 6px 8px; background: rgba(255,255,255,0.04); border-radius: 4px; display: flex; flex-direction: column; gap: 4px; }
.md-stat span { width: 60%; height: 5px; background: rgba(255,255,255,0.16); border-radius: 2px; }
.md-stat b { width: 80%; height: 10px; background: var(--gold-soft); border-radius: 2px; }
.md-chart { height: 50px; background: rgba(255,255,255,0.02); border-radius: 4px; padding: 4px; color: var(--gold-soft); }
.md-chart svg { width: 100%; height: 100%; }
.md-table { display: flex; flex-direction: column; gap: 4px; }
.md-tr { height: 8px; background: rgba(255,255,255,0.05); border-radius: 2px; }

/* Phone mockup */
.mock-phone {
  width: 150px;
  height: 240px;
  border-radius: 26px;
  background: #0c0816;
  border: 8px solid #1a1326;
  position: relative;
  padding: 14px 10px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.mp-notch { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 50px; height: 14px; background: #0c0816; border-radius: 0 0 8px 8px; }
.mp-screen { display: flex; flex-direction: column; gap: 8px; height: 100%; padding-top: 12px; }
.mp-status { display: flex; justify-content: space-between; padding: 0 4px; }
.mp-status span { width: 20px; height: 5px; background: rgba(255,255,255,0.20); border-radius: 2px; }
.mp-card { background: linear-gradient(135deg, rgba(168,85,247,0.18), rgba(212,168,75,0.10)); padding: 10px; border-radius: 10px; display: flex; flex-direction: column; gap: 6px; }
.mp-card div { height: 5px; border-radius: 2px; background: rgba(255,255,255,0.18); }
.mp-card div:first-child { background: var(--gold-soft); width: 50%; }
.mp-card-2 { background: rgba(255,255,255,0.04); }
.mp-tab { margin-top: auto; display: flex; justify-content: space-around; padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.mp-tab span { width: 18px; height: 18px; border-radius: 4px; background: rgba(255,255,255,0.10); }
.mp-tab span:nth-child(2) { background: rgba(212,168,75,0.5); }

/* Workflow */
.mock-flow { background: rgba(14, 10, 24, 0.85); padding: 0; border-radius: 12px; }
.mock-flow svg { width: 100%; height: 160px; }

/* Pricing card mockup */
.mock-card {
  width: 240px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(20,14,34,0.95), rgba(14,10,24,0.95));
  border-radius: 14px;
  border: 1px solid rgba(212,168,75,0.18);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.mc-badge {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--violet-bright));
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.mc-price { display: flex; align-items: baseline; gap: 4px; font-family: var(--font-display); font-weight: 300; color: var(--ink); }
.mc-currency { font-size: 18px; color: var(--ink-dim); }
.mc-num { font-size: 40px; letter-spacing: -0.02em; }
.mc-suffix { font-size: 12px; color: var(--ink-mute); margin-left: 4px; font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.mc-rows { display: flex; flex-direction: column; gap: 8px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); }
.mc-rows div { height: 6px; background: rgba(255,255,255,0.10); border-radius: 2px; width: 90%; }

/* Case mockup */
.mock-case {
  width: 90%;
  height: 180px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: #1a1426;
}
.mcase-grid {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.mcase-cell { background: linear-gradient(135deg, rgba(168,85,247,0.4), rgba(168,85,247,0.1)); }
.mock-case[data-tone="gold"] .mcase-cell { background: linear-gradient(135deg, rgba(212,168,75,0.4), rgba(212,168,75,0.1)); }
.mcase-cell-2 { background: linear-gradient(135deg, rgba(212,168,75,0.5), transparent); grid-row: span 2; }
.mock-case[data-tone="gold"] .mcase-cell-2 { background: linear-gradient(135deg, rgba(168,85,247,0.5), transparent); }
.mcase-cell-3 { background: linear-gradient(135deg, rgba(168,85,247,0.6), rgba(212,168,75,0.3)); }
.mcase-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
}
.mcase-numbers { display: flex; gap: 24px; }
.mcase-numbers > div { display: flex; flex-direction: column; }
.mcase-numbers b { font-family: var(--font-display); font-weight: 300; font-size: 22px; color: var(--gold-soft); letter-spacing: -0.02em; }
.mcase-numbers span { font-family: var(--font-mono); font-size: 9px; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; text-transform: uppercase; }

/* Industry mockup */
.mock-industry {
  width: auto;
  padding: 32px 48px;
  background: linear-gradient(180deg, rgba(20,14,34,0.85), rgba(14,10,24,0.85));
  border-radius: 16px;
  border: 1px solid rgba(212,168,75,0.18);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  color: var(--gold-soft);
}
.mi-label { font-family: var(--font-display); font-weight: 300; font-size: 22px; color: var(--ink); letter-spacing: -0.01em; }

/* Calendar mockup */
.mock-cal {
  width: 280px;
  padding: 18px;
  background: rgba(20, 14, 34, 0.92);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 12px;
}
.mcal-h { display: flex; justify-content: space-between; align-items: center; }
.mcal-month { font-family: var(--font-display); font-weight: 300; font-size: 14px; color: var(--ink); }
.mcal-arrows { display: flex; gap: 8px; color: var(--ink-mute); font-size: 14px; }
.mcal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.mcal-dow { font-family: var(--font-mono); font-size: 8.5px; color: var(--ink-mute); text-align: center; padding: 2px 0; }
.mcal-day { font-family: var(--font-mono); font-size: 9.5px; color: var(--ink-dim); text-align: center; padding: 4px 0; border-radius: 3px; }
.mcal-day.available { color: var(--ink); background: rgba(212,168,75,0.10); }
.mcal-day.today { background: var(--gold); color: #100a1e; }
.mcal-slot {
  display: flex; gap: 12px; align-items: center;
  padding: 8px 12px; border-radius: 6px;
  background: rgba(212,168,75,0.10);
  border: 1px solid rgba(212,168,75,0.25);
}
.mcal-slot-time { font-family: var(--font-mono); font-size: 11px; color: var(--gold-soft); font-weight: 500; }
.mcal-slot-dur { font-family: var(--font-mono); font-size: 9.5px; color: var(--ink-dim); letter-spacing: 0.06em; text-transform: uppercase; }

/* FAQ mockup */
.mock-faq {
  width: 86%;
  display: flex; flex-direction: column; gap: 8px;
}
.mfaq-row { padding: 12px 16px; border-radius: 8px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); }
.mfaq-row.mfaq-open { background: rgba(212,168,75,0.08); border-color: rgba(212,168,75,0.25); }
.mfaq-q { display: flex; justify-content: space-between; align-items: center; }
.mfaq-q > span:first-child { width: 70%; height: 8px; background: rgba(255,255,255,0.18); border-radius: 2px; }
.mfaq-toggle { font-family: var(--font-mono); font-size: 14px; color: var(--gold-soft); }
.mfaq-a { display: flex; flex-direction: column; gap: 4px; padding-top: 8px; }
.mfaq-a span { height: 6px; background: rgba(255,255,255,0.10); border-radius: 2px; width: 100%; }

/* SEO mockup — Google search result + ranking trend */
.mock-seo {
  width: 88%;
  max-width: 380px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(28, 22, 44, 0.95), rgba(14, 10, 24, 0.95));
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; flex-direction: column; gap: 10px;
}
.ms-search { display: flex; align-items: center; gap: 10px; padding: 8px 12px; background: rgba(255, 255, 255, 0.04); border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.08); }
.ms-g { font-family: "Geist", sans-serif; font-weight: 600; font-size: 14px; background: linear-gradient(45deg, #4285f4, #ea4335 35%, #fbbc04 60%, #34a853); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ms-input { font-family: var(--font-mono); font-size: 9px; color: rgba(255, 255, 255, 0.55); letter-spacing: 0.04em; flex: 1; }
.ms-results { display: flex; flex-direction: column; gap: 6px; }
.ms-result { display: flex; gap: 10px; padding: 6px; border-radius: 6px; align-items: flex-start; }
.ms-result.ms-top { background: rgba(212, 168, 75, 0.10); border: 1px solid rgba(212, 168, 75, 0.25); }
.ms-rank { width: 18px; height: 18px; border-radius: 999px; background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.6); display: grid; place-items: center; font-family: var(--font-mono); font-size: 9px; flex-shrink: 0; }
.ms-result.ms-top .ms-rank { background: var(--gold); color: #100a1e; font-weight: 600; }
.ms-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.ms-title { height: 8px; width: 80%; border-radius: 2px; background: var(--gold-soft); }
.ms-result:not(.ms-top) .ms-title { background: rgba(255, 255, 255, 0.20); }
.ms-url { height: 5px; width: 50%; border-radius: 2px; background: rgba(120, 200, 120, 0.45); }
.ms-snippet { height: 4px; width: 95%; border-radius: 2px; background: rgba(255, 255, 255, 0.10); margin-top: 2px; }
.ms-chart { position: relative; height: 36px; padding-top: 4px; }
.ms-chart svg { width: 100%; height: 100%; }
.ms-chart-tag { position: absolute; top: 2px; right: 4px; font-family: var(--font-mono); font-size: 10px; color: var(--gold-soft); letter-spacing: 0.06em; }

/* Print mockup — magazine spread with binding */
.mock-print {
  width: 86%;
  max-width: 420px;
  position: relative;
  perspective: 800px;
}
.mpr-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f4ede1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  transform: rotateX(2deg);
  position: relative;
}
.mpr-spread::after {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 14px; transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04) 40%, rgba(0, 0, 0, 0.04) 60%, rgba(0, 0, 0, 0.18));
}
.mpr-page { padding: 16px 14px; min-height: 130px; display: flex; flex-direction: column; gap: 6px; color: #2a1f15; }
.mpr-left { padding-right: 18px; }
.mpr-right { padding-left: 18px; }
.mpr-eyebrow { font-family: var(--font-mono); font-size: 7.5px; letter-spacing: 0.2em; text-transform: uppercase; color: #b08552; }
.mpr-title { font-family: var(--font-display); font-weight: 300; font-size: 22px; line-height: 1; letter-spacing: -0.02em; margin-top: 4px; }
.mpr-rule { width: 28px; height: 1px; background: #b08552; margin-top: 4px; }
.mpr-paragraph { display: flex; flex-direction: column; gap: 3px; margin-top: 4px; }
.mpr-paragraph span { height: 3px; background: rgba(42, 31, 21, 0.25); border-radius: 1px; width: 100%; }
.mpr-image { height: 60px; background: linear-gradient(135deg, #b08552, #2a1f15); border-radius: 2px; }
.mpr-caption { height: 4px; width: 50%; background: rgba(42, 31, 21, 0.4); border-radius: 1px; margin-top: 4px; }
.mpr-pagenum { font-family: var(--font-mono); font-size: 8px; color: #b08552; text-align: right; margin-top: auto; letter-spacing: 0.1em; }

/* ──────────────────────────────────────────────────────────────────
   Mega Menu — services dropdown
   ────────────────────────────────────────────────────────────────── */
.mega-trigger {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mega-trigger svg { width: 10px; height: 10px; transition: transform 0.3s; opacity: 0.6; }
.mega-trigger.open svg { transform: rotate(180deg); }

.mega-menu {
  position: fixed;
  top: 0; left: 0;
  width: 880px; max-width: calc(100vw - 32px);
  background: rgba(14, 10, 26, 0.94);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.03);
  padding: 28px;
  z-index: 90;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.2,.85,.2,1), transform 0.3s cubic-bezier(.2,.85,.2,1);
  isolation: isolate;
}
.mega-menu::before {
  content: "";
  position: absolute;
  top: -25%; left: 10%;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.16), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
.mega-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.mega-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  align-items: start;
  transition: background 0.25s, transform 0.25s;
  position: relative;
  cursor: pointer;
}
.mega-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.mega-item:hover .mega-arrow {
  opacity: 1; transform: translate(2px, -2px);
}
.mega-item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--gold-soft);
}
.mega-item.violet .mega-item-icon { background: rgba(168, 85, 247, 0.10); border-color: rgba(168, 85, 247, 0.25); color: rgba(212, 192, 255, 0.95); }
.mega-item.gold .mega-item-icon { background: rgba(212, 168, 75, 0.10); border-color: rgba(212, 168, 75, 0.30); }
.mega-item-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.mega-item-title .mi-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 7px;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 400;
}
.mega-item-desc {
  margin-top: 4px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-mute);
  max-width: 38ch;
}
.mega-arrow {
  width: 16px; height: 16px;
  color: var(--gold-soft);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  margin-top: 4px;
}
.mega-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.mega-footer-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.mega-footer a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-decoration: none;
  transition: color 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.mega-footer a:hover { color: var(--gold); }

@media (max-width: 760px) {
  .mega-menu { width: calc(100vw - 24px); padding: 18px; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-item-desc { display: none; }
}

