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

:root {
  --md-lavender: #714697;
  --md-lavender-deep: #251731;
  --md-lavender-pale: #e8e3f3;
  --md-orange: #ff9637;
  --md-red: #fe460f;
  --n-0: #fff;
  --n-50: #fafafa;
  --n-100: #f5f5f7;
  --n-300: #b4bdbf;
  --n-500: #6c757d;
  --n-700: #1e2d4a;
  --n-900: #0e1726;
  --line-1: rgba(17,16,16,.07);
  --line-2: rgba(17,16,16,.14);
  --success: #1e6b57;
  --shadow-card: 0 4px 10px rgba(0,0,0,.1);
  --shadow-pop: 0 4px 15px rgba(0,0,0,.15);
  --shadow-deep: 17.7px 13.3px 35.4px rgba(14,31,42,.2);
  --r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-xl: 20px; --r-2xl: 25px; --r-pill: 999px;
  --t-fast: 150ms; --t-base: 250ms;
  --ease-std: cubic-bezier(.2,.8,.2,1);
}

/* ═══ RESET / BASE ═══ */
*, *::before, *::after { box-sizing: border-box; }
.maildesk-price-page { font-family: 'Inter', system-ui, sans-serif; font-size: 16px; line-height: 1.5; color: var(--n-900); -webkit-font-smoothing: antialiased; }
.maildesk-price-page img, .maildesk-price-page svg { display: block; max-width: 100%; }
.maildesk-price-page a { text-decoration: none; }
.maildesk-price-page button { font: inherit; cursor: pointer; }
.mdp-container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 700px) { .mdp-container { padding: 0 20px; } }
section[id] { scroll-margin-top: 100px; }

/* ═══ HEADER ═══ */
.mit-nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-1); padding: 18px 0; }
.mit-nav__inner { max-width: 1568px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 48px; }
.mit-nav__brand img { height: 50px; width: auto; }
.mit-nav__menu { display: flex; gap: 28px; align-items: center; justify-content: center; }
.mit-nav__menu a { font-weight: 400; font-size: 16px; color: var(--n-900); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; transition: color var(--t-fast); }
.mit-nav__menu a:hover { color: var(--md-lavender); }
.mit-nav__caret { display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid var(--n-900); }
.mit-nav__actions { display: flex; gap: 12px; align-items: center; }
.mit-nav__icon-btn { width: 42px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 100px; }
.mit-nav__icon-btn:hover { background: var(--n-100); }
.mit-nav__lang { height: 48px; padding: 0 14px; background: transparent; border: none; border-radius: 8px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 16px; color: var(--n-900); }
.mit-nav__lang:hover { background: var(--n-100); }
.mit-nav__lang img { border-radius: 50%; box-shadow: 1px 1px 1px rgba(0,0,0,.43); width: 16px; height: 16px; }
.mit-nav__cta { height: 48px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; font-weight: 600; font-size: 16px; color: var(--n-900); white-space: nowrap; transition: filter var(--t-fast), transform var(--t-fast); }
.mit-nav__cta--soft { background: #ffe5cc; }
.mit-nav__cta--soft:hover { filter: brightness(.95); }
.mit-nav__cta--primary { background: rgba(254,70,15,.35); }
.mit-nav__cta--primary:hover { background: rgba(254,70,15,.5); transform: translateY(-1px); }
@media (max-width: 1280px) { .mit-nav__menu { gap: 18px; } .mit-nav__menu a { font-size: 14px; } }
@media (max-width: 1100px) { .mit-nav__menu { gap: 10px; } .mit-nav__menu a { font-size: 13px; } .mit-nav__cta { padding: 0 12px; font-size: 14px; } }
@media (max-width: 900px) { .mit-nav__menu, .mit-nav__icon-btn { display: none; } .mit-nav__lang span:not(:first-child) { display: none; } .mit-nav__inner { gap: 16px; } }
@media (max-width: 700px) { .mit-nav__cta--soft { display: none; } .mit-nav__inner { padding: 0 16px; } }

/* ═══ BUTTONS ═══ */
.mdp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 48px; padding: 0 22px; border-radius: var(--r-md); font-size: 16px; font-weight: 600; transition: all var(--t-fast) var(--ease-std); border: 1px solid transparent; white-space: nowrap; text-decoration: none; }
.mdp-btn--primary { background: var(--md-lavender); color: #fff; }
.mdp-btn--primary:hover { background: #5d3680; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(113,70,151,.3); }
.mdp-btn--ghost { background: #fff; color: var(--n-900); border-color: var(--line-2); }
.mdp-btn--ghost:hover { border-color: var(--md-lavender); color: var(--md-lavender); }
.mdp-btn--lg { height: 56px; padding: 0 28px; font-size: 17px; }

/* ═══ HERO ═══ */
.mdp-hero { position: relative; padding: 88px 0 110px; overflow: hidden; isolation: isolate; background: radial-gradient(900px 600px at 88% -10%, rgba(255,150,55,.16) 0%, transparent 55%), radial-gradient(900px 700px at -10% 110%, rgba(113,70,151,.22) 0%, transparent 55%), linear-gradient(180deg, #faf7fd 0%, #f1eaf7 100%); }
.mdp-hero__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .mdp-hero__grid { grid-template-columns: 1fr; gap: 48px; } }
.mdp-hero__chip-new { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--md-lavender-pale); border-radius: var(--r-pill); padding: 5px 14px 5px 5px; font-size: 13px; font-weight: 500; color: var(--n-700); margin-bottom: 16px; box-shadow: var(--shadow-card); }
.mdp-hero__chip-new b { background: linear-gradient(135deg, var(--md-orange), var(--md-red)); color: #fff; padding: 4px 10px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.mdp-hero__chip-new svg { width: 14px; height: 14px; color: var(--md-lavender); }
.mdp-hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--md-lavender); padding: 6px 12px; background: var(--md-lavender-pale); border-radius: var(--r-pill); }
.mdp-hero__eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--md-lavender); }
.mdp-hero h1 { font-family: 'Inter', sans-serif; font-size: clamp(40px, 5.5vw, 64px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 700; color: var(--md-lavender-deep); text-transform: uppercase; margin: 20px 0 24px; }
.mdp-hero h1 em { font-style: normal; color: var(--md-lavender); }
.mdp-hero__sub { font-size: 20px; line-height: 1.55; color: var(--n-700); max-width: 560px; }
.mdp-hero__cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.mdp-hero__trust { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line-1); }
.mdp-hero__trust > div { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--n-500); font-weight: 500; }
.mdp-hero__trust svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }

/* Hero visual (right column) — layout по Figma 1:4 */
.mdp-hero__visual { position: relative; min-height: 560px; padding-top: 50px; }
/* Envelope — top right, rotated, behind card (z-index 1) */
.mdp-hero__envelope { position: absolute; top: -20px; right: -80px; width: 320px; height: 320px; opacity: .95; transform: rotate(-12.89deg); pointer-events: none; filter: drop-shadow(0 12px 30px rgba(254,70,15,.28)); z-index: 1; }
.mdp-hero__envelope img { width: 100%; height: 100%; }
/* Inbox preview — bottom-left of visual, rotated -4° */
.mdp-hero__inbox { position: absolute; z-index: 2; left: -30px; bottom: -10px; width: 280px; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-pop); padding: 14px 14px 10px; transform: rotate(-4deg); border: 1px solid var(--line-1); }
.mdp-hero__inbox-head { display: flex; align-items: center; gap: 6px; padding-bottom: 10px; border-bottom: 1px solid var(--line-1); margin-bottom: 10px; }
.mdp-hero__inbox-head i { display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--n-300); }
.mdp-hero__inbox-head i:nth-child(1) { background: #ff5f57; }
.mdp-hero__inbox-head i:nth-child(2) { background: #febc2e; }
.mdp-hero__inbox-head i:nth-child(3) { background: #28c840; }
.mdp-hero__inbox-head span { margin-left: auto; font-size: 11px; color: var(--n-500); font-weight: 600; }
.mdp-hero__inbox-row { display: flex; align-items: center; gap: 8px; padding: 7px 4px; border-radius: var(--r-sm); font-size: 11px; }
.mdp-hero__inbox-row.is-active { background: var(--md-lavender-pale); }
.mdp-hero__inbox-row .av { width: 22px; height: 22px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; flex-shrink: 0; }
.mdp-hero__inbox-row .who { flex: 1; min-width: 0; overflow: hidden; }
.mdp-hero__inbox-row .who b { display: block; font-size: 11px; font-weight: 600; color: var(--n-900); }
.mdp-hero__inbox-row .who span { font-size: 10px; color: var(--n-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.mdp-hero__inbox-row .pill { font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: var(--r-pill); background: var(--md-lavender-pale); color: var(--md-lavender); letter-spacing: 0.04em; }
.mdp-hero__inbox-row .pill--ok { background: rgba(30,107,87,.12); color: var(--success); }
.mdp-hero__inbox-row .pill--warn { background: rgba(255,150,55,.18); color: #b85a00; }
.mdp-hero__card { position: relative; z-index: 3; background: #fff; color: var(--n-900); border-radius: var(--r-xl); box-shadow: var(--shadow-deep); padding: 32px; border: 1px solid var(--line-1); transform: rotate(-1.2deg); margin-left: 110px; max-width: 380px; }
.mdp-hero__card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.mdp-hero__card-tier { font-family: 'Comfortaa', sans-serif; font-weight: 700; font-size: 16px; color: var(--md-lavender); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.mdp-hero__card-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 24px; color: var(--n-900); letter-spacing: -0.01em; }
.mdp-hero__card-tag { background: linear-gradient(135deg, #ff9637, #fe460f); color: #fff; font-size: 11px; font-weight: 700; padding: 6px 10px; border-radius: var(--r-sm); letter-spacing: 0.08em; text-transform: uppercase; }
.mdp-hero__card-price { display: flex; align-items: baseline; gap: 8px; margin: 4px 0 6px; }
.mdp-hero__card-price b { font-weight: 700; font-size: 40px; letter-spacing: -0.03em; line-height: 1; }
.mdp-hero__card-price span { color: var(--n-500); font-size: 16px; }
.mdp-hero__card-sub { color: var(--n-500); font-size: 14px; margin-bottom: 22px; }
.mdp-hero__card-cta { width: 100%; }
.mdp-hero__card-list { display: grid; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line-1); margin-top: 22px; }
.mdp-hero__card-list div { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--n-700); }
.mdp-hero__card-list svg { width: 16px; height: 16px; color: var(--md-lavender); flex-shrink: 0; }
/* Badge −17% — bottom-right of card, rotated +8°, sticks out */
.mdp-hero__badge-discount { position: absolute; z-index: 5; right: -30px; bottom: -30px; background: linear-gradient(135deg, var(--md-orange), var(--md-red)); color: #fff; width: 88px; height: 88px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-pop); transform: rotate(8deg); text-align: center; }
.mdp-hero__badge-discount b { font-size: 20px; line-height: 1; font-weight: 700; }
.mdp-hero__badge-discount span { font-size: 10px; opacity: .9; margin-top: 4px; line-height: 1.2; }
/* Chips DSGVO + 11 Module — INSIDE card top-right area, attached to card (rotate together) */
.mdp-hero__card-chip { position: absolute; z-index: 4; background: #fff; border: 1px solid var(--line-1); border-radius: var(--r-pill); padding: 7px 12px 7px 9px; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--n-900); box-shadow: var(--shadow-pop); white-space: nowrap; }
.mdp-hero__card-chip svg { width: 16px; height: 16px; flex-shrink: 0; }
.mdp-hero__card-chip--dsgvo { top: -18px; right: 24px; }
.mdp-hero__card-chip--dsgvo svg { color: var(--md-lavender); }
.mdp-hero__card-chip--modules { top: 35px; right: -22px; }
.mdp-hero__card-chip--modules svg { color: var(--md-orange); }
@media (max-width: 980px) {
  .mdp-hero__visual { min-height: 600px; padding-top: 60px; }
  .mdp-hero__envelope { width: 200px; height: 200px; top: 0; right: -40px; }
  .mdp-hero__inbox { left: 0; bottom: 0; transform: rotate(-4deg) scale(.85); }
  .mdp-hero__card { margin-left: 50px; max-width: 320px; }
}

/* ═══ SECTION SCAFFOLD ═══ */
.mdp-section { padding: 96px 0; }
.mdp-section--gray { background: var(--n-100); }
.mdp-section--lav { background: radial-gradient(900px 500px at 90% 0%, rgba(255,150,55,.06) 0%, transparent 60%), radial-gradient(900px 600px at 5% 100%, rgba(113,70,151,.1) 0%, transparent 55%), #f5f0fb; }
@media (max-width: 700px) { .mdp-section { padding: 64px 0; } }
.mdp-section__head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.mdp-section__head--left { text-align: left; max-width: 860px; margin: 0 0 48px; }
.mdp-section__head h2 { font-size: clamp(32px, 4.2vw, 44px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; margin: 16px 0 18px; }
.mdp-section__head p { font-size: 19px; line-height: 1.6; color: var(--n-700); margin: 0; }

/* ═══ TRUST STRIP ═══ */
.mdp-trust { border-top: 1px solid var(--line-1); border-bottom: 1px solid var(--line-1); background: #fff; }
.mdp-trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 28px 0; }
@media (max-width: 880px) { .mdp-trust__inner { grid-template-columns: repeat(2, 1fr); } }
.mdp-trust__item { display: flex; align-items: center; gap: 14px; }
.mdp-trust__item svg { width: 28px; height: 28px; color: var(--md-lavender); flex-shrink: 0; }
.mdp-trust__item b { display: block; font-size: 15px; font-weight: 600; }
.mdp-trust__item span { display: block; font-size: 13px; color: var(--n-500); margin-top: 2px; }

/* ═══ MODE CARDS (Abo vs Einmalkauf) ═══ */
.mdp-mode { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 880px) { .mdp-mode { grid-template-columns: 1fr; } }
.mdp-mode__card { background: #fff; border: 2px solid var(--line-1); border-radius: var(--r-xl); padding: 32px; position: relative; }
.mdp-mode__card--featured { border-color: var(--md-lavender); }
.mdp-mode__flag { position: absolute; top: -12px; left: 24px; background: var(--md-lavender); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: var(--r-pill); letter-spacing: 0.08em; text-transform: uppercase; }
.mdp-mode__card h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 6px; }
.mdp-mode__sub { font-size: 15px; color: var(--n-500); margin-bottom: 22px; }
.mdp-mode__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.mdp-mode__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.55; color: var(--n-700); }
.mdp-mode__list svg { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.mdp-mode__list .ok { color: var(--success); }
.mdp-mode__list .x { color: var(--n-300); }

/* ═══ BILLING TOGGLE ═══ */
.mdp-billing { display: flex; justify-content: center; margin-bottom: 48px; }
.mdp-billing__toggle { display: inline-flex; align-items: center; gap: 4px; background: #fff; border-radius: var(--r-pill); padding: 5px; }
.mdp-billing__toggle button { height: 40px; padding: 0 20px; border: none; background: transparent; border-radius: var(--r-pill); font-size: 15px; font-weight: 600; color: var(--n-500); display: flex; align-items: center; gap: 8px; transition: all var(--t-fast); }
.mdp-billing__toggle button.is-active { background: #fff; color: var(--n-900); box-shadow: var(--shadow-card); border: 1px solid var(--md-orange); }
.mdp-billing__save { background: rgba(30,107,87,.12); color: var(--success); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: var(--r-pill); }

/* ═══ TIER CARDS ═══ */
.mdp-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1240px; margin: 0 auto; align-items: stretch; }
@media (max-width: 980px) { .mdp-tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mdp-tiers { grid-template-columns: 1fr; } }
.mdp-tier { background: #fff; border: 1px solid var(--line-1); border-radius: var(--r-xl); padding: 28px 24px; display: flex; flex-direction: column; transition: transform var(--t-base), box-shadow var(--t-base); }
.mdp-tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.mdp-tier--featured { background: var(--md-lavender); color: #fff; border-color: var(--md-lavender); position: relative; box-shadow: 0 20px 50px -10px rgba(113,70,151,.45); }
.mdp-tier__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #ff9637, #fe460f); color: #fff; font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: var(--r-pill); letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; box-shadow: 0 4px 10px rgba(254,70,15,.35); }
.mdp-tier__name { font-family: 'Comfortaa', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--md-lavender); margin-bottom: 4px; }
.mdp-tier--featured .mdp-tier__name { color: var(--md-orange); }
.mdp-tier__tag { font-size: 14px; line-height: 1.45; color: var(--n-500); min-height: 42px; margin-bottom: 16px; }
.mdp-tier--featured .mdp-tier__tag { color: rgba(255,255,255,.75); }
.mdp-tier__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.mdp-tier__price b { font-weight: 700; font-size: 40px; line-height: 1; letter-spacing: -0.02em; }
.mdp-tier__price small { font-size: 15px; color: var(--n-500); font-weight: 500; }
.mdp-tier--featured .mdp-tier__price small { color: rgba(255,255,255,.7); }
.mdp-tier__alt { font-size: 13px; color: var(--n-500); margin-bottom: 22px; min-height: 20px; }
.mdp-tier--featured .mdp-tier__alt { color: rgba(255,255,255,.7); }
.mdp-tier__cta { width: 100%; }
.mdp-tier--featured .mdp-tier__cta { background: #fff; color: var(--md-lavender); }
.mdp-tier--featured .mdp-tier__cta:hover { background: var(--md-orange); color: #fff; }
.mdp-tier__divider { height: 1px; background: var(--line-1); margin: 24px 0 22px; }
.mdp-tier--featured .mdp-tier__divider { background: rgba(255,255,255,.18); }
.mdp-tier__includes { font-size: 13px; font-weight: 600; color: var(--n-500); margin-bottom: 12px; letter-spacing: 0.03em; }
.mdp-tier--featured .mdp-tier__includes { color: rgba(255,255,255,.7); }
.mdp-tier__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.mdp-tier__list li { display: grid; grid-template-columns: 16px 1fr; gap: 10px; align-items: start; font-size: 14.5px; line-height: 1.45; color: var(--n-700); }
.mdp-tier--featured .mdp-tier__list li { color: rgba(255,255,255,.92); }
.mdp-tier__list svg { width: 16px; height: 16px; margin-top: 3px; color: var(--md-lavender); }
.mdp-tier--featured .mdp-tier__list svg { color: var(--md-orange); }
.mdp-tier__list b { color: inherit; font-weight: 600; }
.mdp-tier__list .desc { display: block; font-size: 13px; color: var(--n-500); margin-top: 2px; font-weight: 400; }
.mdp-tier--featured .mdp-tier__list .desc { color: rgba(255,255,255,.7); }

.mdp-tiers__footnote { text-align: center; margin-top: 32px; color: var(--n-500); font-size: 15px; }

/* ═══ PERPETUAL CARDS ═══ */
.mdp-perp { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 900px) { .mdp-perp { grid-template-columns: 1fr; } }
.mdp-perp__card { position: relative; background: #fff; border: 1px solid var(--line-1); border-radius: var(--r-2xl); padding: 36px; box-shadow: var(--shadow-card); overflow: hidden; }
.mdp-perp__card--pro { border-color: var(--md-lavender); }
.mdp-perp__card--pro::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--md-orange), var(--md-red)); }
.mdp-perp__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.mdp-perp__crest { width: 56px; height: 56px; border-radius: var(--r-md); background: var(--md-lavender-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mdp-perp__crest--pro { background: linear-gradient(135deg, #ffe5cc, #ffc7a8); }
.mdp-perp__crest img { width: 36px; height: auto; }
.mdp-perp__flag { background: var(--md-lavender-pale); color: var(--md-lavender); font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: var(--r-pill); letter-spacing: 0.08em; text-transform: uppercase; }
.mdp-perp__card--pro .mdp-perp__flag { background: var(--md-orange); color: #fff; }
.mdp-perp__name { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 4px; }
.mdp-perp__code { color: var(--n-500); font-size: 14px; margin: 0 0 18px; font-family: 'JetBrains Mono', monospace; }
.mdp-perp__desc { font-size: 16px; line-height: 1.55; color: var(--n-700); margin: 0 0 26px; }
.mdp-perp__price-row { display: flex; align-items: baseline; gap: 12px; padding: 20px 0; border-top: 1px solid var(--line-1); border-bottom: 1px solid var(--line-1); margin-bottom: 24px; }
.mdp-perp__price { font-weight: 700; font-size: 40px; letter-spacing: -0.025em; line-height: 1; }
.mdp-perp__unit { color: var(--n-500); font-size: 14px; line-height: 1.4; }
.mdp-perp__unit b { color: var(--n-700); display: block; font-weight: 600; font-size: 15px; }
.mdp-perp__features { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.mdp-perp__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; color: var(--n-700); }
.mdp-perp__features svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--md-lavender); }
.mdp-perp__card--pro .mdp-perp__features svg { color: var(--md-orange); }
.mdp-perp__features b { color: var(--n-900); font-weight: 600; }
.mdp-perp__meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; padding: 16px; background: var(--n-100); border-radius: var(--r-md); }
.mdp-perp__meta div { text-align: center; }
.mdp-perp__meta b { display: block; font-size: 13px; color: var(--n-900); font-weight: 700; }
.mdp-perp__meta span { display: block; font-size: 11px; color: var(--n-500); margin-top: 2px; letter-spacing: 0.04em; text-transform: uppercase; }
.mdp-perp__cta { display: flex; gap: 10px; }
.mdp-perp__cta .mdp-btn { flex: 1; }
.mdp-perp__notice { margin-top: 18px; font-size: 12.5px; color: var(--n-500); text-align: center; line-height: 1.5; }
.mdp-perp__notice b { color: var(--n-700); }

/* ═══ COMPARISON TABLE ═══ */
.mdp-cmp-wrap { overflow-x: auto; border-radius: var(--r-xl); border: 1px solid var(--line-2); background: #fff; box-shadow: var(--shadow-card); }
.mdp-cmp { width: 100%; border-collapse: collapse; min-width: 920px; font-size: 15px; }
.mdp-cmp thead th { background: #fff; color: var(--n-900); font-weight: 700; font-size: 14px; padding: 24px 16px 20px; text-align: center; border-bottom: 2px solid var(--line-2); position: sticky; top: 0; }
.mdp-cmp thead th:first-child { text-align: left; padding-left: 24px; background: var(--md-lavender-pale); color: var(--md-lavender-deep); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.mdp-cmp thead th.col-feat { background: var(--md-lavender); color: #fff; position: relative; }
.mdp-cmp thead th.col-feat::after { content: "Empfohlen"; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); font-size: 9px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; background: var(--md-orange); color: #fff; padding: 2px 8px; border-radius: var(--r-pill); }
.mdp-cmp thead th .price { display: block; font-weight: 700; font-size: 24px; letter-spacing: -0.01em; margin-top: 4px; }
.mdp-cmp thead th .month { font-size: 12px; font-weight: 500; color: var(--n-500); }
.mdp-cmp thead th.col-feat .month { color: rgba(255,255,255,.7); }
.mdp-cmp tbody td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--line-1); color: var(--n-700); }
.mdp-cmp tbody td:first-child { text-align: left; padding-left: 24px; font-weight: 500; color: var(--n-900); }
.mdp-cmp tbody tr:hover td { background: var(--n-50); }
.mdp-cmp tbody tr.section-row td { background: linear-gradient(90deg, var(--md-lavender-pale) 0%, #f0e8f8 100%); font-weight: 700; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--md-lavender-deep); padding: 14px 24px; text-align: left; }
.mdp-cmp .check { color: var(--md-lavender); font-size: 18px; font-weight: 700; }
.mdp-cmp .x { color: var(--n-300); font-weight: 600; }
.mdp-cmp .col-feat-bg { background: rgba(113,70,151,.07); }

/* ═══ MODULE CATALOG ═══ */
.mdp-modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .mdp-modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .mdp-modules { grid-template-columns: 1fr; } }
.mdp-module { background: #fff; border: 1px solid var(--line-1); border-radius: var(--r-lg); padding: 24px; transition: all var(--t-base); }
.mdp-module:hover { border-color: var(--md-lavender); box-shadow: var(--shadow-card); }
.mdp-module__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.mdp-module__icon { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--md-lavender-pale); color: var(--md-lavender); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mdp-module__icon svg { width: 22px; height: 22px; }
.mdp-module__price { font-size: 13px; font-weight: 600; color: var(--md-lavender); background: var(--md-lavender-pale); padding: 4px 10px; border-radius: var(--r-pill); white-space: nowrap; }
.mdp-module h3 { font-size: 18px; font-weight: 700; margin: 0 0 4px; letter-spacing: -0.01em; }
.mdp-module__code { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--n-500); margin-bottom: 12px; }
.mdp-module p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--n-700); }
.mdp-module__deps { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-1); font-size: 12px; color: var(--n-500); }
.mdp-module__deps b { color: var(--n-700); font-weight: 600; }

/* ═══ BUNDLE TABLE ═══ */
.mdp-bundles { background: #fff; border-radius: var(--r-xl); border: 1px solid var(--line-1); overflow: hidden; }
.mdp-bnd { width: 100%; border-collapse: collapse; font-size: 15px; }
.mdp-bnd th, .mdp-bnd td { padding: 16px 24px; text-align: left; border-bottom: 1px solid var(--line-1); }
.mdp-bnd th { background: var(--n-100); font-weight: 700; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--n-500); }
.mdp-bnd td.num { font-family: 'JetBrains Mono', monospace; text-align: right; white-space: nowrap; }
.mdp-bnd td.save { color: var(--success); font-weight: 700; text-align: right; font-family: 'JetBrains Mono', monospace; }
.mdp-bnd tbody tr:last-child td { border-bottom: none; background: var(--md-lavender-pale); font-weight: 600; }

/* ═══ SERVICES ═══ */
.mdp-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .mdp-services { grid-template-columns: 1fr; } }
.mdp-service { background: #fff; border: 1px solid var(--line-1); border-radius: var(--r-lg); padding: 28px; }
.mdp-service__icon { width: 48px; height: 48px; background: var(--md-lavender-pale); color: var(--md-lavender); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.mdp-service__icon svg { width: 24px; height: 24px; }
.mdp-service h3 { font-size: 22px; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.01em; }
.mdp-service__price { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--md-lavender); font-weight: 600; margin-bottom: 4px; }
.mdp-service__dur { font-size: 13px; color: var(--n-500); margin-bottom: 14px; }
.mdp-service p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--n-700); }

/* ═══ TESTIMONIAL ═══ */
.mdp-testi { background: linear-gradient(135deg, var(--md-lavender), #5d3680); color: #fff; border-radius: var(--r-2xl); padding: 56px; display: grid; grid-template-columns: 1fr 280px; gap: 56px; align-items: center; box-shadow: var(--shadow-deep); position: relative; overflow: hidden; }
@media (max-width: 880px) { .mdp-testi { grid-template-columns: 1fr; padding: 40px; gap: 32px; } }
.mdp-testi::before { content: "“"; position: absolute; left: 24px; top: -40px; font-family: Georgia, serif; font-size: 220px; line-height: 1; color: rgba(255,255,255,.12); pointer-events: none; }
.mdp-testi blockquote { margin: 0; font-size: clamp(20px, 2.2vw, 26px); line-height: 1.45; font-weight: 500; letter-spacing: -0.01em; position: relative; }
.mdp-testi cite { display: block; font-style: normal; margin-top: 24px; font-size: 14px; opacity: .85; letter-spacing: 0.04em; }
.mdp-testi cite b { font-size: 16px; display: block; opacity: 1; letter-spacing: 0; margin-bottom: 2px; }
.mdp-testi__stats { display: grid; gap: 20px; }
.mdp-testi__stat b { font-weight: 700; font-size: 44px; line-height: 1; letter-spacing: -0.02em; display: block; }
.mdp-testi__stat span { display: block; font-size: 14px; opacity: .8; margin-top: 4px; }

/* ═══ FAQ ═══ */
.mdp-faq { max-width: 880px; margin: 0 auto; }
.mdp-faq details { background: #fff; border: 1px solid var(--line-1); border-radius: var(--r-md); margin-bottom: 12px; overflow: hidden; transition: all var(--t-fast); }
.mdp-faq details[open] { border-color: var(--md-lavender); box-shadow: var(--shadow-card); }
.mdp-faq summary { list-style: none; padding: 22px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 17px; font-weight: 600; color: var(--n-900); }
.mdp-faq summary::-webkit-details-marker { display: none; }
.mdp-faq summary::after { content: ""; flex-shrink: 0; width: 24px; height: 24px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23714697' stroke-width='2.2' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>") center/contain no-repeat; transition: transform var(--t-fast); }
.mdp-faq details[open] summary::after { transform: rotate(180deg); }
.mdp-faq__body { padding: 0 24px 24px; font-size: 16px; line-height: 1.65; color: var(--n-700); }
.mdp-faq__body p { margin: 0; }

/* ═══ FINAL CTA ═══ */
.mdp-cta { position: relative; color: #fff; border-radius: var(--r-2xl); padding: 64px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; box-shadow: 0 20px 50px -10px rgba(113,70,151,.3); background: radial-gradient(900px 600px at 88% -10%, rgba(255,150,55,.2) 0%, transparent 55%), linear-gradient(135deg, #8b5bb0 0%, var(--md-lavender) 60%, #5d3680 100%); overflow: hidden; }
.mdp-cta::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(180deg, rgba(0,0,0,.6) 20%, rgba(0,0,0,0) 90%); pointer-events: none; }
.mdp-cta > * { position: relative; }
@media (max-width: 880px) { .mdp-cta { grid-template-columns: 1fr; padding: 40px; gap: 32px; } }
.mdp-cta__eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.14); color: #ffc79a; padding: 6px 12px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.mdp-cta__eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--md-orange); }
.mdp-cta h2 { font-size: clamp(28px, 3.4vw, 36px); font-weight: 700; letter-spacing: -0.02em; margin: 16px 0 12px; color: #fff; }
.mdp-cta p { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.82); margin: 0; max-width: 540px; }
.mdp-cta__actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; min-width: 260px; }
.mdp-cta__contact { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 8px; text-align: center; }
.mdp-cta__contact b { color: #fff; }
.mdp-cta .mdp-btn--primary { background: #fff; color: var(--md-lavender); }
.mdp-cta .mdp-btn--primary:hover { background: var(--md-orange); color: #fff; box-shadow: 0 6px 20px rgba(254,70,15,.35); }
.mdp-cta .mdp-btn--ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.28); }
.mdp-cta .mdp-btn--ghost:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }

/* ═══ FOOTER ═══ */
.mit-foot { margin-top: 0; color: #fff; background: radial-gradient(50% 50% at 20% 72%, rgba(58,37,87,1) 0%, rgba(58,37,87,0) 65%), radial-gradient(50% 50% at 103% 24%, rgba(42,22,64,1) 0%, rgba(42,22,64,0) 60%), linear-gradient(180deg, #1e1131 0%, #0f0820 100%); padding-top: 56px; }
.mit-foot__container { max-width: 1240px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 2fr 1.5fr; gap: 48px; padding-bottom: 56px; }
@media (max-width: 980px) { .mit-foot__container { grid-template-columns: 1fr; gap: 32px; } }
.mit-foot__heading { font-family: 'Comfortaa', sans-serif; font-weight: 500; font-size: 20px; color: #fff; margin: 0 0 24px; }
.mit-foot__list, .mit-foot__contact { list-style: none; padding: 0; margin: 0; }
.mit-foot__list li { margin-bottom: 8px; }
.mit-foot__list a, .mit-foot__contact a { font-size: 18px; line-height: 28.8px; color: #cee7f7; display: inline-flex; align-items: center; gap: 10px; transition: color var(--t-fast); }
.mit-foot__list a:hover, .mit-foot__contact a:hover { color: #fff; }
.mit-foot__col--about p { font-size: 18px; line-height: 28.8px; color: #fff; margin: 0; max-width: 540px; }
.mit-foot__contact li { margin-bottom: 12px; }
.mit-foot__social { margin-top: 24px; display: flex; gap: 8px; }
.mit-foot__social a { width: 48px; height: 48px; background: #f8f9fa; border-radius: 24px; display: inline-flex; align-items: center; justify-content: center; transition: transform var(--t-fast); }
.mit-foot__social a:hover { transform: translateY(-2px); }
.mit-foot__bar { background: rgba(0,0,0,.15); padding: 24px 0; }
.mit-foot__bar-inner { max-width: 1240px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.mit-foot__bar-inner > span { font-size: 18px; color: rgba(255,255,255,.7); }
.mit-foot__lang-switch { display: inline-flex; gap: 12px; align-items: center; }
.mit-foot__lang-switch a { font-size: 18px; color: #cee7f7; transition: color var(--t-fast); }
.mit-foot__lang-switch a.is-active { color: #fff; font-weight: 600; }
.mit-foot__lang-switch a:hover { color: #fff; }
.mit-foot__lang-switch span { color: rgba(255,255,255,.7); }
