:root {
  --bg: #07070c;
  --surface: #0f1018;
  --surface-2: #151626;
  --surface-3: #1b1d31;
  --primary: #5B3CF5;
  --primary-light: #7B5FF8;
  --primary-soft: rgba(91, 60, 245, 0.16);
  --accent: #FF6B35;
  --accent-soft: rgba(255, 107, 53, 0.14);
  --text: #f6f7fb;
  --text-secondary: #b8bad0;
  --text-muted: #888ca8;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(123, 95, 248, 0.32);
  --gradient: linear-gradient(135deg, #5B3CF5 0%, #8A56F8 50%, #FF6B35 100%);
  --gradient-soft: linear-gradient(135deg, rgba(91, 60, 245, 0.18) 0%, rgba(255, 107, 53, 0.12) 100%);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --nav-h: 74px;
  --transition: 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: radial-gradient(circle at top, rgba(91, 60, 245, 0.12), transparent 28%), var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Inter, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.lang-de [data-lang="en"],
body:not(.lang-de) [data-lang="de"] { display: none !important; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.page-shell {
  min-height: 100vh;
  position: relative;
}
.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(123, 95, 248, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 95, 248, 0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 10%, black 0%, rgba(0, 0, 0, 0.92) 35%, transparent 100%);
  opacity: 0.6;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 110px 0; position: relative; }
.section-tight { padding: 84px 0; }
.section-hero { padding-top: 164px; }
.surface { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.surface-soft { background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0.005) 100%); }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(7, 7, 12, 0.78);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--primary-light);
  box-shadow: 0 0 14px rgba(91, 60, 245, 0.45);
  background: linear-gradient(135deg, rgba(91, 60, 245, 0.2), rgba(255, 107, 53, 0.2));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 13px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
body[data-page="home"] a[data-nav="home"],
body[data-page="services"] a[data-nav="services"],
body[data-page="case-studies"] a[data-nav="case-studies"],
body[data-page="about"] a[data-nav="about"],
body[data-page="project"] a[data-nav="pricing"],
body[data-page="book"] a[data-nav="book"],
body[data-page="our-works"] a[data-nav="our-works"],
body[data-page="impressum"] a[data-nav="impressum"],
body[data-page="privacy"] a[data-nav="privacy"],
body[data-page="cookies"] a[data-nav="cookies"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.lang-switch button {
  border: 0;
  min-width: 44px;
  padding: 7px 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background var(--transition), color var(--transition);
}
.lang-switch button.active {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 10px 24px rgba(91, 60, 245, 0.28);
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 18px;
  height: 1.6px;
  background: var(--text);
  border-radius: 99px;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-panel {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 900;
  background: rgba(9, 10, 16, 0.96);
  border-bottom: 1px solid var(--border);
  padding: 20px;
}
.mobile-panel.open { display: block; }
.mobile-links {
  display: grid;
  gap: 10px;
  list-style: none;
}
.mobile-links a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}
.mobile-links a:hover { color: var(--text); }
.mobile-panel .lang-switch { margin-top: 16px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
}
.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before,
.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
}
.hero-copy h1,
.page-hero h1,
.section-title {
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1.04;
}
.hero-copy h1 {
  font-size: clamp(42px, 7vw, 84px);
  max-width: 11ch;
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  max-width: 12ch;
}
.section-title { font-size: clamp(34px, 5vw, 56px); }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-copy p,
.page-hero p,
.section-subtitle,
.lead,
.card p,
.metric-note,
.footer-copy,
.legal-content p,
.legal-content li {
  color: var(--text-secondary);
}
.hero-copy p {
  font-size: clamp(18px, 2.4vw, 22px);
  max-width: 34rem;
  margin: 24px 0 34px;
}
.page-hero p,
.section-subtitle,
.lead {
  font-size: 18px;
  max-width: 42rem;
}
.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 400;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 18px 40px rgba(91, 60, 245, 0.28);
}
.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
}
.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.06);
}
.btn-ghost {
  color: var(--primary-light);
  background: rgba(91, 60, 245, 0.08);
  border-color: rgba(91, 60, 245, 0.18);
}
.btn-block { width: 100%; }

.hero-panel {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-panel::before,
.case-card::before,
.price-card.featured::before,
.quote-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), var(--accent), transparent);
}
.hero-glow {
  position: absolute;
  inset: auto -80px -80px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.26), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}
.system-window {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(9, 10, 16, 0.92);
  overflow: hidden;
}
.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.window-url {
  margin-left: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 12px;
}
.window-content { padding: 24px; display: grid; gap: 18px; }
.mini-card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(91,60,245,0.16), rgba(91,60,245,0.08));
  border: 1px solid rgba(123, 95, 248, 0.18);
}
.mini-card h3 { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.mini-card p { font-size: 14px; }
.system-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.system-tile {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}
.system-tile strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}
.system-tile span {
  color: var(--text-secondary);
  font-size: 13px;
}
.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.metric {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.metric strong {
  display: block;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.04em;
}
.metric span { color: var(--text-muted); font-size: 13px; }

.grid-2,
.grid-3,
.grid-4,
.cards-grid,
.case-grid,
.pricing-grid,
.footer-grid,
.story-grid,
.book-grid,
.contact-grid,
.stats-grid,
.addon-grid,
.values-grid,
.service-snapshot,
.problems-grid,
.solutions-grid {
  display: grid;
  gap: 20px;
}
.grid-2,
.story-grid,
.book-grid,
.contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3,
.case-grid,
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4,
.addon-grid,
.stats-grid,
.values-grid,
.service-snapshot,
.problems-grid,
.solutions-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-snapshot { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.footer-grid { grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr)); }

.card,
.problem-card,
.solution-card,
.service-chip,
.quote-card,
.value-card,
.faq-card,
.addon-card,
.legal-note,
.contact-card,
.story-card,
.trust-card,
.process-card,
.price-card,
.case-card,
.service-row,
.form-card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.card:hover,
.problem-card:hover,
.solution-card:hover,
.service-chip:hover,
.quote-card:hover,
.value-card:hover,
.addon-card:hover,
.contact-card:hover,
.trust-card:hover,
.process-card:hover,
.price-card:hover,
.case-card:hover,
.service-row:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 95, 248, 0.26);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}
.problem-card,
.solution-card,
.service-chip,
.quote-card,
.value-card,
.addon-card,
.contact-card,
.trust-card,
.process-card { padding: 26px; }
.problem-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-icon,
.solution-number,
.service-icon,
.value-number,
.process-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  background: var(--gradient-soft);
  border: 1px solid rgba(123, 95, 248, 0.2);
  color: var(--text);
}
.solution-number,
.value-number,
.process-number {
  border-radius: 50%;
  width: 58px;
  height: 58px;
}
.problem-card h3,
.solution-card h3,
.value-card h3,
.process-card h3,
.trust-card h3,
.story-card h3,
.contact-card h3,
.price-card h3,
.case-card h3,
.service-row h3,
.form-card h3,
.quote-card h3,
.faq-card h3 { font-size: 22px; font-weight: 300; letter-spacing: -0.03em; }
.problem-card p,
.solution-card p,
.quote-card p,
.value-card p,
.trust-card p,
.story-card p,
.contact-card p,
.process-card p,
.price-card p,
.case-card p,
.service-row p,
.faq-card p,
.addon-card p { font-size: 15px; }
.solution-card { padding: 32px; min-height: 250px; }
.solution-card .accent-line,
.case-card .accent-line {
  width: 100%;
  height: 1px;
  margin: 18px 0 20px;
  background: linear-gradient(90deg, rgba(123, 95, 248, 0.5), rgba(255, 107, 53, 0.35), transparent);
}
.service-chip {
  text-align: center;
  min-height: 170px;
  display: grid;
  place-items: center;
  gap: 14px;
}
.service-chip strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
}
.service-chip span { color: var(--text-secondary); font-size: 14px; }

.process-card { min-height: 224px; }
.process-card p { margin-top: 18px; }
.trust-card ul,
.feature-list,
.check-list,
.policy-list,
.footer-links,
.legal-content ul,
.book-benefits,
.tag-list {
  list-style: none;
}
.feature-list,
.book-benefits,
.policy-list { display: grid; gap: 12px; margin-top: 22px; }
.feature-list li,
.book-benefits li,
.policy-list li,
.quote-points li,
.footer-links li,
.contact-list li {
  color: var(--text-secondary);
  font-size: 15px;
  position: relative;
  padding-left: 22px;
}
.feature-list li::before,
.book-benefits li::before,
.policy-list li::before,
.quote-points li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  box-shadow: 0 0 10px rgba(91, 60, 245, 0.28);
}
.quote-card { padding: 30px; }
.quote-card blockquote {
  font-size: 21px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.quote-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 13px;
}
.result-badge,
.case-tag,
.small-tag,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(123, 95, 248, 0.24);
  background: rgba(91, 60, 245, 0.1);
  color: var(--primary-light);
}
.badge-hot {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.22);
  color: #ff9b77;
}
.stats-grid { margin-top: 36px; }
.stat-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.stat-card strong {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 200;
  letter-spacing: -0.05em;
}
.stat-card span { color: var(--text-muted); font-size: 14px; }

.page-hero {
  padding-top: 164px;
  padding-bottom: 70px;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123, 95, 248, 0.45), rgba(255, 107, 53, 0.35), transparent);
}
.page-hero p { margin-top: 20px; }

.service-row {
  display: grid;
  grid-template-columns: 0.95fr 1.3fr;
  gap: 0;
  overflow: hidden;
}
.service-row-aside,
.service-row-main { padding: 34px; }
.service-row-aside {
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.service-row-aside .timeline {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-row-main .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.tag-row .pill {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.tag-row .pill.alert {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.18);
  color: #ff9b77;
}
.tag-row .pill.good {
  background: rgba(91, 60, 245, 0.1);
  border-color: rgba(91, 60, 245, 0.2);
  color: var(--primary-light);
}

.case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.case-card { overflow: hidden; }
.case-header,
.case-body { padding: 30px; }
.case-header {
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.case-meta {
  display: grid;
  gap: 8px;
}
.case-industry {
  color: var(--primary-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.case-metric {
  margin-top: 20px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
}
.case-metric strong {
  display: block;
  font-size: 32px;
  font-weight: 200;
  letter-spacing: -0.04em;
  color: var(--text);
}
.case-metric span { color: var(--text-muted); font-size: 14px; }
.case-row { margin-bottom: 18px; }
.case-row:last-child { margin-bottom: 0; }
.case-row-label {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.story-card,
.trust-card,
.value-card,
.faq-card,
.contact-card,
.legal-note { padding: 30px; }
.story-card .small-tag,
.trust-card .small-tag { margin-bottom: 16px; }
.value-card { min-height: 250px; }
.values-grid { margin-top: 38px; }

.pricing-grid { align-items: stretch; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.price-card {
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.price-card.featured {
  border-color: rgba(123, 95, 248, 0.42);
  background: linear-gradient(180deg, rgba(91,60,245,0.14), rgba(255,255,255,0.02));
  box-shadow: 0 22px 46px rgba(0,0,0,0.34), 0 0 0 1px rgba(123, 95, 248, 0.18) inset;
}
.price-top { display: grid; gap: 8px; }
.price-kicker {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.price-value {
  font-size: 38px;
  font-weight: 200;
  letter-spacing: -0.05em;
}
.price-sub {
  color: var(--primary-light);
  font-size: 14px;
}
.price-card hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 22px 0;
}
.price-card .feature-list { flex: 1; margin-top: 0; }
.price-cta { margin-top: 28px; }
.price-note {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 12px;
}
.savings-banner {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(91,60,245,0.13), rgba(255,107,53,0.09));
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}
.savings-banner strong {
  display: block;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 200;
  letter-spacing: -0.05em;
}
.savings-banner p { max-width: 42rem; }
.addon-grid { margin-top: 34px; }
.addon-card { padding: 26px; }
.addon-price {
  font-size: 28px;
  font-weight: 200;
  letter-spacing: -0.04em;
  margin-top: 16px;
}

.book-grid { align-items: start; gap: 28px; }
.form-card { padding: 34px; }
.form-stack { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-group { display: grid; gap: 8px; }
.form-label {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(231, 234, 255, 0.36);
}
.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 46px;
  color-scheme: dark;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f6f7fb' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
}
.form-select option {
  background: #0a0d1a;
  color: #eef2ff;
}
.form-select option[value=""] {
  color: rgba(231, 234, 255, 0.8);
}
.form-select::-ms-expand {
  display: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(123, 95, 248, 0.42);
  box-shadow: 0 0 0 4px rgba(91, 60, 245, 0.14);
  background: rgba(255,255,255,0.05);
}
.form-textarea { min-height: 144px; resize: vertical; }
.form-help,
.form-success,
.footnote,
.legal-placeholder {
  color: var(--text-muted);
  font-size: 13px;
}
.form-success {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(91, 60, 245, 0.2);
  background: rgba(91, 60, 245, 0.08);
  display: none;
}
.form-success.show { display: block; }
.contact-list { list-style: none; display: grid; gap: 12px; margin-top: 20px; }
.faq-grid { display: grid; gap: 16px; margin-top: 28px; }
.faq-card { padding: 24px 26px; }

.legal-hero {
  padding-top: 152px;
  padding-bottom: 44px;
}
.legal-content {
  max-width: 840px;
  margin: 0 auto 80px;
  padding: 0 20px 20px;
}
.legal-content h1 {
  font-size: clamp(40px, 6vw, 66px);
  font-weight: 200;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.legal-content h2 {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.03em;
  margin: 38px 0 14px;
}
.legal-content h3 {
  font-size: 18px;
  font-weight: 400;
  margin: 24px 0 10px;
}
.legal-content p,
.legal-content li { font-size: 16px; }
.legal-content ul { display: grid; gap: 12px; padding-left: 18px; }
.legal-content li { padding-left: 6px; }
.legal-note { margin-top: 26px; }
.legal-placeholder {
  display: inline-flex;
  margin-top: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 53, 0.18);
  background: rgba(255, 107, 53, 0.08);
  color: #ffae90;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(10, 10, 16, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.cookie-copy { max-width: 54rem; }
.cookie-copy p { color: var(--text-secondary); font-size: 14px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner.hidden { display: none; }

.footer {
  border-top: 1px solid var(--border);
  padding: 70px 0 34px;
  background: rgba(255,255,255,0.01);
}
.footer-brand p { margin-top: 16px; max-width: 21rem; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-links { display: grid; gap: 10px; }
.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; }
.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: var(--text-muted);
  font-size: 13px;
}
.footer-legal a:hover { color: var(--text); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  .service-snapshot { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 2 / -1; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .lang-switch { display: none; }
  .hero-grid,
  .grid-2,
  .story-grid,
  .book-grid,
  .contact-grid,
  .service-row,
  .form-row,
  .savings-banner { grid-template-columns: 1fr; }
  .hero-panel { order: -1; }
  .metric-strip,
  .stats-grid,
  .values-grid,
  .service-snapshot,
  .problems-grid,
  .solutions-grid,
  .addon-grid,
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-grid { grid-template-columns: 1fr; }
  .service-row-aside { border-right: 0; border-bottom: 1px solid var(--border); }
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
  .section,
  .section-hero,
  .page-hero,
  .legal-hero { padding-top: 132px; }
  .section { padding-bottom: 84px; }
  .container { width: min(var(--container), calc(100% - 28px)); }
  .hero-copy h1,
  .page-hero h1,
  .legal-content h1 { max-width: none; }
  .metric-strip,
  .stats-grid,
  .values-grid,
  .service-snapshot,
  .problems-grid,
  .solutions-grid,
  .addon-grid,
  .pricing-grid,
  .footer-grid,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .hero-panel,
  .price-card,
  .service-row-aside,
  .service-row-main,
  .form-card,
  .story-card,
  .trust-card,
  .value-card,
  .faq-card,
  .contact-card,
  .legal-note,
  .case-header,
  .case-body,
  .problem-card,
  .solution-card,
  .quote-card,
  .process-card,
  .service-chip,
  .addon-card { padding: 24px 20px; }
  .cookie-actions,
  .hero-actions,
  .inline-actions { width: 100%; }
  .cookie-actions .btn,
  .hero-actions .btn,
  .inline-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.logo-chip {
  min-width: 136px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}
.result-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}
.comparison-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
}
.comparison-card h3 {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.03em;
}
.comparison-card p {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 15px;
}
.comparison-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.comparison-state {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
}
.comparison-state strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.comparison-state span {
  display: block;
  font-size: 19px;
  font-weight: 300;
  letter-spacing: -0.03em;
}
.comparison-state.after {
  background: rgba(91, 60, 245, 0.12);
  border-color: rgba(123, 95, 248, 0.24);
}
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}
.transparency-card {
  padding: 28px;
}
.transparency-card h3 {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.03em;
}
.transparency-card p {
  margin-top: 14px;
  color: var(--text-secondary);
}
.transparency-card .feature-list {
  margin-top: 18px;
}
.transparency-card .feature-list li {
  font-size: 14px;
}
.transparency-card .feature-list li::before {
  top: 9px;
}
.transparency-note {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.18);
  background: rgba(255, 107, 53, 0.08);
}
.transparency-note p {
  color: var(--text-secondary);
}
@media (max-width: 980px) {
  .result-compare-grid,
  .transparency-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .comparison-split {
    grid-template-columns: 1fr;
  }
  .logo-chip {
    min-width: calc(50% - 7px);
    flex: 1 1 calc(50% - 7px);
  }
}


.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}
.work-card {
  overflow: hidden;
  padding: 0;
}
.work-media {
  position: relative;
  min-height: 240px;
  border-bottom: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.work-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,7,12,0.06) 0%, rgba(7,7,12,0.72) 100%);
}
.work-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(7,7,12,0.5);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}
.work-title-wrap {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
}
.work-title-wrap h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300;
  letter-spacing: -0.03em;
}
.work-title-wrap p {
  margin-top: 8px;
  max-width: 42ch;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}
.work-content {
  padding: 26px;
}
.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.work-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text-secondary);
  font-size: 12px;
}
.work-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin-top: 18px;
}
.work-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-secondary);
  font-size: 14px;
}
.work-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
}
.work-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.work-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(123, 95, 248, 0.18);
  background: rgba(91, 60, 245, 0.08);
}
.work-note p {
  color: var(--text-secondary);
  font-size: 14px;
}
@media (max-width: 980px) {
  .works-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .work-media {
    min-height: 210px;
  }
  .work-content {
    padding: 22px 20px;
  }
}


/* === Custom glass navigation, hero video, and footer background === */
.section-hero {
  padding-top: calc(var(--nav-h) + 112px);
}

.topbar {
  height: auto;
  padding-top: 16px;
  background: transparent;
  border-bottom: 0;
}

.topbar .nav {
  position: relative;
  height: var(--nav-h);
  min-height: var(--nav-h);
  padding: 0 18px;
  background: rgba(10, 12, 22, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7.58px;
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.topbar .nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 7.58px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02) 40%, rgba(91, 60, 245, 0.08));
}

.topbar .brand,
.topbar .nav-links,
.topbar .nav-actions {
  position: relative;
  z-index: 1;
}

.nav-links a {
  background: rgba(255, 255, 255, 0.02);
}

.nav-links a:hover,
body[data-page="home"] a[data-nav="home"],
body[data-page="services"] a[data-nav="services"],
body[data-page="case-studies"] a[data-nav="case-studies"],
body[data-page="about"] a[data-nav="about"],
body[data-page="project"] a[data-nav="pricing"],
body[data-page="book"] a[data-nav="book"],
body[data-page="our-works"] a[data-nav="our-works"],
body[data-page="impressum"] a[data-nav="impressum"],
body[data-page="privacy"] a[data-nav="privacy"],
body[data-page="cookies"] a[data-nav="cookies"] {
  background: rgba(255, 255, 255, 0.10);
}

.lang-switch {
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  border-radius: 7.58px;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-panel {
  inset: calc(var(--nav-h) + 22px) 20px auto 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7.58px;
  background: rgba(9, 12, 20, 0.62);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.35);
}

.mobile-panel .container {
  width: 100%;
}

.hero-video-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-video-wrap,
.hero-video-overlay {
  position: absolute;
  inset: 0;
}

.hero-video-wrap {
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-video-overlay {
  z-index: 1;
  background:
    linear-gradient(108deg, rgba(4, 5, 10, 0.90) 0%, rgba(5, 7, 12, 0.76) 28%, rgba(7, 7, 12, 0.62) 58%, rgba(7, 7, 12, 0.86) 100%),
    radial-gradient(circle at 18% 22%, rgba(91, 60, 245, 0.24), transparent 26%),
    radial-gradient(circle at 88% 78%, rgba(255, 107, 53, 0.18), transparent 22%);
}

.hero-video-section .container {
  position: relative;
  z-index: 2;
}

.hero-video-section .metric,
.hero-video-section .hero-panel,
.hero-video-section .system-window,
.hero-video-section .window-bar,
.hero-video-section .system-tile,
.hero-video-section .mini-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-video-section .metric {
  background: rgba(10, 10, 16, 0.34);
}

.hero-video-section .hero-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
}

.footer {
  position: relative;
  overflow: hidden;
  background-color: #07070c;
  background-image: url('../images/footer-background.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(91, 60, 245, 0.14), rgba(255, 107, 53, 0.10)),
    linear-gradient(180deg, rgba(7, 7, 12, 0.36), rgba(7, 7, 12, 0.52));
}

.footer > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .topbar {
    padding-top: 12px;
  }

  .topbar .nav {
    padding: 0 14px;
  }

  .section-hero {
    padding-top: calc(var(--nav-h) + 92px);
  }
}

@media (max-width: 680px) {
  .section-hero,
  .page-hero,
  .legal-hero {
    padding-top: calc(var(--nav-h) + 76px);
  }

  .mobile-panel {
    left: 14px;
    right: 14px;
  }
}


/* === Requested UI refinements: full-width navbar, glowing cards, featured background === */
:root {
  --nav-h: 86px;
  --nav-button-bg: rgba(121, 149, 156, 0.16);
  --nav-button-bg-hover: rgba(121, 149, 156, 0.52);
  --nav-button-border: rgba(205, 230, 235, 0.12);
}

.topbar .nav.container {
  width: calc(100% - 24px);
  max-width: 1840px;
}

.topbar .nav {
  padding: 0 22px;
  border-radius: 18px;
  background: rgba(10, 12, 22, 0.58);
}

.topbar .nav::before {
  border-radius: 18px;
}

.nav-links {
  flex: 1;
  justify-content: center;
  gap: 10px;
}

.nav-links a,
.lang-switch button,
.nav-toggle,
.mobile-links a {
  border-radius: 12px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--nav-button-border);
  background: var(--nav-button-bg);
  color: rgba(246, 247, 251, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-links a:hover,
body[data-page="home"] a[data-nav="home"],
body[data-page="services"] a[data-nav="services"],
body[data-page="case-studies"] a[data-nav="case-studies"],
body[data-page="about"] a[data-nav="about"],
body[data-page="project"] a[data-nav="pricing"],
body[data-page="book"] a[data-nav="book"],
body[data-page="our-works"] a[data-nav="our-works"],
body[data-page="impressum"] a[data-nav="impressum"],
body[data-page="privacy"] a[data-nav="privacy"],
body[data-page="cookies"] a[data-nav="cookies"] {
  background: var(--nav-button-bg-hover);
  border-color: rgba(215, 238, 242, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lang-switch {
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
}

.lang-switch button {
  min-width: 52px;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid var(--nav-button-border);
  background: var(--nav-button-bg);
  color: rgba(246, 247, 251, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lang-switch button.active {
  background: rgba(121, 149, 156, 0.72);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  width: 52px;
  height: 46px;
  border: 1px solid var(--nav-button-border);
  background: var(--nav-button-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mobile-links {
  gap: 12px;
}

.mobile-links a {
  min-height: 50px;
  display: flex;
  align-items: center;
  border: 1px solid var(--nav-button-border);
  background: rgba(121, 149, 156, 0.2);
}

.included-showcase {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #07070c;
  background-image:
    linear-gradient(108deg, rgba(4, 5, 10, 0.92) 0%, rgba(7, 7, 12, 0.78) 42%, rgba(7, 7, 12, 0.90) 100%),
    url('../images/included-section-bg.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.included-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 78%, rgba(0, 230, 255, 0.18), transparent 24%),
    radial-gradient(circle at 52% 58%, rgba(123, 95, 248, 0.18), transparent 22%),
    radial-gradient(circle at 86% 85%, rgba(255, 171, 148, 0.18), transparent 24%);
  pointer-events: none;
}

.included-showcase > .container {
  position: relative;
  z-index: 1;
}

.included-showcase .service-chip {
  background: linear-gradient(180deg, rgba(12, 13, 22, 0.62), rgba(12, 13, 22, 0.36));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.card,
.problem-card,
.solution-card,
.service-chip,
.quote-card,
.value-card,
.faq-card,
.addon-card,
.legal-note,
.contact-card,
.story-card,
.trust-card,
.process-card,
.price-card,
.case-card,
.service-row,
.form-card,
.comparison-card,
.transparency-card,
.logo-chip {
  overflow: hidden;
  isolation: isolate;
}

.card::after,
.problem-card::after,
.solution-card::after,
.service-chip::after,
.quote-card::after,
.value-card::after,
.faq-card::after,
.addon-card::after,
.legal-note::after,
.contact-card::after,
.story-card::after,
.trust-card::after,
.process-card::after,
.price-card::after,
.case-card::after,
.service-row::after,
.form-card::after,
.comparison-card::after,
.transparency-card::after,
.logo-chip::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(146, 125, 255, 0.2),
    0 0 26px rgba(91, 60, 245, 0.18),
    0 0 54px rgba(255, 107, 53, 0.12);
  transition: opacity var(--transition), box-shadow var(--transition);
}

.card:hover,
.problem-card:hover,
.solution-card:hover,
.service-chip:hover,
.quote-card:hover,
.value-card:hover,
.faq-card:hover,
.addon-card:hover,
.legal-note:hover,
.contact-card:hover,
.story-card:hover,
.trust-card:hover,
.process-card:hover,
.price-card:hover,
.case-card:hover,
.service-row:hover,
.form-card:hover,
.comparison-card:hover,
.transparency-card:hover,
.logo-chip:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 147, 255, 0.42);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(91, 60, 245, 0.22),
    0 0 52px rgba(255, 107, 53, 0.12);
}

.card:hover::after,
.problem-card:hover::after,
.solution-card:hover::after,
.service-chip:hover::after,
.quote-card:hover::after,
.value-card:hover::after,
.faq-card:hover::after,
.addon-card:hover::after,
.legal-note:hover::after,
.contact-card:hover::after,
.story-card:hover::after,
.trust-card:hover::after,
.process-card:hover::after,
.price-card:hover::after,
.case-card:hover::after,
.service-row:hover::after,
.form-card:hover::after,
.comparison-card:hover::after,
.transparency-card:hover::after,
.logo-chip:hover::after {
  opacity: 1;
}

@media (max-width: 960px) {
  :root {
    --nav-h: 82px;
  }

  .topbar .nav.container {
    width: calc(100% - 20px);
  }

  .topbar .nav {
    padding: 0 16px;
  }
}

@media (max-width: 680px) {
  :root {
    --nav-h: 78px;
  }

  .topbar .nav.container {
    width: calc(100% - 16px);
  }

  .topbar .nav {
    border-radius: 16px;
  }

  .mobile-links a,
  .lang-switch button {
    min-height: 48px;
  }
}

/* === Requested refinement: stronger multicolor card glow + clearer included background === */
.included-showcase {
  background-image:
    linear-gradient(108deg, rgba(4, 5, 10, 0.52) 0%, rgba(7, 7, 12, 0.18) 42%, rgba(7, 7, 12, 0.40) 100%),
    url('../images/included-section-bg.jpg');
}

.included-showcase::before {
  background:
    radial-gradient(circle at 16% 78%, rgba(0, 230, 255, 0.24), transparent 24%),
    radial-gradient(circle at 52% 58%, rgba(123, 95, 248, 0.22), transparent 22%),
    radial-gradient(circle at 86% 85%, rgba(255, 171, 148, 0.24), transparent 24%);
}

.card,
.problem-card,
.solution-card,
.service-chip,
.quote-card,
.value-card,
.faq-card,
.addon-card,
.legal-note,
.contact-card,
.story-card,
.trust-card,
.process-card,
.price-card,
.case-card,
.service-row,
.form-card,
.comparison-card,
.transparency-card,
.logo-chip {
  position: relative;
}

.card::after,
.problem-card::after,
.solution-card::after,
.service-chip::after,
.quote-card::after,
.value-card::after,
.faq-card::after,
.addon-card::after,
.legal-note::after,
.contact-card::after,
.story-card::after,
.trust-card::after,
.process-card::after,
.price-card::after,
.case-card::after,
.service-row::after,
.form-card::after,
.comparison-card::after,
.transparency-card::after,
.logo-chip::after {
  inset: -2px;
  padding: 1.45px;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background: conic-gradient(
    from 0deg,
    rgba(66, 239, 255, 0.02) 0deg,
    rgba(66, 239, 255, 0.98) 42deg,
    rgba(112, 104, 255, 0.96) 98deg,
    rgba(214, 88, 255, 0.96) 158deg,
    rgba(255, 122, 92, 0.96) 220deg,
    rgba(255, 214, 102, 0.92) 282deg,
    rgba(66, 239, 255, 0.98) 334deg,
    rgba(66, 239, 255, 0.02) 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: saturate(1.12) blur(0.45px);
  box-shadow:
    0 0 20px rgba(66, 239, 255, 0.22),
    0 0 34px rgba(112, 104, 255, 0.18),
    0 0 48px rgba(255, 122, 92, 0.16),
    0 0 62px rgba(214, 88, 255, 0.14);
  transition: opacity 0.32s ease, filter 0.32s ease, box-shadow 0.32s ease;
  animation: premiumCardBorderSpin 4.5s linear infinite;
  animation-play-state: paused;
}

.card:hover,
.problem-card:hover,
.solution-card:hover,
.service-chip:hover,
.quote-card:hover,
.value-card:hover,
.faq-card:hover,
.addon-card:hover,
.legal-note:hover,
.contact-card:hover,
.story-card:hover,
.trust-card:hover,
.process-card:hover,
.price-card:hover,
.case-card:hover,
.service-row:hover,
.form-card:hover,
.comparison-card:hover,
.transparency-card:hover,
.logo-chip:hover {
  transform: translateY(-7px);
  border-color: rgba(205, 193, 255, 0.52);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.42),
    0 0 20px rgba(66, 239, 255, 0.18),
    0 0 38px rgba(112, 104, 255, 0.18),
    0 0 56px rgba(214, 88, 255, 0.16),
    0 0 72px rgba(255, 122, 92, 0.16);
}

.card:hover::after,
.problem-card:hover::after,
.solution-card:hover::after,
.service-chip:hover::after,
.quote-card:hover::after,
.value-card:hover::after,
.faq-card:hover::after,
.addon-card:hover::after,
.legal-note:hover::after,
.contact-card:hover::after,
.story-card:hover::after,
.trust-card:hover::after,
.process-card:hover::after,
.price-card:hover::after,
.case-card:hover::after,
.service-row:hover::after,
.form-card:hover::after,
.comparison-card:hover::after,
.transparency-card:hover::after,
.logo-chip:hover::after {
  opacity: 1;
  filter: saturate(1.35) blur(0.2px);
  box-shadow:
    0 0 24px rgba(66, 239, 255, 0.34),
    0 0 42px rgba(112, 104, 255, 0.28),
    0 0 58px rgba(214, 88, 255, 0.26),
    0 0 74px rgba(255, 122, 92, 0.24),
    0 0 88px rgba(255, 214, 102, 0.18);
  animation-play-state: running;
}

@keyframes premiumCardBorderSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* === Final requested refinement: blue glow border, raw full-width navbar, DE default === */
:root {
  --nav-h: 72px;
  --ocean-1: #35d6f6;
  --ocean-2: #20b7ea;
  --ocean-3: #1a79d2;
  --ocean-4: #2650a6;
}

.topbar {
  padding-top: 0;
  background: linear-gradient(90deg, rgba(138, 138, 138, 0.86), rgba(110, 110, 110, 0.82));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.topbar .nav.container {
  width: 100%;
  max-width: none;
}

.topbar .nav {
  height: var(--nav-h);
  min-height: var(--nav-h);
  padding: 0 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.topbar .nav::before {
  display: none;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-mark {
  box-shadow: 0 0 16px rgba(53, 214, 246, 0.32);
  border-color: rgba(53, 214, 246, 0.88);
  background: linear-gradient(135deg, rgba(53, 214, 246, 0.28), rgba(38, 80, 166, 0.16));
}

.nav-links {
  flex: 1;
  justify-content: flex-end;
  gap: 16px;
}

.nav-links a {
  min-height: auto;
  padding: 12px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(247, 248, 252, 0.82);
}

.nav-links a:hover,
body[data-page="home"] a[data-nav="home"],
body[data-page="services"] a[data-nav="services"],
body[data-page="case-studies"] a[data-nav="case-studies"],
body[data-page="about"] a[data-nav="about"],
body[data-page="project"] a[data-nav="pricing"],
body[data-page="book"] a[data-nav="book"],
body[data-page="our-works"] a[data-nav="our-works"],
body[data-page="impressum"] a[data-nav="impressum"],
body[data-page="privacy"] a[data-nav="privacy"],
body[data-page="cookies"] a[data-nav="cookies"] {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.12);
}

.nav-links a[data-nav="book"] {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2de1ff 0%, #229fff 45%, #5a78ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  box-shadow:
    0 14px 30px rgba(28, 174, 236, 0.26),
    0 0 28px rgba(90, 120, 255, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.nav-links a[data-nav="book"]:hover,
body[data-page="book"] a[data-nav="book"] {
  background: linear-gradient(135deg, #52e8ff 0%, #30b0ff 48%, #7188ff 100%);
  color: #ffffff;
  text-shadow: none;
  box-shadow:
    0 18px 36px rgba(28, 174, 236, 0.34),
    0 0 36px rgba(90, 120, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.nav-actions {
  gap: 10px;
  margin-left: 18px;
}

.lang-switch {
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
}

.lang-switch button {
  min-width: 48px;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: none;
}

.lang-switch button.active {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.nav-toggle {
  width: 48px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.mobile-panel {
  inset: var(--nav-h) 0 auto 0;
  border: 0;
  border-radius: 0;
  background: rgba(98, 98, 98, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.mobile-links a {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
  background: linear-gradient(135deg, #36e4ff 0%, #21a7ff 44%, #5c76ff 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 40px rgba(24, 168, 232, 0.24),
    0 0 30px rgba(92, 118, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #58ebff 0%, #34b7ff 46%, #7288ff 100%);
  box-shadow:
    0 24px 46px rgba(24, 168, 232, 0.32),
    0 0 36px rgba(92, 118, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

:is(.card,
.problem-card,
.solution-card,
.service-chip,
.quote-card,
.value-card,
.faq-card,
.addon-card,
.legal-note,
.contact-card,
.story-card,
.trust-card,
.process-card,
.price-card,
.case-card,
.service-row,
.form-card,
.comparison-card,
.transparency-card,
.logo-chip) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

:is(.card,
.problem-card,
.solution-card,
.service-chip,
.quote-card,
.value-card,
.faq-card,
.addon-card,
.legal-note,
.contact-card,
.story-card,
.trust-card,
.process-card,
.price-card,
.case-card,
.service-row,
.form-card,
.comparison-card,
.transparency-card,
.logo-chip)::after {
  content: "";
  position: absolute;
  inset: -1.5px;
  padding: 1.5px;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(53, 214, 246, 0.95), rgba(32, 183, 234, 0.88), rgba(26, 121, 210, 0.9), rgba(38, 80, 166, 0.96), rgba(53, 214, 246, 0.95));
  background-size: 260% 260%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: none;
  box-shadow: 0 0 20px rgba(53, 214, 246, 0.18), 0 0 42px rgba(26, 121, 210, 0.14);
  transition: opacity 0.28s ease, box-shadow 0.28s ease;
}

:is(.card,
.problem-card,
.solution-card,
.service-chip,
.quote-card,
.value-card,
.faq-card,
.addon-card,
.legal-note,
.contact-card,
.story-card,
.trust-card,
.process-card,
.price-card,
.case-card,
.service-row,
.form-card,
.comparison-card,
.transparency-card,
.logo-chip):hover {
  transform: translateY(-7px);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border-color: rgba(53, 214, 246, 0.34);
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.38),
    0 0 26px rgba(53, 214, 246, 0.14),
    0 0 54px rgba(26, 121, 210, 0.12);
}

:is(.card,
.problem-card,
.solution-card,
.service-chip,
.quote-card,
.value-card,
.faq-card,
.addon-card,
.legal-note,
.contact-card,
.story-card,
.trust-card,
.process-card,
.price-card,
.case-card,
.service-row,
.form-card,
.comparison-card,
.transparency-card,
.logo-chip):hover::after {
  opacity: 1;
  box-shadow: 0 0 26px rgba(53, 214, 246, 0.28), 0 0 56px rgba(26, 121, 210, 0.22);
  animation: oceanBorderShift 2.8s linear infinite;
}

@keyframes oceanBorderShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@media (max-width: 960px) {
  :root {
    --nav-h: 68px;
  }

  .topbar .nav {
    padding: 0 16px;
  }

  .nav-links {
    gap: 14px;
  }
}

@media (max-width: 680px) {
  :root {
    --nav-h: 64px;
  }

  .topbar .nav {
    padding: 0 14px;
  }

  .mobile-panel {
    top: var(--nav-h);
    left: 0;
    right: 0;
  }
}

/* === Final navbar refinement: glassmorphism, centered boxed tabs, cleaner font === */
:root {
  --nav-h: 82px;
}

body {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.hero-copy h1,
.page-hero h1,
.section-title,
.brand,
.nav-links a,
.lang-switch button,
.mobile-links a,
.btn {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.topbar {
  padding-top: 0;
  background: linear-gradient(180deg, rgba(150, 150, 150, 0.22), rgba(118, 118, 118, 0.16));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px) saturate(165%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.topbar .nav.container {
  width: 100%;
  max-width: none;
}

.topbar .nav {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
  align-items: center;
  height: var(--nav-h);
  min-height: var(--nav-h);
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.topbar .nav::before {
  display: none;
}

.brand {
  justify-self: start;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  justify-self: center;
  flex: none;
  justify-content: center;
  gap: 10px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  color: rgba(247, 248, 252, 0.92);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-links a:hover,
body[data-page="home"] a[data-nav="home"],
body[data-page="services"] a[data-nav="services"],
body[data-page="case-studies"] a[data-nav="case-studies"],
body[data-page="about"] a[data-nav="about"],
body[data-page="project"] a[data-nav="pricing"],
body[data-page="our-works"] a[data-nav="our-works"],
body[data-page="impressum"] a[data-nav="impressum"],
body[data-page="privacy"] a[data-nav="privacy"],
body[data-page="cookies"] a[data-nav="cookies"] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.10));
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  text-shadow: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.nav-links a[data-nav="book"] {
  background: linear-gradient(135deg, #35d6f6 0%, #20b7ea 45%, #5a78ff 100%);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow:
    0 16px 32px rgba(32, 183, 234, 0.26),
    0 0 24px rgba(90, 120, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.nav-links a[data-nav="book"]:hover,
body[data-page="book"] a[data-nav="book"] {
  background: linear-gradient(135deg, #57e4ff 0%, #2fc2f2 46%, #7188ff 100%);
  border-color: rgba(255, 255, 255, 0.26);
  color: #ffffff;
  box-shadow:
    0 20px 38px rgba(32, 183, 234, 0.34),
    0 0 30px rgba(90, 120, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.nav-actions {
  justify-self: end;
  gap: 10px;
  margin-left: 0;
}

.lang-switch {
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
}

.lang-switch button,
.nav-toggle,
.mobile-links a {
  border-radius: 12px;
}

.lang-switch button {
  min-width: 48px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  color: rgba(247, 248, 252, 0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lang-switch button.active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.12));
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav-toggle {
  width: 48px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.mobile-panel {
  inset: var(--nav-h) 0 auto 0;
  border: 0;
  border-radius: 0;
  background: rgba(105, 105, 105, 0.54);
  backdrop-filter: blur(24px) saturate(165%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.mobile-links a {
  min-height: 50px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07));
  color: rgba(247, 248, 252, 0.92);
}

@media (max-width: 1180px) {
  .topbar .nav {
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
    padding: 0 18px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    padding: 10px 14px;
    letter-spacing: 0.11em;
  }
}

@media (max-width: 980px) {
  :root {
    --nav-h: 76px;
  }

  .topbar .nav {
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
  }
}


/* Website correction pass - spacing and German layout refinements */
.section-title + .section-subtitle {
  margin-top: 22px;
}
.story-card .section-title + .section-subtitle,
.quote-card blockquote + .quote-meta,
.comparison-card h3 + p,
.problem-card h3 + p,
.solution-card h3 + p,
.process-card h3 + p,
.trust-card h3 + p,
.value-card h3 + p {
  margin-top: 14px;
}
.story-card .small-tag,
.trust-card .small-tag,
.comparison-card .small-tag,
.quote-card .badge {
  margin-bottom: 18px;
}
.value-card .value-number,
.process-card .process-number,
.solution-card .solution-number,
.problem-card .problem-icon {
  margin-bottom: 16px;
}
.value-card h3,
.trust-card h3,
.story-card h3,
.process-card h3,
.solution-card h3,
.problem-card h3 {
  margin-bottom: 12px;
}
.result-badge {
  max-width: 240px;
  text-align: center;
  line-height: 1.3;
  white-space: normal;
}
body[data-page="case-studies"] .page-hero h1 {
  max-width: 15ch;
}

/* Extra language-aware spacing for hidden EN/DE sibling elements */
.section-subtitle {
  margin-top: 22px;
}
.problem-card p,
.solution-card p,
.process-card p,
.trust-card p,
.value-card p,
.story-card p,
.comparison-card p,
.service-row p,
.addon-card p,
.price-card p,
.case-card p {
  margin-top: 12px;
}
.service-chip strong,
.service-chip .service-icon {
  margin-bottom: 12px;
}
body[data-page="case-studies"] .page-hero h1 {
  max-width: 20ch;
}

/* Pricing structure update from Price and Structure.docx */
body[data-page="project"] .topbar {
  background: rgba(7, 7, 12, 0.64);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.pricing-hero {
  text-align: center;
  padding-bottom: 68px;
}
.pricing-hero .container {
  max-width: 900px;
}
.pricing-hero .section-label {
  margin-left: auto;
  margin-right: auto;
}
.pricing-hero .section-label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
}
.pricing-hero .hero-lead {
  color: var(--text);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin: 18px auto 14px;
}
.pricing-hero p:not(.hero-lead) {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.pricing-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.price-card-xl {
  position: relative;
  padding: 38px;
  min-height: 100%;
}
.price-card-xl h3,
.subscription-card h3,
.managed-card h3,
.consult-card h2,
.managed-benefit h3 {
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.14;
}
.price-card-xl h3 {
  font-size: clamp(28px, 3.3vw, 44px);
  max-width: 12.5em;
}
.price-card-xl p,
.subscription-card p,
.managed-card p,
.managed-intro p,
.consult-card p,
.managed-benefit p {
  color: var(--text-secondary);
}
.price-card-xl h4 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.price-card-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 97, 163, 0.26), transparent 65%);
  pointer-events: none;
}
.feature-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.feature-list-pink li {
  padding-left: 28px;
}
.feature-list-pink li::before {
  content: "✓";
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  color: #ff61a3;
  background: none;
  font-weight: 700;
  box-shadow: none;
}
.landing-list {
  display: grid;
  gap: 12px;
}
.package-fit {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 97, 163, 0.18);
  border-radius: 18px;
  background: rgba(255, 97, 163, 0.07);
}

.managed-intro {
  max-width: 940px;
}
.managed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.managed-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  min-height: 100%;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.managed-card:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 95, 248, 0.34);
  background: rgba(255, 255, 255, 0.04);
}
.managed-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(91, 60, 245, 0.28), rgba(255, 97, 163, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 20px;
}
.managed-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.managed-benefit h3 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 14px;
}
.managed-benefit strong {
  font-size: clamp(26px, 4vw, 44px);
  max-width: 260px;
  text-align: right;
  line-height: 1.05;
}

.pricing-head-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}
.billing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}
.billing-toggle {
  display: inline-flex;
  gap: 4px;
}
.billing-toggle button {
  border: 0;
  border-radius: 999px;
  padding: 10px 17px;
  color: var(--text-muted);
  background: transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.billing-toggle button.active {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 10px 22px rgba(91, 60, 245, 0.28);
}
.save-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #d5ffe8;
  background: rgba(19, 167, 91, 0.18);
  border: 1px solid rgba(71, 235, 145, 0.24);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.subscription-card {
  padding: 32px;
}
.subscription-card .price-value {
  min-height: 58px;
  display: flex;
  align-items: center;
}
.plan-badge {
  width: max-content;
  margin-bottom: 16px;
}
.subscription-section[data-billing="monthly"] .price-yearly,
.subscription-section[data-billing="yearly"] .price-monthly {
  display: none !important;
}
.subscription-section[data-billing="yearly"] .billing-toggle [data-billing-set="yearly"],
.subscription-section[data-billing="monthly"] .billing-toggle [data-billing-set="monthly"] {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 10px 22px rgba(91, 60, 245, 0.28);
}
.subscription-section[data-billing="yearly"] .billing-toggle [data-billing-set="monthly"],
.subscription-section[data-billing="monthly"] .billing-toggle [data-billing-set="yearly"] {
  color: var(--text-muted);
  background: transparent;
  box-shadow: none;
}
.annual-banner strong {
  color: #d5ffe8;
}

.consult-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, rgba(91, 60, 245, 0.16), rgba(255, 97, 163, 0.08));
  box-shadow: var(--shadow);
}
.consult-card h2 {
  font-size: clamp(26px, 3.6vw, 44px);
  margin-bottom: 8px;
}
.consult-card .managed-icon {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .pricing-grid-two,
  .pricing-grid-three,
  .managed-grid {
    grid-template-columns: 1fr;
  }
  .pricing-head-row,
  .consult-card {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .managed-benefit strong {
    text-align: left;
  }
}
@media (max-width: 680px) {
  .price-card-xl,
  .subscription-card,
  .managed-card,
  .consult-card {
    padding: 24px 20px;
  }
  .feature-columns {
    grid-template-columns: 1fr;
  }
  .billing-toggle-wrap {
    width: 100%;
    flex-wrap: wrap;
    border-radius: 24px;
  }
  .billing-toggle {
    width: 100%;
  }
  .billing-toggle button {
    flex: 1;
  }
  .save-pill {
    width: 100%;
    justify-content: center;
  }
}


/* === Final client requested navbar + pricing title fix === */
.topbar,
body[data-page="project"] .topbar {
  background: rgba(7, 9, 18, 0.42) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(26px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(26px) saturate(180%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 18px 48px rgba(0, 0, 0, 0.20) !important;
}

.topbar .nav {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.nav-links a:not([data-nav="book"]),
.nav-links a:not([data-nav="book"]):hover,
body[data-page="home"] .nav-links a[data-nav="home"],
body[data-page="services"] .nav-links a[data-nav="services"],
body[data-page="case-studies"] .nav-links a[data-nav="case-studies"],
body[data-page="about"] .nav-links a[data-nav="about"],
body[data-page="project"] .nav-links a[data-nav="pricing"],
body[data-page="our-works"] .nav-links a[data-nav="our-works"],
body[data-page="impressum"] .nav-links a[data-nav="impressum"],
body[data-page="privacy"] .nav-links a[data-nav="privacy"],
body[data-page="cookies"] .nav-links a[data-nav="cookies"] {
  min-height: auto !important;
  padding: 12px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: rgba(247, 248, 252, 0.86) !important;
}

.nav-links a:not([data-nav="book"]):hover,
body[data-page="home"] .nav-links a[data-nav="home"],
body[data-page="services"] .nav-links a[data-nav="services"],
body[data-page="case-studies"] .nav-links a[data-nav="case-studies"],
body[data-page="about"] .nav-links a[data-nav="about"],
body[data-page="project"] .nav-links a[data-nav="pricing"],
body[data-page="our-works"] .nav-links a[data-nav="our-works"] {
  color: #ffffff !important;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18) !important;
}

.nav-links a[data-nav="book"],
.nav-links a[data-nav="book"]:hover,
body[data-page="book"] .nav-links a[data-nav="book"] {
  padding: 12px 18px !important;
  border-radius: 999px !important;
}

.mobile-panel {
  background: rgba(7, 9, 18, 0.66) !important;
  backdrop-filter: blur(26px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(26px) saturate(180%) !important;
}

.mobile-links a {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.mobile-links li:last-child a {
  justify-content: center;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #35d6f6 0%, #20b7ea 45%, #5a78ff 100%) !important;
  box-shadow:
    0 16px 32px rgba(32, 183, 234, 0.26),
    0 0 24px rgba(90, 120, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

body[data-page="project"] .pricing-hero h1 {
  max-width: none !important;
  white-space: nowrap;
  font-size: clamp(34px, 5vw, 72px);
}

@media (max-width: 680px) {
  body[data-page="project"] .pricing-hero h1 {
    font-size: clamp(17px, 5.6vw, 36px);
    letter-spacing: -0.055em;
  }
}

/* === Client update: larger navbar text + wider menu gaps === */
.nav-links,
.topbar .nav-links {
  gap: clamp(22px, 2.35vw, 34px) !important;
}

.nav-links a,
.topbar .nav-links a,
.nav-links a:not([data-nav="book"]),
.topbar .nav-links a:not([data-nav="book"]) {
  font-size: 15.8px !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
}

.nav-links a:not([data-nav="book"]),
.nav-links a:not([data-nav="book"]):hover,
body[data-page="home"] .nav-links a[data-nav="home"],
body[data-page="services"] .nav-links a[data-nav="services"],
body[data-page="case-studies"] .nav-links a[data-nav="case-studies"],
body[data-page="about"] .nav-links a[data-nav="about"],
body[data-page="project"] .nav-links a[data-nav="pricing"],
body[data-page="our-works"] .nav-links a[data-nav="our-works"],
body[data-page="impressum"] .nav-links a[data-nav="impressum"],
body[data-page="privacy"] .nav-links a[data-nav="privacy"],
body[data-page="cookies"] .nav-links a[data-nav="cookies"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.nav-links a[data-nav="book"],
.nav-links a[data-nav="book"]:hover,
body[data-page="book"] .nav-links a[data-nav="book"] {
  font-size: 15.8px !important;
  padding: 12px 20px !important;
}

.mobile-links {
  gap: 14px !important;
}

.mobile-links a {
  font-size: 17px !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

@media (max-width: 1180px) {
  .nav-links,
  .topbar .nav-links {
    gap: 18px !important;
  }

  .nav-links a,
  .topbar .nav-links a,
  .nav-links a:not([data-nav="book"]),
  .topbar .nav-links a:not([data-nav="book"]) {
    font-size: 15.2px !important;
  }
}

/* === Client update: result/ergebnis section after solution === */
.result-system-section {
  position: relative;
  overflow: hidden;
}

.result-system-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(123, 95, 248, 0.24);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 20%, rgba(53, 214, 246, 0.16), transparent 34%),
    radial-gradient(circle at 10% 0%, rgba(123, 95, 248, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.result-system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.045) 42%, transparent 72%);
}

.result-system-copy {
  position: relative;
  z-index: 2;
}

.result-system-copy .section-title {
  max-width: 950px;
  font-size: clamp(30px, 4vw, 58px);
}

.result-system-copy .section-subtitle {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-primary);
}

.result-system-copy p:not(.section-subtitle) {
  max-width: 760px;
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.75;
}

.result-system-actions {
  margin-top: 28px;
}

.result-system-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  isolation: isolate;
}

.result-core {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(53, 214, 246, 0.9), rgba(91, 120, 255, 0.78));
  box-shadow:
    0 0 55px rgba(53, 214, 246, 0.26),
    0 28px 60px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  color: #fff;
  font-size: 56px;
  font-weight: 300;
  z-index: 3;
}

.result-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 0 30px rgba(123, 95, 248, 0.08);
}

.result-orbit-one {
  width: 280px;
  height: 280px;
}

.result-orbit-two {
  width: 210px;
  height: 210px;
  transform: rotate(26deg) skew(-8deg);
  border-color: rgba(53, 214, 246, 0.18);
}

@media (max-width: 900px) {
  .result-system-card {
    grid-template-columns: 1fr;
  }

  .result-system-visual {
    min-height: 220px;
  }
}

@media (max-width: 620px) {
  .result-system-card {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .result-system-copy .section-title {
    font-size: clamp(28px, 9vw, 40px);
  }

  .result-system-copy p:not(.section-subtitle) {
    font-size: 15.5px;
  }

  .result-core {
    width: 104px;
    height: 104px;
    font-size: 44px;
  }

  .result-orbit-one {
    width: 220px;
    height: 220px;
  }

  .result-orbit-two {
    width: 170px;
    height: 170px;
  }
}

/* === Client update: problem section like reference video with relevant visual images === */
body[data-page="home"] .problem-media-grid {
  gap: clamp(22px, 2.6vw, 34px) !important;
  align-items: start;
}

body[data-page="home"] .problem-media-grid .problem-feature-card {
  min-height: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 22px !important;
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-page="home"] .problem-media-grid .problem-feature-card::after {
  display: none !important;
}

body[data-page="home"] .problem-media-grid .problem-feature-card:hover {
  transform: translateY(-6px) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

body[data-page="home"] .problem-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 15, 24, 0.92);
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

body[data-page="home"] .problem-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 34%),
    radial-gradient(circle at 76% 15%, rgba(53, 214, 246, 0.14), transparent 28%),
    radial-gradient(circle at 16% 88%, rgba(123, 95, 248, 0.16), transparent 34%);
  opacity: 0.78;
}

body[data-page="home"] .problem-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.48s ease, filter 0.48s ease;
}

body[data-page="home"] .problem-feature-card:hover .problem-visual {
  border-color: rgba(123, 95, 248, 0.38);
  box-shadow:
    0 30px 74px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(91, 120, 255, 0.16),
    0 0 44px rgba(53, 214, 246, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

body[data-page="home"] .problem-feature-card:hover .problem-visual img {
  transform: scale(1.07);
  filter: saturate(1.12) contrast(1.04);
}

body[data-page="home"] .problem-media-grid .problem-icon {
  position: absolute !important;
  top: 18px;
  left: 18px;
  z-index: 4;
  width: 46px !important;
  height: 46px !important;
  border-radius: 15px !important;
  font-size: 14px !important;
  color: #ffffff !important;
  background:
    linear-gradient(145deg, rgba(123, 95, 248, 0.52), rgba(255, 107, 53, 0.18)) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

body[data-page="home"] .problem-copy {
  padding: 0 2px;
}

body[data-page="home"] .problem-copy h3 {
  font-size: clamp(21px, 1.65vw, 27px) !important;
  line-height: 1.34;
  margin: 0 0 14px;
  letter-spacing: -0.045em;
}

body[data-page="home"] .problem-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15.5px !important;
  line-height: 1.72;
}

@media (max-width: 980px) {
  body[data-page="project"] .pricing-savings-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 26px;
  }
  body[data-page="project"] .pricing-savings-amount {
    justify-self: start;
  }
}
@media (max-width: 1100px) {
  body[data-page="home"] .problem-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .problem-media-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  body[data-page="home"] .problem-visual {
    aspect-ratio: 1.32 / 1;
    border-radius: 20px;
  }

  body[data-page="home"] .problem-copy h3 {
    font-size: 23px !important;
  }
}


/* === Client update: problem visuals matched to video reference: no numbers + left/back shade === */
body[data-page="home"] .problem-media-grid .problem-icon {
  display: none !important;
}

body[data-page="home"] .problem-media-grid .problem-feature-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
}

body[data-page="home"] .problem-visual {
  aspect-ratio: 1 / 1 !important;
  border-radius: 20px !important;
  border: 0 !important;
  background: #0f1014 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

body[data-page="home"] .problem-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.022) 14%, rgba(255,255,255,0) 35%),
    linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0) 34%);
  opacity: 0.72;
}

body[data-page="home"] .problem-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 18%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(37,39,48,0.56) 0%, rgba(27,29,36,0.26) 70%, rgba(27,29,36,0) 100%);
}

body[data-page="home"] .problem-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: none !important;
  filter: none !important;
}

body[data-page="home"] .problem-feature-card:hover .problem-visual img {
  transform: scale(1.035) !important;
  filter: saturate(1.08) contrast(1.03) !important;
}

body[data-page="home"] .problem-copy {
  padding: 0 !important;
}

/* === Final exact client fix: problem cards matched to reference video === */
body[data-page="home"] .problem-video-section {
  background: #000000 !important;
  overflow: hidden !important;
}

body[data-page="home"] .problem-video-section .container {
  max-width: 1390px !important;
}

body[data-page="home"] .problem-video-section .problem-media-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(28px, 2.2vw, 38px) !important;
  align-items: start !important;
  margin-top: 42px !important;
}

body[data-page="home"] .problem-video-section .problem-feature-card {
  position: relative !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 28px !important;
  transform: none !important;
}

body[data-page="home"] .problem-video-section .problem-feature-card::after,
body[data-page="home"] .problem-video-section .problem-feature-card::before {
  content: "" !important;
  position: absolute !important;
  inset: -2px 0 auto 0 !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 24px !important;
  z-index: 0 !important;
  pointer-events: none !important;
  opacity: 0 !important;
  background:
    linear-gradient(135deg, rgba(74, 126, 255, 0.95) 0%, rgba(74, 126, 255, 0.45) 15%, rgba(255, 67, 138, 0.05) 42%, rgba(255, 67, 138, 0) 68%),
    linear-gradient(90deg, rgba(63, 108, 255, 0.75) 0%, rgba(63, 108, 255, 0.18) 11%, rgba(63, 108, 255, 0) 35%);
  filter: blur(0.1px) !important;
  animation: problemVideoEdge 8.8s linear infinite !important;
}

body[data-page="home"] .problem-video-section .problem-feature-card::before {
  inset: 12px auto auto -15px !important;
  width: 36% !important;
  height: calc(100% - 28px) !important;
  max-height: 320px !important;
  aspect-ratio: auto !important;
  border-radius: 24px 0 0 24px !important;
  background: linear-gradient(90deg, rgba(35, 42, 69, 0.62) 0%, rgba(21, 24, 39, 0.34) 48%, rgba(21, 24, 39, 0) 100%) !important;
  opacity: 1 !important;
  filter: none !important;
  animation: none !important;
}

body[data-page="home"] .problem-video-section .problem-feature-card:nth-child(2)::after { animation-delay: -6.6s !important; background: linear-gradient(135deg, rgba(255, 50, 128, 0.95) 0%, rgba(255, 50, 128, 0.42) 15%, rgba(69, 104, 255, 0.10) 45%, rgba(69, 104, 255, 0) 72%), linear-gradient(90deg, rgba(54, 99, 255, 0.70) 0%, rgba(54, 99, 255, 0.16) 11%, rgba(54, 99, 255, 0) 35%) !important; }
body[data-page="home"] .problem-video-section .problem-feature-card:nth-child(3)::after { animation-delay: -4.4s !important; background: linear-gradient(135deg, rgba(84, 167, 255, 0.95) 0%, rgba(84, 167, 255, 0.42) 15%, rgba(92, 109, 255, 0.12) 45%, rgba(92, 109, 255, 0) 72%), linear-gradient(90deg, rgba(64, 104, 255, 0.76) 0%, rgba(64, 104, 255, 0.16) 11%, rgba(64, 104, 255, 0) 35%) !important; }
body[data-page="home"] .problem-video-section .problem-feature-card:nth-child(4)::after { animation-delay: -2.2s !important; background: linear-gradient(135deg, rgba(255, 65, 170, 0.96) 0%, rgba(255, 65, 170, 0.44) 15%, rgba(68, 98, 255, 0.12) 47%, rgba(68, 98, 255, 0) 72%), linear-gradient(90deg, rgba(64, 104, 255, 0.62) 0%, rgba(64, 104, 255, 0.14) 11%, rgba(64, 104, 255, 0) 35%) !important; }

@keyframes problemVideoEdge {
  0%, 19%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  3%, 14% { opacity: 1; transform: translateY(-1px) scale(1.012); }
}

body[data-page="home"] .problem-video-section .problem-visual {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  border: 0 !important;
  border-radius: 22px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
  transform: none !important;
  transition: transform 0.38s ease !important;
}

body[data-page="home"] .problem-video-section .problem-visual::before,
body[data-page="home"] .problem-video-section .problem-visual::after {
  display: none !important;
}

body[data-page="home"] .problem-video-section .problem-visual img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  transform: none !important;
  filter: none !important;
  transition: transform 0.42s ease, filter 0.42s ease !important;
}

body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-visual img {
  transform: scale(1.018) !important;
  filter: brightness(1.06) saturate(1.06) !important;
}

body[data-page="home"] .problem-video-section .problem-copy {
  position: relative !important;
  z-index: 2 !important;
  padding: 0 !important;
  margin: 0 !important;
}

body[data-page="home"] .problem-video-section .problem-copy h3 {
  color: #ffffff !important;
  font-size: clamp(20px, 1.45vw, 24px) !important;
  line-height: 1.28 !important;
  letter-spacing: -0.035em !important;
  margin: 0 0 14px !important;
  font-weight: 500 !important;
}

body[data-page="home"] .problem-video-section .problem-copy p {
  color: rgba(255, 255, 255, 0.56) !important;
  font-size: clamp(14px, 1vw, 16px) !important;
  line-height: 1.55 !important;
  letter-spacing: -0.01em !important;
  margin: 0 !important;
  max-width: 34ch !important;
}

body[data-page="home"] .problem-video-section .problem-media-grid .problem-icon,
body[data-page="home"] .problem-video-section .problem-media-grid [class*="problem-icon"] {
  display: none !important;
}

@media (max-width: 1100px) {
  body[data-page="home"] .problem-video-section .problem-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 38px 30px !important;
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .problem-video-section .container {
    max-width: 100% !important;
  }
  body[data-page="home"] .problem-video-section .problem-media-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  body[data-page="home"] .problem-video-section .problem-feature-card::before {
    max-height: none !important;
  }
  body[data-page="home"] .problem-video-section .problem-copy h3 {
    font-size: 22px !important;
  }
  body[data-page="home"] .problem-video-section .problem-copy p {
    max-width: none !important;
  }
}

/* === FINAL CLIENT FIX: exact video-style problem row (image top, no number/card box, left/back colour shade) === */
body[data-page="home"] .problem-video-section{
  background:#000 !important;
}
body[data-page="home"] .problem-video-section .container{
  max-width:1380px !important;
}
body[data-page="home"] .problem-video-section .problem-media-grid{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:clamp(28px,2.05vw,34px) !important;
  align-items:start !important;
  margin-top:40px !important;
}
body[data-page="home"] .problem-video-section .problem-feature-card,
body[data-page="home"] .problem-video-section .problem-feature-card.problem-card{
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  min-height:auto !important;
  overflow:visible !important;
  display:flex !important;
  flex-direction:column !important;
  gap:32px !important;
  transform:none !important;
}
body[data-page="home"] .problem-video-section .problem-feature-card::before,
body[data-page="home"] .problem-video-section .problem-feature-card::after{
  display:none !important;
  content:none !important;
}
body[data-page="home"] .problem-video-section .problem-visual{
  position:relative !important;
  width:100% !important;
  aspect-ratio:1 / 1 !important;
  border:0 !important;
  border-radius:18px !important;
  overflow:hidden !important;
  background:#0b0b0c !important;
  box-shadow:0 22px 44px rgba(0,0,0,.62) !important;
  transform:none !important;
}
body[data-page="home"] .problem-video-section .problem-visual::before{
  content:"" !important;
  display:block !important;
  position:absolute !important;
  inset:0 !important;
  z-index:0 !important;
  border-radius:inherit !important;
  background:linear-gradient(135deg,#0d0d0f 0%,#101114 52%,#060607 100%) !important;
}
body[data-page="home"] .problem-video-section .problem-visual::after{
  content:"" !important;
  display:block !important;
  position:absolute !important;
  inset:0 !important;
  z-index:1 !important;
  border-radius:inherit !important;
  opacity:0 !important;
  background:
    radial-gradient(circle at 22% 0%,rgba(255,255,255,.72),rgba(255,255,255,0) 34%),
    linear-gradient(135deg,rgba(226,232,255,.96) 0%,rgba(95,151,255,.98) 22%,rgba(255,55,147,.95) 57%,rgba(255,41,112,.92) 100%) !important;
  animation:agsProblemShade 12s cubic-bezier(.25,.1,.25,1) infinite !important;
}
body[data-page="home"] .problem-video-section .problem-feature-card:nth-child(1) .problem-visual::after{animation-delay:0s !important;}
body[data-page="home"] .problem-video-section .problem-feature-card:nth-child(2) .problem-visual::after{animation-delay:3s !important;}
body[data-page="home"] .problem-video-section .problem-feature-card:nth-child(3) .problem-visual::after{animation-delay:6s !important;}
body[data-page="home"] .problem-video-section .problem-feature-card:nth-child(4) .problem-visual::after{animation-delay:9s !important;}
@keyframes agsProblemShade{
  0%,17%{opacity:1;}
  24%,100%{opacity:0;}
}
body[data-page="home"] .problem-video-section .problem-visual img{
  position:absolute !important;
  z-index:2 !important;
  left:11% !important;
  top:11% !important;
  width:89% !important;
  height:89% !important;
  object-fit:cover !important;
  object-position:center !important;
  border-radius:17px !important;
  display:block !important;
  filter:brightness(.92) contrast(1.04) saturate(.98) !important;
  transform:none !important;
  box-shadow:-18px -18px 34px rgba(0,0,0,.28) !important;
}
body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-visual img{
  transform:none !important;
  filter:brightness(.96) contrast(1.05) saturate(1.02) !important;
}
body[data-page="home"] .problem-video-section .problem-copy{
  padding:0 !important;
  margin:0 !important;
}
body[data-page="home"] .problem-video-section .problem-copy h3{
  color:#fff !important;
  font-size:clamp(20px,1.35vw,23px) !important;
  line-height:1.32 !important;
  font-weight:500 !important;
  letter-spacing:-.04em !important;
  margin:0 0 13px !important;
}
body[data-page="home"] .problem-video-section .problem-copy p{
  color:rgba(255,255,255,.55) !important;
  font-size:clamp(14px,.92vw,16px) !important;
  line-height:1.52 !important;
  letter-spacing:-.015em !important;
  margin:0 !important;
  max-width:34ch !important;
}
body[data-page="home"] .problem-video-section .problem-icon,
body[data-page="home"] .problem-video-section [class*="problem-icon"]{
  display:none !important;
}
@media(max-width:1100px){
  body[data-page="home"] .problem-video-section .problem-media-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:42px 32px !important;}
}
@media(max-width:680px){
  body[data-page="home"] .problem-video-section .problem-media-grid{grid-template-columns:1fr !important;gap:38px !important;}
  body[data-page="home"] .problem-video-section .problem-visual img{left:9% !important;top:9% !important;width:91% !important;height:91% !important;}
  body[data-page="home"] .problem-video-section .problem-copy p{max-width:none !important;}
}


/* === Hover/Tilt animation fix for the home problem image section === */
@media (hover: hover) and (pointer: fine) {
  body[data-page="home"] .problem-video-section .problem-feature-card,
  body[data-page="home"] .problem-video-section .problem-feature-card.problem-card {
    --ags-tilt-x: 0deg;
    --ags-tilt-y: 0deg;
    --ags-card-lift: 0px;
    --ags-mx: 50%;
    --ags-my: 50%;
    cursor: pointer !important;
    transform: perspective(1000px) translateY(var(--ags-card-lift)) rotateX(var(--ags-tilt-x)) rotateY(var(--ags-tilt-y)) !important;
    transform-style: preserve-3d !important;
    transform-origin: center center !important;
    will-change: transform !important;
    transition: transform .36s cubic-bezier(.22,.61,.36,1), filter .36s ease !important;
  }

  body[data-page="home"] .problem-video-section .problem-feature-card:hover,
  body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting {
    --ags-card-lift: -12px;
  }

  body[data-page="home"] .problem-video-section .problem-visual {
    transform: translateZ(0) !important;
    transform-style: preserve-3d !important;
    will-change: transform, box-shadow !important;
    transition: transform .46s cubic-bezier(.22,.61,.36,1), box-shadow .46s ease, filter .46s ease !important;
  }

  body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-visual,
  body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting .problem-visual {
    transform: translateZ(34px) !important;
    box-shadow:
      0 30px 60px rgba(0,0,0,.72),
      0 0 26px rgba(74,116,255,.20),
      0 0 48px rgba(255,45,118,.13) !important;
  }

  body[data-page="home"] .problem-video-section .problem-visual::after {
    animation: none !important;
    opacity: 0 !important;
    transform: translate3d(0,38px,0) scale(.84) !important;
    filter: blur(32px) saturate(1.15) !important;
    mix-blend-mode: screen !important;
    background:
      radial-gradient(circle at var(--ags-mx) var(--ags-my), rgba(255,255,255,.58), rgba(255,255,255,0) 28%),
      radial-gradient(circle at 25% 5%, rgba(55,111,255,.90), rgba(55,111,255,0) 48%),
      radial-gradient(circle at 88% 84%, rgba(255,42,116,.82), rgba(255,42,116,0) 54%),
      linear-gradient(135deg, rgba(80,131,255,.78), rgba(255,44,117,.65)) !important;
    transition: opacity .46s ease, transform .46s cubic-bezier(.22,.61,.36,1), filter .46s ease !important;
  }

  body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-visual::after,
  body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting .problem-visual::after {
    opacity: .76 !important;
    transform: translate3d(0,0,0) scale(1.12) !important;
  }

  body[data-page="home"] .problem-video-section .problem-visual img {
    backface-visibility: hidden !important;
    will-change: transform, filter !important;
    transform: translate3d(0,0,0) scale(1) !important;
    transition: transform .48s cubic-bezier(.22,.61,.36,1), filter .48s ease, box-shadow .48s ease !important;
  }

  body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-visual img,
  body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting .problem-visual img {
    transform: translate3d(0,-12px,54px) scale(1.065) !important;
    filter: brightness(1.08) contrast(1.07) saturate(1.06) !important;
    box-shadow: -22px -22px 38px rgba(0,0,0,.34) !important;
  }

  body[data-page="home"] .problem-video-section .problem-copy {
    transform: translateZ(18px) !important;
    transform-style: preserve-3d !important;
  }

  body[data-page="home"] .problem-video-section .problem-copy h3,
  body[data-page="home"] .problem-video-section .problem-copy p {
    transition: transform .36s ease, color .36s ease !important;
  }

  body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-copy h3,
  body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting .problem-copy h3 {
    transform: translateY(-4px) !important;
  }

  body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-copy p,
  body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting .problem-copy p {
    color: rgba(255,255,255,.72) !important;
  }
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  body[data-page="home"] .problem-video-section .problem-feature-card,
  body[data-page="home"] .problem-video-section .problem-feature-card.problem-card,
  body[data-page="home"] .problem-video-section .problem-visual,
  body[data-page="home"] .problem-video-section .problem-visual img {
    transform: none !important;
  }
}

/* === Client update: stronger glowing problem visuals + no-fixed-price pricing service builder === */
body[data-page="home"] .problem-video-section .problem-feature-card,
body[data-page="home"] .problem-video-section .problem-feature-card.problem-card {
  position: relative !important;
  border-radius: 28px !important;
}
body[data-page="home"] .problem-video-section .problem-feature-card::before,
body[data-page="home"] .problem-video-section .problem-feature-card.problem-card::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  z-index: 0 !important;
  left: -9% !important;
  top: -5% !important;
  width: 88% !important;
  height: min(72%, 280px) !important;
  border-radius: 34px !important;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.34), rgba(255,255,255,0) 25%),
    radial-gradient(circle at 38% 20%, rgba(70,118,255,.72), rgba(70,118,255,0) 46%),
    radial-gradient(circle at 18% 72%, rgba(255,42,126,.56), rgba(255,42,126,0) 52%),
    linear-gradient(135deg, rgba(34,55,134,.75), rgba(255,47,125,.35)) !important;
  filter: blur(28px) saturate(1.26) !important;
  opacity: .74 !important;
  pointer-events: none !important;
  transform: translate3d(0,0,0) scale(.98) !important;
  transition: opacity .48s ease, transform .48s cubic-bezier(.22,.61,.36,1), filter .48s ease !important;
}
body[data-page="home"] .problem-video-section .problem-feature-card:nth-child(2)::before {
  background:
    radial-gradient(circle at 14% 15%, rgba(255,255,255,.28), rgba(255,255,255,0) 24%),
    radial-gradient(circle at 44% 12%, rgba(68,104,255,.78), rgba(68,104,255,0) 48%),
    radial-gradient(circle at 22% 75%, rgba(255,54,144,.58), rgba(255,54,144,0) 54%),
    linear-gradient(135deg, rgba(33,53,145,.74), rgba(255,58,130,.34)) !important;
}
body[data-page="home"] .problem-video-section .problem-feature-card:nth-child(3)::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,.26), rgba(255,255,255,0) 25%),
    radial-gradient(circle at 40% 18%, rgba(55,143,255,.82), rgba(55,143,255,0) 48%),
    radial-gradient(circle at 20% 76%, rgba(70,95,255,.56), rgba(70,95,255,0) 54%),
    linear-gradient(135deg, rgba(28,65,150,.78), rgba(75,89,255,.32)) !important;
}
body[data-page="home"] .problem-video-section .problem-feature-card:nth-child(4)::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,.26), rgba(255,255,255,0) 25%),
    radial-gradient(circle at 42% 18%, rgba(83,107,255,.76), rgba(83,107,255,0) 48%),
    radial-gradient(circle at 18% 75%, rgba(255,56,156,.64), rgba(255,56,156,0) 54%),
    linear-gradient(135deg, rgba(36,52,148,.76), rgba(255,54,152,.36)) !important;
}
body[data-page="home"] .problem-video-section .problem-feature-card:hover::before,
body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting::before {
  opacity: 1 !important;
  filter: blur(32px) saturate(1.46) !important;
  transform: translate3d(-2%, -2%, 0) scale(1.10) !important;
}
body[data-page="home"] .problem-video-section .problem-visual {
  z-index: 1 !important;
  border-radius: 24px !important;
  background: #07080c !important;
  overflow: hidden !important;
  clip-path: inset(0 round 24px) !important;
  border: 1px solid rgba(255,255,255,.055) !important;
  box-shadow:
    0 26px 64px rgba(0,0,0,.78),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(255,255,255,.035) !important;
}
body[data-page="home"] .problem-video-section .problem-visual::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0) 34%),
    radial-gradient(circle at 15% 12%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(135deg, #11141b 0%, #090a0f 54%, #050506 100%) !important;
}
body[data-page="home"] .problem-video-section .problem-visual::after {
  filter: blur(24px) saturate(1.34) !important;
  background:
    radial-gradient(circle at var(--ags-mx, 45%) var(--ags-my, 35%), rgba(255,255,255,.72), rgba(255,255,255,0) 24%),
    radial-gradient(circle at 26% 0%, rgba(78,125,255,.98), rgba(78,125,255,0) 42%),
    radial-gradient(circle at 90% 86%, rgba(255,47,133,.95), rgba(255,47,133,0) 52%),
    linear-gradient(135deg, rgba(84,132,255,.88), rgba(255,47,132,.78)) !important;
}
body[data-page="home"] .problem-video-section .problem-visual img {
  left: 10% !important;
  top: 10% !important;
  width: 90% !important;
  height: 90% !important;
  border-radius: 20px !important;
  box-shadow:
    -22px -22px 42px rgba(0,0,0,.36),
    0 0 0 1px rgba(255,255,255,.035) !important;
}
@media (hover: hover) and (pointer: fine) {
  body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-visual,
  body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting .problem-visual {
    transform: translateZ(44px) !important;
    box-shadow:
      0 34px 78px rgba(0,0,0,.82),
      0 0 34px rgba(75,119,255,.34),
      0 0 82px rgba(255,47,132,.24),
      inset 0 1px 0 rgba(255,255,255,.10) !important;
  }
  body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-visual::after,
  body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting .problem-visual::after {
    opacity: .96 !important;
    transform: translate3d(0,0,0) scale(1.22) !important;
  }
  body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-visual img,
  body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting .problem-visual img {
    transform: translate3d(0,-14px,68px) scale(1.07) !important;
    filter: brightness(1.13) contrast(1.09) saturate(1.12) !important;
  }
}

body[data-page="project"] .service-builder-section {
  padding-top: 42px !important;
}
body[data-page="project"] .service-builder-intro {
  max-width: 980px !important;
}
body[data-page="project"] .scope-callout {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: clamp(28px, 4.2vw, 52px);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 14% 10%, rgba(255,255,255,.10), rgba(255,255,255,0) 28%),
    linear-gradient(135deg, rgba(86,76,255,.18), rgba(255,60,144,.10) 48%, rgba(255,255,255,.035));
  box-shadow: 0 28px 80px rgba(0,0,0,.50), inset 0 1px 0 rgba(255,255,255,.08);
}
body[data-page="project"] .scope-callout-glow {
  position: absolute;
  right: -14%;
  top: -40%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,72,151,.42), rgba(91,103,255,.22) 42%, rgba(255,255,255,0) 68%);
  filter: blur(14px);
  pointer-events: none;
}
body[data-page="project"] .scope-callout h3 {
  position: relative;
  max-width: 880px;
  margin: 14px 0 12px;
  font-size: clamp(30px, 4.6vw, 58px);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: 1.02;
}
body[data-page="project"] .scope-callout p {
  position: relative;
  max-width: 760px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
body[data-page="project"] .service-menu-section .container {
  max-width: 1360px;
}
body[data-page="project"] .service-menu-heading {
  max-width: 880px;
}
body[data-page="project"] .service-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}
body[data-page="project"] .service-menu-card {
  --ags-tilt-x: 0deg;
  --ags-tilt-y: 0deg;
  --ags-card-lift: 0px;
  --ags-mx: 50%;
  --ags-my: 50%;
  position: relative;
  min-height: 282px;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.095);
  background:
    linear-gradient(180deg, rgba(255,255,255,.046), rgba(255,255,255,.018)),
    #08090e;
  overflow: hidden;
  transform: perspective(980px) translateY(var(--ags-card-lift)) rotateX(var(--ags-tilt-x)) rotateY(var(--ags-tilt-y));
  transform-style: preserve-3d;
  transition: transform .38s cubic-bezier(.22,.61,.36,1), border-color .38s ease, box-shadow .38s ease, background .38s ease;
  box-shadow: 0 18px 48px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.05);
}
body[data-page="project"] .service-menu-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--ags-mx) var(--ags-my), rgba(255,255,255,.28), transparent 24%),
    radial-gradient(circle at 18% 4%, rgba(86,127,255,.62), transparent 38%),
    radial-gradient(circle at 90% 92%, rgba(255,58,143,.52), transparent 46%);
  opacity: .42;
  filter: blur(18px) saturate(1.2);
  transform: scale(.94);
  transition: opacity .42s ease, transform .42s cubic-bezier(.22,.61,.36,1), filter .42s ease;
  pointer-events: none;
}
body[data-page="project"] .service-menu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 26%, transparent 68%, rgba(255,255,255,.035));
  pointer-events: none;
}
body[data-page="project"] .service-menu-card:hover,
body[data-page="project"] .service-menu-card.is-tilting {
  --ags-card-lift: -10px;
  border-color: rgba(255,91,164,.30);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.023)),
    #090a12;
  box-shadow:
    0 30px 76px rgba(0,0,0,.58),
    0 0 36px rgba(76,118,255,.20),
    0 0 74px rgba(255,58,143,.15),
    inset 0 1px 0 rgba(255,255,255,.08);
}
body[data-page="project"] .service-menu-card:hover::before,
body[data-page="project"] .service-menu-card.is-tilting::before {
  opacity: .96;
  transform: scale(1.08);
  filter: blur(22px) saturate(1.45);
}
body[data-page="project"] .service-menu-card > * {
  position: relative;
  z-index: 1;
}
body[data-page="project"] .service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .06em;
  background: linear-gradient(135deg, rgba(78,116,255,.50), rgba(255,58,143,.34));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 28px rgba(0,0,0,.32), 0 0 22px rgba(91,113,255,.20);
  transform: translateZ(28px);
}
body[data-page="project"] .service-menu-card h3 {
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -.04em;
  margin-bottom: 14px;
  transform: translateZ(22px);
}
body[data-page="project"] .service-menu-card p {
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.58;
  transform: translateZ(16px);
}
body[data-page="project"] .service-menu-card.featured-service {
  border-color: rgba(255,91,164,.20);
  background:
    radial-gradient(circle at 18% 6%, rgba(76,118,255,.16), transparent 36%),
    radial-gradient(circle at 92% 92%, rgba(255,58,143,.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.058), rgba(255,255,255,.02)),
    #08090e;
}
body[data-page="project"] .flexible-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}
body[data-page="project"] .flexible-steps-grid .story-card {
  min-height: 260px;
  overflow: hidden;
}
body[data-page="project"] .flexible-steps-grid .story-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,65,150,.22), transparent 68%);
  pointer-events: none;
}
@media (max-width: 1180px) {
  body[data-page="project"] .service-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  body[data-page="project"] .service-menu-grid,
  body[data-page="project"] .flexible-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  body[data-page="project"] .service-menu-grid,
  body[data-page="project"] .flexible-steps-grid {
    grid-template-columns: 1fr;
  }
  body[data-page="project"] .service-menu-card {
    min-height: auto;
  }
  body[data-page="project"] .scope-callout {
    border-radius: 26px;
  }
}
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  body[data-page="project"] .service-menu-card {
    transform: none !important;
  }
}
/* === Final responsive viewport, mobile and pricing readability pass === */
.hero-video-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + clamp(24px, 4vh, 42px)) !important;
  padding-bottom: clamp(28px, 4vh, 44px) !important;
}

@media (min-width: 961px) {
  .hero-video-section {
    height: 100svh;
    min-height: 620px;
    overflow: hidden;
  }

  .hero-video-section .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
    gap: clamp(34px, 4vw, 62px);
    align-items: center;
  }

  .hero-video-section .hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(48px, 4.2vw, 70px);
    line-height: 0.99;
  }

  .hero-video-section .eyebrow {
    margin-bottom: 13px;
  }

  .hero-video-section .hero-copy p {
    max-width: 36rem;
    margin: 16px 0 20px;
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.5;
  }

  .hero-video-section .hero-actions {
    margin-top: 20px;
    gap: 11px;
  }

  .hero-video-section .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-video-section .metric-strip {
    margin-top: 20px;
    gap: 10px;
  }

  .hero-video-section .metric {
    padding: 13px;
    border-radius: 15px;
  }

  .hero-video-section .metric strong {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 600;
  }

  .hero-video-section .metric span {
    display: block;
    margin-top: 6px;
    font-size: 11.5px;
    line-height: 1.4;
  }

  .hero-video-section .hero-panel {
    width: 100%;
    max-width: 520px;
    justify-self: end;
    padding: 21px;
    border-radius: 28px;
  }

  .hero-video-section .window-bar {
    padding: 12px 15px;
  }

  .hero-video-section .window-content {
    padding: 17px;
    gap: 11px;
  }

  .hero-video-section .mini-card {
    padding: 13px;
    border-radius: 17px;
  }

  .hero-video-section .mini-card p {
    font-size: 12.5px;
    line-height: 1.48;
  }

  .hero-video-section .system-grid {
    gap: 9px;
  }

  .hero-video-section .system-tile {
    padding: 12px;
    border-radius: 14px;
  }

  .hero-video-section .system-tile strong {
    margin-bottom: 5px;
    font-size: 12px;
  }

  .hero-video-section .system-tile span {
    font-size: 11.5px;
    line-height: 1.4;
  }
}

@media (min-width: 961px) and (max-height: 720px) {
  .hero-video-section {
    padding-top: calc(var(--nav-h) + 14px) !important;
    padding-bottom: 18px !important;
  }

  .hero-video-section .hero-copy h1 {
    font-size: clamp(44px, 3.8vw, 58px);
  }

  .hero-video-section .hero-copy p {
    margin: 12px 0 15px;
    font-size: 16px;
  }

  .hero-video-section .hero-actions,
  .hero-video-section .metric-strip {
    margin-top: 14px;
  }

  .hero-video-section .metric {
    padding: 10px 11px;
  }

  .hero-video-section .metric strong {
    font-size: 15px;
  }

  .hero-video-section .metric span {
    margin-top: 4px;
    font-size: 10.5px;
  }

  .hero-video-section .hero-panel {
    max-width: 470px;
    padding: 17px;
  }

  .hero-video-section .window-content {
    padding: 14px;
  }

  .hero-video-section .system-tile {
    padding: 10px;
  }
}

@media (max-width: 960px) {
  .hero-video-section {
    align-items: flex-start;
    min-height: 100svh;
    padding-top: calc(var(--nav-h) + 42px) !important;
    padding-bottom: 72px !important;
  }

  .hero-video-section .hero-grid {
    gap: 34px;
  }

  .hero-video-section .hero-panel {
    order: initial;
    width: min(100%, 720px);
    justify-self: center;
  }

  .hero-video-section .hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(44px, 7vw, 58px);
    line-height: 1;
  }

  .hero-video-section .hero-copy p {
    margin: 18px 0 24px;
    font-size: clamp(17px, 2.4vw, 20px);
    line-height: 1.55;
  }

  .hero-video-section .hero-actions {
    margin-top: 24px;
  }

  .hero-video-section .metric-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
  }

  .hero-video-section .metric strong {
    font-size: 20px;
    font-weight: 600;
  }
}

@media (max-width: 680px) {
  .hero-video-section {
    padding-top: calc(var(--nav-h) + 30px) !important;
    padding-bottom: 56px !important;
  }

  .hero-video-section .hero-grid {
    gap: 28px;
  }

  .hero-video-section .eyebrow {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero-video-section .hero-copy h1 {
    max-width: none;
    font-size: clamp(36px, 10.2vw, 42px);
    line-height: 1.02;
  }

  .hero-video-section .hero-copy p {
    margin: 16px 0 20px;
    font-size: 16px;
    line-height: 1.52;
  }

  .hero-video-section .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-video-section .hero-actions .btn {
    min-height: 48px;
    padding: 11px 18px;
  }

  .hero-video-section .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .hero-video-section .metric:last-child {
    grid-column: 1 / -1;
  }

  .hero-video-section .metric {
    padding: 13px;
  }

  .hero-video-section .metric strong {
    font-size: 16px;
    line-height: 1.22;
    font-weight: 600;
  }

  .hero-video-section .metric span {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.4;
  }

  .hero-video-section .hero-panel {
    padding: 15px;
    border-radius: 22px;
  }

  .hero-video-section .system-window {
    border-radius: 18px;
  }

  .hero-video-section .window-bar {
    min-height: 42px;
    padding: 10px 12px;
  }

  .hero-video-section .window-url {
    display: none;
  }

  .hero-video-section .window-content {
    padding: 13px;
    gap: 10px;
  }

  .hero-video-section .mini-card {
    padding: 12px;
    border-radius: 15px;
  }

  .hero-video-section .mini-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-video-section .system-grid {
    gap: 8px;
  }

  .hero-video-section .system-tile {
    min-height: 0;
    padding: 10px;
    border-radius: 13px;
  }

  .hero-video-section .system-tile strong {
    margin-bottom: 4px;
    font-size: 11.5px;
  }

  .hero-video-section .system-tile span {
    font-size: 10.5px;
    line-height: 1.35;
  }
}

/* Collapse the desktop navigation before it can overlap on smaller laptops. */
@media (max-width: 1380px) {
  .topbar .nav {
    display: flex !important;
    justify-content: space-between !important;
  }

  .topbar .nav-links {
    display: none !important;
  }

  .topbar .nav-toggle {
    display: inline-flex !important;
  }

  .topbar .nav-actions .lang-switch {
    display: none !important;
  }
}

/* Pricing text: slightly smaller, bolder, and softly colorful instead of plain white. */
body[data-page="project"] .pricing-hero h1,
body[data-page="project"] .scope-callout h3,
body[data-page="project"] .price-value,
body[data-page="project"] .addon-price {
  font-weight: 600 !important;
  background: linear-gradient(110deg, #8fe9ff 0%, #9b8cff 48%, #ff8bc4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
}

body[data-page="project"] .pricing-hero h1 {
  font-size: clamp(30px, 3.5vw, 50px) !important;
  max-width: 100% !important;
  white-space: normal !important;
  line-height: 1.04;
}

body[data-page="project"] .scope-callout h3 {
  font-size: clamp(27px, 3.6vw, 44px) !important;
  line-height: 1.08;
}

body[data-page="project"] .price-value,
body[data-page="project"] .addon-price {
  font-size: clamp(24px, 3vw, 38px) !important;
}

body[data-page="project"] .pricing-hero .hero-lead,
body[data-page="project"] .scope-callout p,
body[data-page="project"] .price-sub,
body[data-page="project"] .price-note {
  color: #b8c7ef !important;
  font-weight: 500;
}

@media (max-width: 680px) {
  body[data-page="project"] .pricing-hero h1 {
    white-space: normal !important;
    font-size: clamp(27px, 8.2vw, 36px) !important;
  }
}

@media (max-width: 680px) {
  .hero-video-section .hero-glow {
    right: 0;
    bottom: 0;
  }
}

/* === Final client refinement: readable hero text + glass navigation and CTAs === */
:root {
  --glass-corner: 22px;
}

/* Floating frosted-glass menu bar with rounded corners inspired by the reference. */
.topbar,
body[data-page="project"] .topbar {
  top: 12px !important;
  left: 12px !important;
  right: 12px !important;
  width: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.topbar .nav.container {
  width: 100% !important;
  max-width: none !important;
}

.topbar .nav {
  position: relative;
  min-height: var(--nav-h);
  border: 1px solid rgba(224, 242, 255, 0.25) !important;
  border-radius: var(--glass-corner) !important;
  background:
    radial-gradient(circle at 12% -35%, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(135deg, rgba(31, 42, 65, 0.60), rgba(9, 13, 28, 0.42) 54%, rgba(30, 26, 58, 0.48)) !important;
  backdrop-filter: blur(30px) saturate(175%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(175%) !important;
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.17),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04) !important;
  overflow: hidden;
}

.topbar .nav::before {
  display: block !important;
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.10), transparent 25%, transparent 72%, rgba(137, 116, 255, 0.10)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 42%);
}

.topbar .brand,
.topbar .nav-links,
.topbar .nav-actions {
  position: relative;
  z-index: 1;
}

/* Glass language controls and hamburger button. */
.lang-switch button,
.nav-toggle {
  border: 1px solid rgba(229, 242, 255, 0.20) !important;
  border-radius: 16px !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)) !important;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 9px 22px rgba(0, 0, 0, 0.18) !important;
}

.lang-switch button.active {
  background: linear-gradient(145deg, rgba(105, 226, 255, 0.24), rgba(120, 107, 255, 0.18)) !important;
  border-color: rgba(166, 232, 255, 0.34) !important;
}

/* Navigation CTA uses tinted glass instead of an opaque pill. */
.nav-links a[data-nav="book"],
.nav-links a[data-nav="book"]:hover,
body[data-page="book"] .nav-links a[data-nav="book"] {
  border: 1px solid rgba(193, 237, 255, 0.38) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(135deg, rgba(64, 219, 255, 0.34), rgba(77, 112, 255, 0.30)),
    rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(18px) saturate(165%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(165%) !important;
  box-shadow:
    0 13px 30px rgba(30, 145, 226, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(255, 255, 255, 0.07) !important;
}

/* All primary hero CTAs receive a readable, rounded glass treatment. */
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 18px !important;
  font-size: 15.5px;
  font-weight: 650;
  letter-spacing: 0.005em;
  backdrop-filter: blur(20px) saturate(165%);
  -webkit-backdrop-filter: blur(20px) saturate(165%);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.19), transparent 30%, transparent 72%, rgba(255, 255, 255, 0.07));
}

.btn-primary,
.btn-primary:hover {
  color: #ffffff;
  border: 1px solid rgba(192, 239, 255, 0.38) !important;
  background:
    linear-gradient(135deg, rgba(41, 208, 247, 0.32), rgba(82, 103, 255, 0.30)),
    rgba(255, 255, 255, 0.07) !important;
  box-shadow:
    0 16px 36px rgba(25, 146, 221, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(255, 255, 255, 0.07) !important;
}

.btn-secondary,
.btn-secondary:hover,
.btn-ghost,
.btn-ghost:hover {
  color: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid rgba(230, 240, 255, 0.24) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.052)) !important;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.21),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.035) !important;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* Bold, colourful premium headline while keeping strong contrast over video. */
.hero-video-section .hero-copy h1 {
  font-weight: 640 !important;
  letter-spacing: -0.018em;
  background: linear-gradient(105deg, #7cecff 0%, #79b8ff 27%, #a88cff 52%, #ff8fc8 76%, #ffd18b 100%);
  background-size: 160% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 7px 24px rgba(72, 118, 255, 0.19));
}

/* Improve every small text element in the first section without changing content or layout. */
.hero-video-section .eyebrow {
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.45;
  color: #a8dcff;
}

.hero-video-section .hero-copy p {
  font-weight: 450;
}

.hero-video-section .metric strong {
  font-size: 18px;
  font-weight: 700;
}

.hero-video-section .metric span {
  font-size: 13px;
  line-height: 1.48;
  color: rgba(235, 241, 255, 0.76);
}

.hero-video-section .window-url {
  font-size: 12px;
  color: rgba(227, 234, 255, 0.68);
}

.hero-video-section .mini-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(247, 249, 255, 0.92);
}

.hero-video-section .system-tile strong {
  font-size: 13.5px;
  font-weight: 700;
}

.hero-video-section .system-tile span {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(231, 236, 250, 0.76);
}

/* Glass mobile dropdown with the same rounded visual language. */
.mobile-panel,
body[data-page="project"] .mobile-panel {
  top: calc(12px + var(--nav-h) + 10px) !important;
  left: 12px !important;
  right: 12px !important;
  border: 1px solid rgba(224, 242, 255, 0.22) !important;
  border-radius: 20px !important;
  background:
    linear-gradient(145deg, rgba(25, 34, 54, 0.82), rgba(8, 12, 25, 0.74)) !important;
  backdrop-filter: blur(30px) saturate(175%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(175%) !important;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  overflow: hidden;
}

.mobile-links a {
  border-radius: 15px !important;
}

.mobile-links li:last-child a {
  border: 1px solid rgba(193, 237, 255, 0.34) !important;
  border-radius: 17px !important;
  background:
    linear-gradient(135deg, rgba(64, 219, 255, 0.30), rgba(77, 112, 255, 0.27)),
    rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(18px) saturate(165%);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
}

@media (min-width: 961px) and (max-height: 720px) {
  .hero-video-section .metric span {
    font-size: 12px;
  }

  .hero-video-section .mini-card p {
    font-size: 13px;
  }

  .hero-video-section .system-tile strong {
    font-size: 12.5px;
  }

  .hero-video-section .system-tile span {
    font-size: 12px;
    line-height: 1.42;
  }
}

@media (max-width: 680px) {
  :root {
    --glass-corner: 19px;
  }

  .topbar,
  body[data-page="project"] .topbar {
    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
  }

  .topbar .nav {
    padding-left: 13px !important;
    padding-right: 13px !important;
  }

  .mobile-panel,
  body[data-page="project"] .mobile-panel {
    top: calc(8px + var(--nav-h) + 8px) !important;
    left: 8px !important;
    right: 8px !important;
  }

  .hero-video-section .eyebrow {
    font-size: 11.5px;
    line-height: 1.5;
  }

  .hero-video-section .hero-copy h1 {
    font-size: clamp(35px, 10vw, 42px);
    letter-spacing: -0.015em;
  }

  .hero-video-section .hero-copy p {
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-video-section .metric strong {
    font-size: 17px;
  }

  .hero-video-section .metric span {
    font-size: 12.5px;
    line-height: 1.48;
  }

  .hero-video-section .mini-card p {
    font-size: 13.5px;
    line-height: 1.52;
  }

  .hero-video-section .system-tile strong {
    font-size: 13px;
  }

  .hero-video-section .system-tile span {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .hero-video-section .hero-actions .btn {
    min-height: 50px;
    font-size: 15px;
  }
}


/* === Final requested headline and metric readability adjustment === */
.hero-video-section .hero-copy h1.hero-title-de {
  width: 100%;
  max-width: none !important;
  background: none !important;
  color: inherit !important;
  -webkit-text-fill-color: initial;
}

.hero-video-section .hero-copy .hero-title-de .headline-first {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(42px, 3.15vw, 52px);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 7px 24px rgba(0, 0, 0, 0.24);
}

.hero-video-section .hero-copy .hero-title-de .headline-rest {
  display: block;
  margin-top: 0.06em;
  background: linear-gradient(105deg, #7cecff 0%, #79b8ff 27%, #a88cff 52%, #ff8fc8 76%, #ffd18b 100%);
  background-size: 160% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

.hero-video-section .metric strong {
  font-size: 21px !important;
  line-height: 1.25 !important;
}

.hero-video-section .metric > span {
  margin-top: 7px !important;
  font-size: 15px !important;
  line-height: 1.52 !important;
}

@media (min-width: 961px) and (max-height: 720px) {
  .hero-video-section .hero-copy .hero-title-de .headline-first {
    font-size: clamp(38px, 3vw, 50px);
  }

  .hero-video-section .metric strong {
    font-size: 19px !important;
  }

  .hero-video-section .metric > span {
    font-size: 14.5px !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 960px) {
  .hero-video-section .hero-copy .hero-title-de .headline-first {
    font-size: clamp(36px, 6.6vw, 50px);
  }

  .hero-video-section .metric strong {
    font-size: 20px !important;
  }

  .hero-video-section .metric > span {
    font-size: 15px !important;
  }
}

@media (max-width: 680px) {
  .hero-video-section .hero-copy .hero-title-de .headline-first {
    font-size: clamp(27px, 8vw, 34px);
    letter-spacing: -0.01em;
  }

  .hero-video-section .metric strong {
    font-size: 19px !important;
  }

  .hero-video-section .metric > span {
    font-size: 14.5px !important;
    line-height: 1.48 !important;
  }
}


/* === Final headline stacking and larger metric copy === */
.hero-video-section .hero-copy h1.hero-title-de {
  font-size: clamp(42px, 3.15vw, 54px) !important;
  line-height: 1.02 !important;
}

.hero-video-section .hero-copy .hero-title-de .headline-first,
.hero-video-section .hero-copy .hero-title-de .headline-rest {
  font-size: 1em !important;
}

.hero-video-section .hero-copy .hero-title-de .headline-first {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.hero-video-section .hero-copy .hero-title-de .headline-rest {
  display: block;
  margin-top: 0.08em;
}

.hero-video-section .hero-copy .hero-title-de .headline-rest > span {
  display: block;
}

.hero-video-section .metric strong {
  font-size: 23px !important;
  line-height: 1.22 !important;
}

.hero-video-section .metric > span {
  margin-top: 8px !important;
  font-size: 16.5px !important;
  line-height: 1.5 !important;
}

@media (min-width: 961px) and (max-height: 720px) {
  .hero-video-section .hero-copy h1.hero-title-de {
    font-size: clamp(38px, 2.85vw, 49px) !important;
  }

  .hero-video-section .metric strong {
    font-size: 21px !important;
  }

  .hero-video-section .metric > span {
    font-size: 15.5px !important;
    line-height: 1.44 !important;
  }
}

@media (max-width: 960px) {
  .hero-video-section .hero-copy h1.hero-title-de {
    font-size: clamp(36px, 6vw, 48px) !important;
  }

  .hero-video-section .metric strong {
    font-size: 22px !important;
  }

  .hero-video-section .metric > span {
    font-size: 16px !important;
  }
}

@media (max-width: 680px) {
  .hero-video-section .hero-copy h1.hero-title-de {
    font-size: clamp(25px, 7.4vw, 32px) !important;
    letter-spacing: -0.005em !important;
  }

  .hero-video-section .metric strong {
    font-size: 20px !important;
  }

  .hero-video-section .metric > span {
    font-size: 15.5px !important;
    line-height: 1.46 !important;
  }
}

/* === Restore the original large hero headline size === */
.hero-video-section .hero-copy h1.hero-title-de {
  font-size: clamp(54px, 4.2vw, 70px) !important;
  line-height: 0.99 !important;
  letter-spacing: -0.012em !important;
}

.hero-video-section .hero-copy .hero-title-de .headline-first,
.hero-video-section .hero-copy .hero-title-de .headline-rest {
  font-size: 1em !important;
}

@media (min-width: 961px) and (max-height: 720px) {
  .hero-video-section .hero-copy h1.hero-title-de {
    font-size: clamp(48px, 3.8vw, 58px) !important;
  }
}

@media (max-width: 960px) {
  .hero-video-section .hero-copy h1.hero-title-de {
    font-size: clamp(42px, 6.6vw, 54px) !important;
    line-height: 1.01 !important;
  }
}

@media (max-width: 680px) {
  .hero-video-section .hero-copy h1.hero-title-de {
    font-size: clamp(35px, 10vw, 42px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.006em !important;
  }
}

/* === Final hero spacing refinement: separate headline and visual panel === */
@media (min-width: 1200px) {
  .hero-video-section .container.hero-grid {
    width: min(1380px, calc(100% - clamp(48px, 6vw, 96px)));
    max-width: none;
    grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
    column-gap: clamp(72px, 6vw, 104px);
  }

  .hero-video-section .hero-copy {
    justify-self: start;
  }

  .hero-video-section .hero-panel {
    justify-self: end;
  }
}

/* Reduce the restored headline by exactly about 1px at every responsive size. */
.hero-video-section .hero-copy h1.hero-title-de {
  font-size: clamp(53px, calc(4.2vw - 1px), 69px) !important;
}

@media (min-width: 961px) and (max-height: 720px) {
  .hero-video-section .hero-copy h1.hero-title-de {
    font-size: clamp(47px, calc(3.8vw - 1px), 57px) !important;
  }
}

@media (max-width: 960px) {
  .hero-video-section .hero-copy h1.hero-title-de {
    font-size: clamp(41px, calc(6.6vw - 1px), 53px) !important;
  }
}

@media (max-width: 680px) {
  .hero-video-section .hero-copy h1.hero-title-de {
    font-size: clamp(34px, calc(10vw - 1px), 41px) !important;
  }
}

/* =========================================
   FINAL HERO HEADLINE FONT SIZE
   Desktop:
   Deine Premium-Website = 58px
   Schnell / Effektiv / Umsatzstark = 60px
========================================= */

.hero-video-section .hero-copy h1.hero-title-de {
    line-height: 1.02 !important;
}

.hero-video-section
.hero-copy
h1.hero-title-de
> span.headline-first {
    display: block !important;
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
    font-size: 58px !important;
    line-height: 1.02 !important;
}

.hero-video-section
.hero-copy
h1.hero-title-de
> span.headline-rest {
    display: block !important;
    margin-top: 0.08em;
    font-size: 60px !important;
    line-height: 1.02 !important;
}

.hero-video-section
.hero-copy
h1.hero-title-de
> span.headline-rest
> span {
    display: block !important;
    font-size: inherit !important;
    line-height: inherit !important;
}


/* Tablet and smaller laptop */
@media (max-width: 960px) {
    .hero-video-section
    .hero-copy
    h1.hero-title-de
    > span.headline-first {
        font-size: clamp(40px, 6vw, 52px) !important;
    }

    .hero-video-section
    .hero-copy
    h1.hero-title-de
    > span.headline-rest {
        font-size: clamp(42px, 6.2vw, 54px) !important;
    }
}


/* Mobile */
@media (max-width: 680px) {
    .hero-video-section
    .hero-copy
    h1.hero-title-de
    > span.headline-first {
        font-size: clamp(28px, 8.5vw, 36px) !important;
        white-space: nowrap;
    }

    .hero-video-section
    .hero-copy
    h1.hero-title-de
    > span.headline-rest {
        font-size: clamp(30px, 9vw, 38px) !important;
    }
}

/* =========================================
   FINAL HERO METRIC TEXT SIZE
========================================= */

/* Desktop:
   Live in 7–10 Tagen
   Spare CHF 250.– bis 385.–
   Mehrsprachigkeit
*/
.hero-video-section .metric strong {
    display: block !important;
    font-size: 44px !important;
    line-height: 1.12 !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    overflow-wrap: anywhere;
}

/* Metric-এর নিচের description */
.hero-video-section .metric > span {
    display: block !important;
    margin-top: 10px !important;
    font-size: 22px !important;
    line-height: 1.42 !important;
    font-weight: 400 !important;
}


/* ছোট-height laptop */
@media (min-width: 961px) and (max-height: 720px) {
    .hero-video-section .metric strong {
        font-size: 36px !important;
    }

    .hero-video-section .metric > span {
        font-size: 19px !important;
    }
}


/* Tablet */
@media (max-width: 960px) {
    .hero-video-section .metric strong {
        font-size: 34px !important;
    }

    .hero-video-section .metric > span {
        font-size: 20px !important;
    }
}


/* Mobile */
@media (max-width: 680px) {
    .hero-video-section .metric strong {
        font-size: 28px !important;
        line-height: 1.16 !important;
    }

    .hero-video-section .metric > span {
        font-size: 18px !important;
        line-height: 1.45 !important;
    }
}

/* =========================================
   HERO CTA BUTTON – COLORFUL HOVER GLOW
========================================= */

.hero-video-section .hero-actions .btn {
    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease,
        border-color 0.32s ease,
        background 0.32s ease,
        filter 0.32s ease !important;
}

/* Both CTA buttons hover effect */
.hero-video-section .hero-actions .btn:hover {
    transform: translateY(-4px) scale(1.025) !important;

    border-color: rgba(215, 245, 255, 0.72) !important;

    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.16),
        0 0 14px rgba(53, 214, 246, 0.78),
        0 0 28px rgba(91, 103, 255, 0.62),
        0 0 42px rgba(190, 86, 255, 0.46),
        0 0 58px rgba(255, 92, 156, 0.30),
        0 18px 42px rgba(0, 0, 0, 0.34) !important;

    filter: brightness(1.13) saturate(1.28) !important;
}


/* Jetzt starten */
.hero-video-section .hero-actions .btn-primary:hover {
    background:
        linear-gradient(
            135deg,
            rgba(47, 220, 255, 0.56) 0%,
            rgba(79, 112, 255, 0.54) 38%,
            rgba(175, 83, 255, 0.50) 68%,
            rgba(255, 91, 151, 0.46) 100%
        ),
        rgba(255, 255, 255, 0.08) !important;
}


/* Gratis Website-Analyse */
.hero-video-section .hero-actions .btn-secondary:hover {
    background:
        linear-gradient(
            135deg,
            rgba(47, 220, 255, 0.22) 0%,
            rgba(79, 112, 255, 0.21) 38%,
            rgba(175, 83, 255, 0.19) 68%,
            rgba(255, 91, 151, 0.17) 100%
        ),
        rgba(255, 255, 255, 0.10) !important;
}


/* Keyboard focus effect */
.hero-video-section .hero-actions .btn:focus-visible {
    outline: none !important;

    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.22),
        0 0 20px rgba(53, 214, 246, 0.72),
        0 0 38px rgba(133, 91, 255, 0.52) !important;
}

/* =========================================
   FINAL METRIC SIZE — DO NOT ADD CODE BELOW
========================================= */

/* Titles:
   Live in 7–10 Tagen
   Spare CHF 250.– bis 385.–
   Mehrsprachigkeit
*/
.hero-video-section .metric strong {
    display: block !important;
    font-size: 44px !important;
    line-height: 1.15 !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    overflow-wrap: anywhere;
}

/* নিচের description text */
.hero-video-section .metric > span {
    display: block !important;
    margin-top: 10px !important;
    font-size: 22px !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
}

/* Exact hero metric font sizes requested */
body[data-page="home"] .hero-video-section .metric strong > span[data-lang] {
  font-size: 36px !important;
}

body[data-page="home"] .hero-video-section .metric > span[data-lang] {
  font-size: 18px !important;
}

/* =========================================
   FINAL LANGUAGE VISIBILITY FIX
   Default: German only. English appears only
   after the EN language button is selected.
========================================= */
body.lang-de [data-lang="en"] {
  display: none !important;
}

body.lang-en [data-lang="de"] {
  display: none !important;
}

/* === Client fix: remove hover glow/motion from the problem image cards only === */
body[data-page="home"] .problem-video-section .problem-feature-card::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  animation: none !important;
  background: none !important;
  box-shadow: none !important;
}

body[data-page="home"] .problem-video-section .problem-feature-card:hover,
body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-visual {
  transform: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-visual img {
  transform: none !important;
  filter: none !important;
}

/* === FINAL FIX: remove ALL glow and hover/tilt effects from the home problem images === */
body[data-page="home"] .problem-video-section .problem-feature-card,
body[data-page="home"] .problem-video-section .problem-feature-card.problem-card,
body[data-page="home"] .problem-video-section .problem-feature-card:hover,
body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting {
  cursor: default !important;
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
  transition: none !important;
}

body[data-page="home"] .problem-video-section .problem-feature-card::before,
body[data-page="home"] .problem-video-section .problem-feature-card::after,
body[data-page="home"] .problem-video-section .problem-feature-card.problem-card::before,
body[data-page="home"] .problem-video-section .problem-feature-card.problem-card::after,
body[data-page="home"] .problem-video-section .problem-visual::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  animation: none !important;
  background: none !important;
  filter: none !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

body[data-page="home"] .problem-video-section .problem-visual,
body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-visual,
body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting .problem-visual {
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
  transition: none !important;
  will-change: auto !important;
}

body[data-page="home"] .problem-video-section .problem-visual img,
body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-visual img,
body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting .problem-visual img {
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
  transition: none !important;
  will-change: auto !important;
}

body[data-page="home"] .problem-video-section .problem-copy,
body[data-page="home"] .problem-video-section .problem-copy h3,
body[data-page="home"] .problem-video-section .problem-copy p,
body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-copy h3,
body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting .problem-copy h3,
body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-copy p,
body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting .problem-copy p {
  transform: none !important;
  transition: none !important;
}

body[data-page="home"] .problem-video-section .problem-feature-card:hover .problem-copy p,
body[data-page="home"] .problem-video-section .problem-feature-card.is-tilting .problem-copy p {
  color: rgba(255,255,255,.55) !important;
}

/* তিনটি metric title শুধু 30px */
body[data-page="home"] .hero-video-section .metric strong,
body[data-page="home"] .hero-video-section .metric strong > span[data-lang] {
    font-size: 25px !important;
}

/* “Sie verlieren jeden Tag Kunden” — same style as “Deine Premium-Website.” */
body[data-page="home"]
.problem-video-section
h2.section-title[data-lang="de"] {
    font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 58px !important;
    font-weight: 640 !important;
    line-height: 1.02 !important;
    letter-spacing: -0.018em !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 7px 24px rgba(0, 0, 0, 0.24) !important;
}

/* Tablet */
@media (max-width: 960px) {
    body[data-page="home"]
    .problem-video-section
    h2.section-title[data-lang="de"] {
        font-size: clamp(40px, 6vw, 52px) !important;
    }
}

/* Mobile */
@media (max-width: 680px) {
    body[data-page="home"]
    .problem-video-section
    h2.section-title[data-lang="de"] {
        font-size: clamp(28px, 8.5vw, 36px) !important;
    }
}

/* Problem description — same font style as hero description */
body[data-page="home"] .problem-video-section .section-subtitle {
    font-family: "Helvetica Neue", Inter, Arial, sans-serif !important;
    font-size: clamp(16px, 1.35vw, 19px) !important;
    font-weight: 450 !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    color: var(--text-secondary) !important;
}

/* Tablet */
@media (max-width: 960px) {
    body[data-page="home"] .problem-video-section .section-subtitle {
        font-size: clamp(17px, 2.4vw, 20px) !important;
        line-height: 1.55 !important;
    }
}

/* Mobile */
@media (max-width: 680px) {
    body[data-page="home"] .problem-video-section .section-subtitle {
        font-size: 16px !important;
        line-height: 1.52 !important;
    }
}

/* =====================================================
   FINAL HOME SECTION TYPOGRAPHY
   Only headline and subtitle fonts — no box/layout change
===================================================== */

/* সব section-এর main headline */
body[data-page="home"] .section-title,
body[data-page="home"] .problem-video-section h2.section-title[data-lang],
body[data-page="home"] .result-system-copy .section-title {
    font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 58px !important;
    font-weight: 640 !important;
    line-height: 1.02 !important;
    letter-spacing: -0.018em !important;
}

/* সব section headline-এর নিচের লেখা */
body[data-page="home"] .section-subtitle,
body[data-page="home"] .problem-video-section .section-subtitle,
body[data-page="home"] .result-system-copy .section-subtitle {
    font-family: "Helvetica Neue", Inter, Arial, sans-serif !important;
    font-size: clamp(16px, 1.35vw, 19px) !important;
    font-weight: 450 !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
}


/* Tablet */
@media (max-width: 960px) {

    body[data-page="home"] .section-title,
    body[data-page="home"] .problem-video-section h2.section-title[data-lang],
    body[data-page="home"] .result-system-copy .section-title {
        font-size: clamp(40px, 6vw, 52px) !important;
    }

    body[data-page="home"] .section-subtitle,
    body[data-page="home"] .problem-video-section .section-subtitle,
    body[data-page="home"] .result-system-copy .section-subtitle {
        font-size: clamp(17px, 2.4vw, 20px) !important;
        line-height: 1.55 !important;
    }
}


/* Mobile */
@media (max-width: 680px) {

    body[data-page="home"] .section-title,
    body[data-page="home"] .problem-video-section h2.section-title[data-lang],
    body[data-page="home"] .result-system-copy .section-title {
        font-size: clamp(28px, 8.5vw, 36px) !important;
    }

    body[data-page="home"] .section-subtitle,
    body[data-page="home"] .problem-video-section .section-subtitle,
    body[data-page="home"] .result-system-copy .section-subtitle {
        font-size: 16px !important;
        line-height: 1.52 !important;
    }
}

/* =====================================================
   FINAL MENUBAR CTA — EXACT SVG BORDER DRAW HOVER
   Keeps the existing button text/link and glass effect.
===================================================== */
.nav-links a[data-nav="book"],
body[data-page="book"] .nav-links a[data-nav="book"] {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 180px !important;
  height: 60px !important;
  padding: 0 22px !important;
  border: 0 !important;
  border-radius: 999px !important;
  outline: none !important;
  color: #ffffff !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)) !important;
  backdrop-filter: blur(18px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 28px rgba(0, 0, 0, 0.18) !important;
  transform: none !important;
  transition: background 1s ease-in-out, box-shadow 1s ease-in-out !important;
}

.nav-links a[data-nav="book"] > span {
  position: relative !important;
  z-index: 3 !important;
  color: inherit !important;
  white-space: nowrap !important;
}

.nav-links a[data-nav="book"] .nav-cta-border {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  fill: none !important;
  pointer-events: none !important;
}

.nav-links a[data-nav="book"] .nav-cta-bg-line,
.nav-links a[data-nav="book"] .nav-cta-hover-line {
  fill: none !important;
  vector-effect: non-scaling-stroke;
}

.nav-links a[data-nav="book"] .nav-cta-bg-line {
  stroke: rgba(145, 201, 255, 0.44) !important;
  stroke-width: 1 !important;
}

.nav-links a[data-nav="book"] .nav-cta-hover-line {
  stroke: #ffffff !important;
  stroke-width: 2 !important;
  stroke-dasharray: 150 480 !important;
  stroke-dashoffset: 150 !important;
  transition: stroke-dashoffset 1s ease-in-out !important;
}

.nav-links a[data-nav="book"]:hover,
body[data-page="book"] .nav-links a[data-nav="book"]:hover {
  color: #ffffff !important;
  background:
    linear-gradient(145deg, rgba(79, 149, 218, 0.30), rgba(255, 255, 255, 0.075)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    0 12px 30px rgba(0, 0, 0, 0.22) !important;
  transform: none !important;
}

.nav-links a[data-nav="book"]:hover .nav-cta-hover-line,
body[data-page="book"] .nav-links a[data-nav="book"]:hover .nav-cta-hover-line {
  stroke-dashoffset: -480 !important;
}

/* =====================================================
   RESULT SECTION — SMALLER TEXT ONLY
   Box, spacing, design or layout will not change
===================================================== */

/* Main headline */
body[data-page="home"] .result-system-copy .section-title {
  font-size: 42px !important;
  line-height: 1.12 !important;
}

/* Headline-এর নিচের প্রথম লেখা */
body[data-page="home"] .result-system-copy .section-subtitle {
  font-size: 17px !important;
  line-height: 1.5 !important;
}

/* তার নিচের দ্বিতীয় লেখা */
body[data-page="home"] .result-system-copy p:not(.section-subtitle) {
  font-size: 15px !important;
  line-height: 1.65 !important;
}


/* Tablet */
@media (max-width: 960px) {
  body[data-page="home"] .result-system-copy .section-title {
    font-size: 34px !important;
  }

  body[data-page="home"] .result-system-copy .section-subtitle {
    font-size: 16px !important;
  }

  body[data-page="home"] .result-system-copy p:not(.section-subtitle) {
    font-size: 14px !important;
  }
}


/* Mobile */
@media (max-width: 680px) {
  body[data-page="home"] .result-system-copy .section-title {
    font-size: 28px !important;
    line-height: 1.16 !important;
  }

  body[data-page="home"] .result-system-copy .section-subtitle {
    font-size: 15px !important;
  }

  body[data-page="home"] .result-system-copy p:not(.section-subtitle) {
    font-size: 14px !important;
  }
}

/* =====================================================
   FINAL NON-HOME TYPOGRAPHY ALIGNMENT
   Matches the finalized Home page font structure.
   Home page is intentionally excluded and untouched.
===================================================== */

/* Main page headings and standard section headings */
body:not([data-page="home"]) .page-hero h1,
body:not([data-page="home"]) .legal-content > h1,
body:not([data-page="home"]) .section-title {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 58px !important;
  font-weight: 640 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.018em !important;
}

/* Page introductions and section subtitles */
body:not([data-page="home"]) .page-hero p,
body:not([data-page="home"]) .page-hero .hero-lead,
body:not([data-page="home"]) .section-subtitle,
body:not([data-page="home"]) .lead {
  font-family: "Helvetica Neue", Inter, Arial, sans-serif !important;
  font-size: clamp(16px, 1.35vw, 19px) !important;
  font-weight: 450 !important;
  line-height: 1.5 !important;
  letter-spacing: normal !important;
}

/* Legal pages keep their correct hierarchy while using the same type system */
body:not([data-page="home"]) .legal-content h2 {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 22px !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
}

body:not([data-page="home"]) .legal-content h3 {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  letter-spacing: normal !important;
}

body:not([data-page="home"]) .legal-content p,
body:not([data-page="home"]) .legal-content li {
  font-family: "Helvetica Neue", Inter, Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  letter-spacing: normal !important;
}

/* Tablet */
@media (max-width: 960px) {
  body:not([data-page="home"]) .page-hero h1,
  body:not([data-page="home"]) .legal-content > h1,
  body:not([data-page="home"]) .section-title {
    font-size: clamp(40px, 6vw, 52px) !important;
  }

  body:not([data-page="home"]) .page-hero p,
  body:not([data-page="home"]) .page-hero .hero-lead,
  body:not([data-page="home"]) .section-subtitle,
  body:not([data-page="home"]) .lead {
    font-size: clamp(17px, 2.4vw, 20px) !important;
    line-height: 1.55 !important;
  }
}

/* Mobile */
@media (max-width: 680px) {
  body:not([data-page="home"]) .page-hero h1,
  body:not([data-page="home"]) .legal-content > h1,
  body:not([data-page="home"]) .section-title {
    font-size: clamp(28px, 8.5vw, 36px) !important;
  }

  body:not([data-page="home"]) .page-hero p,
  body:not([data-page="home"]) .page-hero .hero-lead,
  body:not([data-page="home"]) .section-subtitle,
  body:not([data-page="home"]) .lead {
    font-size: 16px !important;
    line-height: 1.52 !important;
  }

  body:not([data-page="home"]) .legal-content h2 {
    font-size: 21px !important;
  }

  body:not([data-page="home"]) .legal-content p,
  body:not([data-page="home"]) .legal-content li {
    font-size: 15px !important;
  }
}


/* =====================================================
   FINAL READABILITY TUNING — LINE SPACING ONLY
   Text/content, sizing, colors and layout remain unchanged.
===================================================== */
body {
  line-height: 1.72;
}

body p,
body li,
body dd,
body .package-fit,
body .footer-copy,
body .metric-note,
body .form-help,
body .footnote {
  line-height: 1.72 !important;
}

body .hero-copy p,
body .page-hero p,
body .page-hero .hero-lead,
body .section-subtitle,
body .lead,
body .result-system-copy .section-subtitle {
  line-height: 1.58 !important;
}

body blockquote,
body .quote-card blockquote {
  line-height: 1.6 !important;
}

body .hero-copy h1,
body .page-hero h1,
body .legal-content > h1,
body .section-title,
body .problem-video-section h2.section-title[data-lang],
body .result-system-copy .section-title {
  line-height: 1.1 !important;
}

body .legal-content h2 {
  line-height: 1.28 !important;
}

body .legal-content h3 {
  line-height: 1.38 !important;
}

@media (max-width: 680px) {
  body p,
  body li,
  body dd,
  body .package-fit,
  body .footer-copy,
  body .metric-note,
  body .form-help,
  body .footnote {
    line-height: 1.68 !important;
  }

  body .hero-copy p,
  body .page-hero p,
  body .page-hero .hero-lead,
  body .section-subtitle,
  body .lead,
  body .result-system-copy .section-subtitle {
    line-height: 1.6 !important;
  }

  body .hero-copy h1,
  body .page-hero h1,
  body .legal-content > h1,
  body .section-title,
  body .problem-video-section h2.section-title[data-lang],
  body .result-system-copy .section-title {
    line-height: 1.14 !important;
  }
}


/* =====================================================
   HOME HERO — match requested reference more closely
   Only hero visuals adjusted.
===================================================== */
body[data-page="home"] .hero-video-section .hero-copy .hero-title-de .headline-rest > span:nth-child(1),
body[data-page="home"] .hero-video-section .hero-copy .hero-title-de .headline-rest > span:nth-child(2) {
  background: linear-gradient(180deg, #72deff 0%, #66c8ff 52%, #88a8ff 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

body[data-page="home"] .hero-video-section .hero-copy .hero-title-de .headline-rest > span:nth-child(3) {
  background: linear-gradient(180deg, #a59cff 0%, #c58cff 45%, #ff66d5 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

body[data-page="home"] .hero-video-section .metric-strip {
  margin-top: 32px !important;
}

body[data-page="home"] .hero-video-section .system-tile {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

body[data-page="home"] .hero-video-section .system-tile-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

body[data-page="home"] .hero-video-section .system-tile-heading {
  display: flex;
  flex-direction: column;
}

body[data-page="home"] .hero-video-section .system-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8f68ff;
  flex: 0 0 28px;
}

body[data-page="home"] .hero-video-section .system-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .hero-video-section .system-icon-google {
  width: 28px;
  height: 28px;
}

body[data-page="home"] .hero-video-section .system-google-letter {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  background: conic-gradient(from 220deg, #4285f4 0 28%, #34a853 28% 54%, #fbbc05 54% 78%, #ea4335 78% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1200px) {
  body[data-page="home"] .hero-video-section .metric-strip {
    margin-top: 28px !important;
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .hero-video-section .metric-strip {
    margin-top: 24px !important;
  }

  body[data-page="home"] .hero-video-section .system-tile-top {
    gap: 8px;
    margin-bottom: 8px;
  }

  body[data-page="home"] .hero-video-section .system-icon,
  body[data-page="home"] .hero-video-section .system-icon-google {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  body[data-page="home"] .hero-video-section .system-google-letter {
    font-size: 24px;
  }
}


/* Final exact hero headline colors */
body[data-page="home"] .hero-video-section h1.hero-title-de .headline-rest > .headline-schnell {
  background: linear-gradient(180deg, #63dcff 0%, #55cfff 55%, #67b9ff 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

body[data-page="home"] .hero-video-section h1.hero-title-de .headline-rest > .headline-effektiv {
  background: linear-gradient(180deg, #70c9ff 0%, #769cff 48%, #9384ff 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

body[data-page="home"] .hero-video-section h1.hero-title-de .headline-rest > .headline-umsatzstark {
  background: linear-gradient(180deg, #a987ff 0%, #c978ff 48%, #f160d4 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}


/* =====================================================
   HERO FINAL FIX v3 — cache bust + exact line color/icons
===================================================== */
body[data-page="home"] .hero-video-section h1.hero-title-de .headline-rest > span {
  display: block !important;
}

body[data-page="home"] .hero-video-section h1.hero-title-de .headline-rest > .headline-schnell,
body[data-page="home"] .hero-video-section h1.hero-title-de .headline-rest > .headline-effektiv,
body[data-page="home"] .hero-video-section h1.hero-title-de .headline-rest > .headline-umsatzstark {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
}

body[data-page="home"] .hero-video-section h1.hero-title-de .headline-rest > .headline-schnell {
  background-image: linear-gradient(180deg, #75e3ff 0%, #62d0ff 55%, #70b4ff 100%) !important;
}

body[data-page="home"] .hero-video-section h1.hero-title-de .headline-rest > .headline-effektiv {
  background-image: linear-gradient(180deg, #75dcff 0%, #6bb7ff 46%, #8e86ff 100%) !important;
}

body[data-page="home"] .hero-video-section h1.hero-title-de .headline-rest > .headline-umsatzstark {
  background-image: linear-gradient(180deg, #9f95ff 0%, #c882ff 48%, #f268d6 100%) !important;
}

body[data-page="home"] .hero-video-section .system-icon {
  width: 34px !important;
  height: 34px !important;
  flex-basis: 34px !important;
}

body[data-page="home"] .hero-video-section .system-tile-top {
  gap: 12px !important;
}

body[data-page="home"] .hero-video-section .system-icon-website {
  color: #64c8ff !important;
  filter: drop-shadow(0 0 10px rgba(100, 200, 255, 0.35));
}

body[data-page="home"] .hero-video-section .system-icon-booking {
  color: #bf63ff !important;
  filter: drop-shadow(0 0 10px rgba(191, 99, 255, 0.35));
}

body[data-page="home"] .hero-video-section .system-icon-support {
  color: #9b70ff !important;
  filter: drop-shadow(0 0 10px rgba(155, 112, 255, 0.35));
}

body[data-page="home"] .hero-video-section .system-icon-google {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.08));
}

body[data-page="home"] .hero-video-section .system-google-letter {
  font-size: 34px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  background: conic-gradient(from 225deg, #4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 72%, #ea4335 72% 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

@media (max-width: 680px) {
  body[data-page="home"] .hero-video-section .system-icon {
    width: 28px !important;
    height: 28px !important;
    flex-basis: 28px !important;
  }

  body[data-page="home"] .hero-video-section .system-google-letter {
    font-size: 28px !important;
  }
}


/* =====================================================
   HERO HEADLINE FINAL v4 — exact requested colors
   Only the three hero lines are adjusted.
===================================================== */
body[data-page="home"] .hero-video-section .hero-copy h1.hero-title-de .headline-rest,
body[data-page="home"] .hero-video-section .hero-copy h1.hero-title-de .headline-rest > span {
  display: block !important;
}

body[data-page="home"] .hero-video-section .hero-copy h1.hero-title-de .headline-rest > .headline-schnell,
body[data-page="home"] .hero-video-section .hero-copy h1.hero-title-de .headline-rest > .headline-effektiv,
body[data-page="home"] .hero-video-section .hero-copy h1.hero-title-de .headline-rest > .headline-umsatzstark {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  text-shadow: none !important;
}

/* Schnell. — bright cyan/blue like reference */
body[data-page="home"] .hero-video-section .hero-copy h1.hero-title-de .headline-rest > .headline-schnell {
  background-image: linear-gradient(180deg, #55efff 0%, #52c9ff 50%, #55a8ff 100%) !important;
}

/* Effektiv. — blue to soft lavender like reference */
body[data-page="home"] .hero-video-section .hero-copy h1.hero-title-de .headline-rest > .headline-effektiv {
  background-image: linear-gradient(180deg, #79dcff 0%, #70b8ff 48%, #8f9bff 100%) !important;
}

/* Umsatzstark. — lavender to pink like reference */
body[data-page="home"] .hero-video-section .hero-copy h1.hero-title-de .headline-rest > .headline-umsatzstark {
  background-image: linear-gradient(180deg, #b49cff 0%, #c78dff 48%, #ef6fd8 100%) !important;
}


/* =====================================================
   EFFEKTIV ABSOLUTE FINAL v5
   Strong blue-to-violet reference color; cannot be overridden.
===================================================== */
html body[data-page="home"] .hero-video-section .hero-copy h1.hero-title-de span.headline-rest > span.headline-effektiv {
  display: block !important;
  background: linear-gradient(180deg, #63d9ff 0%, #6f93ff 48%, #8a62ff 100%) !important;
  background-image: linear-gradient(180deg, #63d9ff 0%, #6f93ff 48%, #8a62ff 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
}

/* =====================================================
   HERO ICONS FINAL v6 — use provided reference icons
   Only the four hero icons are updated.
===================================================== */
body[data-page="home"] .hero-video-section .system-icon.system-icon-image {
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  filter: none !important;
}

body[data-page="home"] .hero-video-section .system-icon.system-icon-image img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
}

@media (max-width: 680px) {
  body[data-page="home"] .hero-video-section .system-icon.system-icon-image {
    width: 28px !important;
    height: 28px !important;
    flex-basis: 28px !important;
  }
}


/* =====================================================
   FINAL REQUEST v7
   Only Umsatzstark color and hero icon visibility adjusted.
===================================================== */
html body[data-page="home"] .hero-video-section .hero-copy h1.hero-title-de .headline-rest > .headline-umsatzstark {
  background: none !important;
  background-image: none !important;
  color: #531773 !important;
  -webkit-text-fill-color: #531773 !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  text-shadow: none !important;
}

html body[data-page="home"] .hero-video-section .system-tile-top {
  align-items: center !important;
}

html body[data-page="home"] .hero-video-section .system-icon.system-icon-image {
  width: 40px !important;
  height: 40px !important;
  flex: 0 0 40px !important;
  overflow: visible !important;
}

html body[data-page="home"] .hero-video-section .system-icon.system-icon-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  overflow: visible !important;
  display: block !important;
}

@media (max-width: 680px) {
  html body[data-page="home"] .hero-video-section .system-icon.system-icon-image {
    width: 32px !important;
    height: 32px !important;
    flex-basis: 32px !important;
  }
}


/* =====================================================
   FINAL REQUEST v9
   Restore Support icon original color.
   Apply Support icon shade to “Umsatzstark.” only.
===================================================== */
html body[data-page="home"] .hero-video-section .hero-copy h1.hero-title-de .headline-rest > .headline-umsatzstark {
  background: linear-gradient(90deg, #556AEE 0%, #6A63EE 42%, #8A4AEC 100%) !important;
  background-image: linear-gradient(90deg, #556AEE 0%, #6A63EE 42%, #8A4AEC 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
}


/* =====================================================
   FINAL REQUEST v10
   Refine “Umsatzstark.” with a perfect purple gradient
   including a subtle pink shade. Nothing else changed.
===================================================== */
html body[data-page="home"] .hero-video-section .hero-copy h1.hero-title-de .headline-rest > .headline-umsatzstark {
  background: linear-gradient(90deg, #5A63EE 0%, #6D56EE 34%, #8750EC 66%, #A64EDF 84%, #D96BBE 100%) !important;
  background-image: linear-gradient(90deg, #5A63EE 0%, #6D56EE 34%, #8750EC 66%, #A64EDF 84%, #D96BBE 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
}


/* =====================================================
   FINAL REQUEST v11
   Umsatzstark. = top pink, rest purple, softly glowy.
   Nothing else changed.
===================================================== */
html body[data-page="home"] .hero-video-section .hero-copy h1.hero-title-de .headline-rest > .headline-umsatzstark {
  background: linear-gradient(180deg, #F08BD2 0%, #D76CD9 18%, #9D4FE7 52%, #6E44DD 78%, #531773 100%) !important;
  background-image: linear-gradient(180deg, #F08BD2 0%, #D76CD9 18%, #9D4FE7 52%, #6E44DD 78%, #531773 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 0 10px rgba(240, 139, 210, 0.20), 0 0 18px rgba(157, 79, 231, 0.18), 0 0 28px rgba(83, 23, 115, 0.18) !important;
  filter: drop-shadow(0 0 8px rgba(215, 108, 217, 0.18)) drop-shadow(0 0 16px rgba(83, 23, 115, 0.12)) !important;
}


/* =====================================================
   FINAL REQUEST v12
   Umsatzstark. = same two-color mixed style feel as Effektiv.
   Colors only: pink + purple. No glow.
===================================================== */
html body[data-page="home"] .hero-video-section .hero-copy h1.hero-title-de .headline-rest > .headline-umsatzstark {
  background: linear-gradient(180deg, #F18AD5 0%, #D96EE0 48%, #8657EA 100%) !important;
  background-image: linear-gradient(180deg, #F18AD5 0%, #D96EE0 48%, #8657EA 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
  filter: none !important;
}


/* =====================================================
   FINAL REQUEST v13
   Umsatzstark. = upper purple, lower pink.
   Nothing else changed.
===================================================== */
html body[data-page="home"] .hero-video-section .hero-copy h1.hero-title-de .headline-rest > .headline-umsatzstark {
  background: linear-gradient(180deg, #8657EA 0%, #B060E6 48%, #F18AD5 100%) !important;
  background-image: linear-gradient(180deg, #8657EA 0%, #B060E6 48%, #F18AD5 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
  filter: none !important;
}


/* =====================================================
   FINAL REQUEST v14
   Home hero spacing only:
   - CTA buttons to metric cards: +5px
   - Headline to supporting sentence: +1.5px
   Nothing else changed.
===================================================== */
body[data-page="home"] .hero-video-section .metric-strip {
  margin-top: 37px !important;
}

@media (max-width: 1200px) {
  body[data-page="home"] .hero-video-section .metric-strip {
    margin-top: 33px !important;
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .hero-video-section .metric-strip {
    margin-top: 29px !important;
  }
}

@media (min-width: 961px) {
  body[data-page="home"] .hero-video-section .hero-copy > p[data-lang] {
    margin-top: 17.5px !important;
  }
}

@media (min-width: 961px) and (max-height: 720px) {
  body[data-page="home"] .hero-video-section .hero-copy > p[data-lang] {
    margin-top: 13.5px !important;
  }
}

@media (max-width: 960px) {
  body[data-page="home"] .hero-video-section .hero-copy > p[data-lang] {
    margin-top: 19.5px !important;
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .hero-video-section .hero-copy > p[data-lang] {
    margin-top: 17.5px !important;
  }
}

/* =====================================================
   FINAL REQUEST v15
   Home hero spacing only:
   - Eyebrow text to “Deine Premium-Website.”: +5px
   Nothing else changed.
===================================================== */
body[data-page="home"] .hero-video-section .eyebrow {
  margin-bottom: 23px !important;
}

/* =====================================================
   FINAL MENUBAR CTA — PERFECT MATCH + WORKING ANIMATION
   - Same 18px rounded shape as the site's other CTA buttons
   - One clean outline only (no overlapping/double shape)
   - White border line animates around the same button on hover
   Nothing else changed.
===================================================== */
.nav-links a[data-nav="book"],
.nav-links a[data-nav="book"]:hover,
body[data-page="book"] .nav-links a[data-nav="book"],
body[data-page="book"] .nav-links a[data-nav="book"]:hover {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  min-width: 160px !important;
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 24px !important;
  border: 0 !important;
  border-radius: 18px !important;
  outline: none !important;
  color: #ffffff !important;
  background:
    linear-gradient(135deg, rgba(41, 208, 247, 0.32), rgba(82, 103, 255, 0.30)),
    rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(20px) saturate(165%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(165%) !important;
  box-shadow:
    0 16px 36px rgba(25, 146, 221, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(255, 255, 255, 0.07) !important;
  transform: translateY(0) !important;
  filter: brightness(1) !important;
  transition:
    transform 0.28s ease,
    filter 0.28s ease,
    box-shadow 0.28s ease !important;
}

/* Remove every older pseudo-layer so a second shape cannot appear. */
.nav-links a[data-nav="book"]::before,
.nav-links a[data-nav="book"]::after,
body[data-page="book"] .nav-links a[data-nav="book"]::before,
body[data-page="book"] .nav-links a[data-nav="book"]::after {
  display: none !important;
}

/* The SVG follows the exact 18px button shape and carries both border states. */
.nav-links a[data-nav="book"] .nav-cta-border,
body[data-page="book"] .nav-links a[data-nav="book"] .nav-cta-border {
  display: block !important;
  position: absolute !important;
  inset: 1px !important;
  width: calc(100% - 2px) !important;
  height: calc(100% - 2px) !important;
  overflow: visible !important;
  z-index: 1 !important;
  fill: none !important;
  pointer-events: none !important;
}

.nav-links a[data-nav="book"] .nav-cta-bg-line,
.nav-links a[data-nav="book"] .nav-cta-hover-line,
body[data-page="book"] .nav-links a[data-nav="book"] .nav-cta-bg-line,
body[data-page="book"] .nav-links a[data-nav="book"] .nav-cta-hover-line {
  fill: none !important;
  vector-effect: non-scaling-stroke !important;
}

.nav-links a[data-nav="book"] .nav-cta-bg-line,
body[data-page="book"] .nav-links a[data-nav="book"] .nav-cta-bg-line {
  stroke: rgba(192, 239, 255, 0.38) !important;
  stroke-width: 1 !important;
}

.nav-links a[data-nav="book"] .nav-cta-hover-line,
body[data-page="book"] .nav-links a[data-nav="book"] .nav-cta-hover-line {
  stroke: #ffffff !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-dasharray: 120 560 !important;
  stroke-dashoffset: 120 !important;
  opacity: 0 !important;
  transition:
    stroke-dashoffset 1.05s ease-in-out,
    opacity 0.08s linear !important;
}

.nav-links a[data-nav="book"] > span,
body[data-page="book"] .nav-links a[data-nav="book"] > span {
  position: relative !important;
  z-index: 2 !important;
  color: inherit !important;
  white-space: nowrap !important;
}

.nav-links a[data-nav="book"]:hover,
body[data-page="book"] .nav-links a[data-nav="book"]:hover {
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  filter: brightness(1.08) !important;
  box-shadow:
    0 18px 40px rgba(25, 146, 221, 0.29),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08) !important;
}

.nav-links a[data-nav="book"]:hover .nav-cta-hover-line,
body[data-page="book"] .nav-links a[data-nav="book"]:hover .nav-cta-hover-line {
  opacity: 1 !important;
  stroke-dashoffset: -560 !important;
}

/* =====================================================
   FINAL REQUEST v16 — HERO TEXT SPACING SITE-WIDE
   Match the finalized hero text hierarchy across every
   main website page and section. No typography, color,
   sizing, card, button or layout styling is changed.
===================================================== */
body .section-label,
body .eyebrow {
  margin-bottom: 23px !important;
}

/* Desktop: same heading-to-supporting-copy gap as the hero. */
@media (min-width: 961px) {
  body .section-subtitle,
  body .page-hero p,
  body .page-hero .hero-lead,
  body .lead {
    margin-top: 17.5px !important;
  }
}

/* Tablet: mirror the hero's responsive spacing. */
@media (max-width: 960px) {
  body .section-subtitle,
  body .page-hero p,
  body .page-hero .hero-lead,
  body .lead {
    margin-top: 19.5px !important;
  }
}

/* Mobile: mirror the hero's compact spacing. */
@media (max-width: 680px) {
  body .section-subtitle,
  body .page-hero p,
  body .page-hero .hero-lead,
  body .lead {
    margin-top: 17.5px !important;
  }
}


/* =====================================================
   PRICING PAGE v17 — shared site rhythm and typography
   Word-file content implemented without page-only font or
   spacing changes. The pricing page now follows the same
   hero, section, card and responsive system as other pages.
===================================================== */
body[data-page="project"] .pricing-hero {
  text-align: left !important;
  padding-bottom: 70px !important;
}
body[data-page="project"] .pricing-hero .container {
  max-width: var(--container) !important;
}
body[data-page="project"] .pricing-hero .section-label {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body[data-page="project"] .pricing-hero .section-label::after {
  display: none !important;
}
body[data-page="project"] .pricing-hero h1 {
  max-width: 15ch !important;
  white-space: normal !important;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 58px !important;
  font-weight: 640 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.018em !important;
  background: none !important;
  color: var(--text) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
}
body[data-page="project"] .pricing-hero p {
  max-width: 42rem !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  color: var(--text-secondary) !important;
  font-weight: 450 !important;
}
body[data-page="project"] .pricing-overview-section {
  padding-top: 84px !important;
}
body[data-page="project"] .pricing-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
body[data-page="project"] .pricing-overview-card {
  min-height: 100%;
  overflow: hidden;
}
body[data-page="project"] .pricing-overview-card p + p {
  margin-top: 14px;
}
body[data-page="project"] .pricing-overview-card .inline-actions {
  margin-top: 26px;
}
body[data-page="project"] .pricing-overview-card-accent {
  border-color: rgba(123, 95, 248, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(91, 60, 245, 0.13), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
}
body[data-page="project"] .pricing-section-intro {
  max-width: 900px;
}
body[data-page="project"] .price-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}
body[data-page="project"] .price-service-card {
  min-height: 292px;
  overflow: hidden;
}
body[data-page="project"] .price-service-card h3 {
  margin-top: 24px;
}
body[data-page="project"] .price-service-card p {
  margin-top: 14px;
}
body[data-page="project"] .pricing-process-grid,
body[data-page="project"] .pricing-transparency-grid {
  margin-top: 38px;
}
body[data-page="project"] .pricing-process-grid .process-card,
body[data-page="project"] .pricing-transparency-grid .story-card {
  min-height: 100%;
}
body[data-page="project"] .pricing-final-card {
  padding: 40px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(91, 60, 245, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.018));
}
body[data-page="project"] .pricing-final-card .section-title {
  max-width: 18ch;
}
body[data-page="project"] .pricing-final-card .section-subtitle {
  max-width: 46rem;
}

@media (max-width: 1080px) {
  body[data-page="project"] .price-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 960px) {
  body[data-page="project"] .pricing-hero h1 {
    font-size: clamp(40px, 6vw, 52px) !important;
  }
}
@media (max-width: 760px) {
  body[data-page="project"] .pricing-overview-grid,
  body[data-page="project"] .price-service-grid,
  body[data-page="project"] .pricing-process-grid,
  body[data-page="project"] .pricing-transparency-grid {
    grid-template-columns: 1fr;
  }
  body[data-page="project"] .price-service-card {
    min-height: auto;
  }
}
@media (max-width: 680px) {
  body[data-page="project"] .pricing-hero h1 {
    max-width: 100% !important;
    font-size: clamp(28px, 8.5vw, 36px) !important;
    line-height: 1.14 !important;
  }
  body[data-page="project"] .pricing-final-card {
    padding: 30px 22px;
    border-radius: 26px;
  }
}

/* =====================================================
   PRICING PAGE v18 — reference content, clean hierarchy
   Pricing-only layout. Existing site theme and colours remain unchanged.
===================================================== */
body[data-page="project"] .pricing-reference-hero {
  padding-bottom: 88px !important;
}
body[data-page="project"] .pricing-reference-hero::before {
  content: "";
  position: absolute;
  width: min(520px, 46vw);
  height: min(520px, 46vw);
  right: -9%;
  top: 58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 60, 245, 0.22), rgba(255, 107, 53, 0.08) 38%, transparent 70%);
  filter: blur(22px);
  pointer-events: none;
}
body[data-page="project"] .pricing-reference-hero .container {
  position: relative;
  z-index: 1;
}
body[data-page="project"] .pricing-reference-hero h1 {
  max-width: 17ch !important;
  font-size: clamp(43px, 5.4vw, 72px) !important;
  line-height: 1.04 !important;
}
body[data-page="project"] .pricing-reference-hero h1 br {
  display: block;
}
body[data-page="project"] .pricing-reference-hero p {
  max-width: 47rem !important;
  font-size: 17px;
}
body[data-page="project"] .pricing-hero-actions {
  margin-top: 30px;
}
body[data-page="project"] .pricing-reference-section {
  overflow: hidden;
}
body[data-page="project"] .pricing-group-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
body[data-page="project"] .pricing-group-heading-compact {
  margin-bottom: 12px;
}
body[data-page="project"] .pricing-heading-line {
  flex: 0 0 34px;
  height: 2px;
  border-radius: 99px;
  background: var(--gradient);
}
body[data-page="project"] .pricing-group-heading h2,
body[data-page="project"] .pricing-plan-card h2,
body[data-page="project"] .pricing-feature-card h2,
body[data-page="project"] .pricing-cta-card h2,
body[data-page="project"] .pricing-services-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.035em;
}
body[data-page="project"] .pricing-package-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.55fr);
  gap: 22px;
  align-items: stretch;
}
body[data-page="project"] .pricing-plan-card,
body[data-page="project"] .pricing-feature-card,
body[data-page="project"] .pricing-cta-card,
body[data-page="project"] .pricing-services-card,
body[data-page="project"] .pricing-seo-panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}
body[data-page="project"] .pricing-plan-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  min-width: 0;
}
body[data-page="project"] .pricing-plan-card-wide {
  background:
    radial-gradient(circle at 100% 0%, rgba(91, 60, 245, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.016));
  border-color: rgba(123, 95, 248, 0.24);
}
body[data-page="project"] .pricing-plan-head {
  display: grid;
  gap: 10px;
}
body[data-page="project"] .pricing-plan-head h3,
body[data-page="project"] .pricing-membership-card .pricing-plan-head h2 {
  font-size: clamp(25px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
body[data-page="project"] .pricing-plan-head > p:not(.pricing-plan-price) {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 55rem;
}
body[data-page="project"] .pricing-plan-price {
  color: var(--primary-light);
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.035em;
}
body[data-page="project"] .pricing-plan-price small {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0;
}
body[data-page="project"] .pricing-plan-body {
  margin-top: 24px;
}
body[data-page="project"] .pricing-plan-card h4,
body[data-page="project"] .pricing-addons-block h4 {
  margin-bottom: 12px;
  color: var(--primary-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
body[data-page="project"] .pricing-check-list,
body[data-page="project"] .pricing-dot-list {
  list-style: none;
  display: grid;
  gap: 8px;
}
body[data-page="project"] .pricing-check-list li,
body[data-page="project"] .pricing-dot-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}
body[data-page="project"] .pricing-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-light);
  font-weight: 600;
}
body[data-page="project"] .pricing-dot-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-light);
}
body[data-page="project"] .pricing-card-action {
  margin-top: auto;
  padding-top: 28px;
}
body[data-page="project"] .pricing-card-action .btn {
  width: 100%;
  justify-content: center;
}
body[data-page="project"] .pricing-custom-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(250px, 0.78fr);
  gap: 28px;
  margin-top: 24px;
}
body[data-page="project"] .pricing-addons-block {
  padding-left: 28px;
  border-left: 1px solid var(--border);
}
body[data-page="project"] .pricing-small-note {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.55;
}
body[data-page="project"] .pricing-savings-section {
  padding-top: 34px;
  padding-bottom: 34px;
}
body[data-page="project"] .pricing-savings-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  align-items: center;
  gap: 24px;
  padding: 34px 38px;
  border: 1px solid rgba(123, 95, 248, 0.22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,107,53,0.16), transparent 34%),
    radial-gradient(circle at 12% 120%, rgba(91,60,245,0.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.016));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
body[data-page="project"] .pricing-savings-copy {
  min-width: 0;
  max-width: 58rem;
}
body[data-page="project"] .pricing-savings-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--primary-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
body[data-page="project"] .pricing-savings-eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 99px;
  background: var(--gradient);
}
body[data-page="project"] .pricing-savings-copy p {
  margin: 0;
  color: var(--text);
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.65;
  max-width: 48rem;
}
body[data-page="project"] .pricing-savings-amount {
  justify-self: end;
  white-space: nowrap;
  color: var(--text);
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 300;
}
body[data-page="project"] .pricing-growth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(310px, 0.78fr);
  gap: 22px;
  align-items: stretch;
}
body[data-page="project"] .pricing-seo-panel {
  padding: 30px;
}
body[data-page="project"] .pricing-group-copy {
  max-width: 52rem;
  color: var(--text-secondary);
  font-size: 15px;
}
body[data-page="project"] .pricing-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
body[data-page="project"] .pricing-plan-card-compact {
  padding: 24px;
  box-shadow: none;
  background: rgba(255,255,255,0.018);
}
body[data-page="project"] .pricing-billing-block {
  margin-top: 22px;
}
body[data-page="project"] .pricing-billing-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
body[data-page="project"] .pricing-billing-options > span {
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 13px;
}
body[data-page="project"] .pricing-billing-options > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
}
body[data-page="project"] .pricing-billing-options > span.is-active::before {
  border-color: var(--primary-light);
  box-shadow: inset 0 0 0 3px var(--surface-2), 0 0 10px rgba(91,60,245,0.45);
  background: var(--primary-light);
}
body[data-page="project"] .pricing-membership-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 107, 53, 0.09), transparent 35%),
    linear-gradient(180deg, rgba(91,60,245,0.08), rgba(255,255,255,0.016));
}
body[data-page="project"] .pricing-membership-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
body[data-page="project"] .pricing-membership-prices > div {
  min-width: 0;
  padding: 18px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.018);
  text-align: center;
}
body[data-page="project"] .pricing-membership-prices span,
body[data-page="project"] .pricing-membership-prices small {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.35;
}
body[data-page="project"] .pricing-membership-prices strong {
  display: block;
  margin: 4px 0;
  color: var(--primary-light);
  font-size: clamp(23px, 2.5vw, 30px);
  font-weight: 400;
  letter-spacing: -0.035em;
}
body[data-page="project"] .pricing-confidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}
body[data-page="project"] .pricing-feature-card,
body[data-page="project"] .pricing-cta-card,
body[data-page="project"] .pricing-services-card {
  padding: 32px;
}
body[data-page="project"] .pricing-feature-card {
  background:
    radial-gradient(circle at 100% 100%, rgba(91, 60, 245, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
}
body[data-page="project"] .pricing-feature-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin-top: 24px;
}
body[data-page="project"] .pricing-feature-columns > [data-lang] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  grid-column: 1 / -1;
}
body[data-page="project"] .pricing-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,107,53,0.14), transparent 36%),
    radial-gradient(circle at 72% 18%, rgba(91,60,245,0.19), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.016));
  border-color: rgba(123, 95, 248, 0.24);
}
body[data-page="project"] .pricing-cta-card p {
  margin-top: 14px;
  color: var(--text-secondary);
  max-width: 42rem;
}
body[data-page="project"] .pricing-cta-actions {
  margin-top: 26px;
}
body[data-page="project"] .pricing-care-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.35fr);
  gap: 22px;
  align-items: stretch;
}
body[data-page="project"] .pricing-care-prices {
  margin-top: 22px;
}
body[data-page="project"] .pricing-feature-columns-care {
  margin-top: 0;
}
body[data-page="project"] .pricing-feature-columns-care > [data-lang] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body[data-page="project"] .pricing-services-card h2 {
  margin-bottom: 22px;
}
body[data-page="project"] .pricing-table-wrap {
  overflow-x: auto;
}
body[data-page="project"] .pricing-services-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
body[data-page="project"] .pricing-services-table th,
body[data-page="project"] .pricing-services-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.35;
}
body[data-page="project"] .pricing-services-table th {
  color: var(--text);
  font-weight: 500;
  background: rgba(255,255,255,0.025);
}
body[data-page="project"] .pricing-services-table th:last-child,
body[data-page="project"] .pricing-services-table td:last-child {
  text-align: right;
  white-space: nowrap;
}
body[data-page="project"] .pricing-services-table tbody tr:last-child td {
  border-bottom: 0;
}
body[data-page="project"] .pricing-reference-signoff {
  padding-top: 26px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 1100px) {
  body[data-page="project"] .pricing-package-grid,
  body[data-page="project"] .pricing-growth-layout,
  body[data-page="project"] .pricing-care-grid {
    grid-template-columns: 1fr;
  }
  body[data-page="project"] .pricing-membership-card .pricing-check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  body[data-page="project"] .pricing-custom-columns,
  body[data-page="project"] .pricing-seo-grid,
  body[data-page="project"] .pricing-confidence-grid {
    grid-template-columns: 1fr;
  }
  body[data-page="project"] .pricing-addons-block {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid var(--border);
  }
}
@media (max-width: 680px) {
  body[data-page="project"] .pricing-reference-hero {
    padding-bottom: 64px !important;
  }
  body[data-page="project"] .pricing-reference-hero h1 {
    font-size: clamp(32px, 10vw, 43px) !important;
    line-height: 1.08 !important;
  }
  body[data-page="project"] .pricing-reference-hero p {
    font-size: 15px;
  }
  body[data-page="project"] .pricing-plan-card,
  body[data-page="project"] .pricing-seo-panel,
  body[data-page="project"] .pricing-feature-card,
  body[data-page="project"] .pricing-cta-card,
  body[data-page="project"] .pricing-services-card {
    padding: 22px;
    border-radius: 20px;
  }
  body[data-page="project"] .pricing-membership-prices,
  body[data-page="project"] .pricing-feature-columns > [data-lang],
  body[data-page="project"] .pricing-feature-columns-care > [data-lang],
  body[data-page="project"] .pricing-membership-card .pricing-check-list {
    grid-template-columns: 1fr;
  }
  body[data-page="project"] .pricing-feature-columns {
    grid-template-columns: 1fr;
  }
  body[data-page="project"] .pricing-cta-actions {
    align-items: stretch;
  }
  body[data-page="project"] .pricing-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Pricing v18.1 — overflow safeguards for decorative hero and responsive grids */
body[data-page="project"] .pricing-reference-hero {
  overflow: hidden;
}
body[data-page="project"] .pricing-package-grid > *,
body[data-page="project"] .pricing-growth-layout > *,
body[data-page="project"] .pricing-confidence-grid > *,
body[data-page="project"] .pricing-care-grid > * {
  min-width: 0;
}
body[data-page="project"] .pricing-services-card {
  overflow: hidden;
}
body[data-page="project"] .pricing-table-wrap {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 680px) {
  body[data-page="project"] .pricing-services-table {
    min-width: 0;
    table-layout: fixed;
  }
  body[data-page="project"] .pricing-services-table th:first-child,
  body[data-page="project"] .pricing-services-table td:first-child {
    width: 58%;
  }
  body[data-page="project"] .pricing-services-table th:last-child,
  body[data-page="project"] .pricing-services-table td:last-child {
    width: 42%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* Pricing billing interaction — keeps the existing visual theme while making each plan toggle independently. */
body[data-page="project"] .pricing-billing-options > button {
  position: relative;
  padding: 0 0 0 20px;
  border: 0;
  color: var(--text-secondary);
  background: transparent;
  font: inherit;
  font-size: 13px;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
}
body[data-page="project"] .pricing-billing-options > button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
}
body[data-page="project"] .pricing-billing-options > button.is-active::before {
  border-color: var(--primary-light);
  box-shadow: inset 0 0 0 3px var(--surface-2), 0 0 10px rgba(91,60,245,0.45);
  background: var(--primary-light);
}
body[data-page="project"] .pricing-billing-options > button:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 5px;
  border-radius: 4px;
}
body[data-page="project"] [data-billing-card][data-billing="monthly"] .price-yearly,
body[data-page="project"] [data-billing-card][data-billing="yearly"] .price-monthly {
  display: none !important;
}
body[data-page="project"] [data-billing-card] .pricing-membership-prices {
  grid-template-columns: minmax(0, 1fr);
}
body[data-page="project"] [data-billing-card] .pricing-membership-prices > div {
  width: 100%;
}

/* === Switzerland & Germany market comparison page === */
body[data-page="comparison"] .nav-links a[data-nav="comparison"] {
  color: #fff !important;
  text-shadow: 0 0 18px rgba(255,255,255,.18) !important;
}

.comparison-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 92px);
  padding-bottom: 96px;
  overflow: hidden;
}
.comparison-hero::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -220px;
  top: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,60,245,.30), rgba(255,107,53,.10) 42%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.comparison-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .75fr);
  gap: 68px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.comparison-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: .98;
  letter-spacing: -.052em;
  margin-top: 20px;
}
.comparison-hero-copy h1::first-line { color: var(--primary-light); }
.comparison-hero-copy > p {
  max-width: 760px;
  margin-top: 28px;
  font-size: 18px;
  color: var(--text-secondary);
}
.comparison-hero-actions,
.comparison-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.comparison-score-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(123,95,248,.34);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(22,23,38,.96), rgba(10,10,17,.94));
  box-shadow: 0 34px 90px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.08);
}
.comparison-score-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91,60,245,.12), transparent 48%, rgba(255,107,53,.06));
  pointer-events: none;
}
.comparison-score-top {
  position: relative;
  padding: 38px 38px 32px;
  border-bottom: 1px solid var(--border);
}
.comparison-score-kicker,
.comparison-stat-label {
  display: block;
  color: var(--primary-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
}
.comparison-score-top > strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(50px, 5vw, 72px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.05em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.comparison-score-top > span:last-child { display:block; margin-top:12px; color:var(--text-secondary); }
.comparison-score-list { position: relative; padding: 18px 38px 30px; }
.comparison-score-list > div { display:grid; grid-template-columns:30px 1fr; gap:14px; padding:18px 0; border-bottom:1px solid var(--border); }
.comparison-score-list > div:last-child { border-bottom:0; }
.comparison-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary-light);
  font-weight: 600;
}
.comparison-score-list p { color:var(--text-secondary); font-size:14px; }
.comparison-score-list p strong { display:block; color:var(--text); font-size:16px; font-weight:500; margin-bottom:3px; }

.comparison-section-head { max-width: 850px; }
.comparison-section-head .section-subtitle { max-width: 820px; }
.comparison-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.comparison-stat-card,
.comparison-example-card,
.comparison-advantage-card,
.comparison-method-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.014));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.comparison-stat-card { padding: 30px; min-height: 310px; }
.comparison-stat-card > strong {
  display:block;
  margin-top:16px;
  font-size: clamp(32px, 3vw, 46px);
  line-height:1.08;
  font-weight:400;
  letter-spacing:-.04em;
  color:var(--text);
}
.comparison-stat-card h3 { margin-top:16px; font-size:18px; font-weight:500; }
.comparison-stat-card p { margin-top:12px; color:var(--text-secondary); font-size:15px; }

.comparison-matrix {
  margin-top: 50px;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(12,13,22,.78);
  box-shadow: var(--shadow);
}
.comparison-matrix-row {
  display: grid;
  grid-template-columns: minmax(150px,.78fr) minmax(220px,1.1fr) minmax(230px,1.2fr) minmax(200px,1fr);
}
.comparison-matrix-row > div {
  min-width:0;
  padding: 23px 22px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
}
.comparison-matrix-row > div:last-child { border-right:0; }
.comparison-matrix-row:last-child > div { border-bottom:0; }
.comparison-matrix-head { background: linear-gradient(135deg, rgba(91,60,245,.22), rgba(255,107,53,.08)); }
.comparison-matrix-head > div { color:var(--text); font-weight:600; font-size:12px; letter-spacing:.1em; text-transform:uppercase; }
.comparison-matrix-row > div:first-child strong { color:var(--text); font-weight:500; font-size:15px; }
.comparison-matrix-row > div:nth-child(2) { background: rgba(91,60,245,.055); }
.comparison-matrix-row small { display:block; margin-top:7px; color:var(--text-muted); font-size:12px; line-height:1.55; }
.comparison-positive { color:var(--primary-light); font-weight:500; }

.comparison-example-grid,
.comparison-advantage-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:20px;
  margin-top:48px;
}
.comparison-example-card { padding:28px; min-height:330px; display:flex; flex-direction:column; }
.comparison-example-card-highlight { border-color:rgba(123,95,248,.48); background:linear-gradient(145deg,rgba(91,60,245,.18),rgba(255,107,53,.07)); }
.comparison-example-top { display:flex; align-items:center; gap:12px; }
.comparison-example-top > span {
  width:38px; height:38px; border-radius:12px; display:grid; place-items:center;
  border:1px solid rgba(123,95,248,.32); background:var(--primary-soft); color:var(--primary-light);
  font-size:11px; font-weight:600; letter-spacing:.08em;
}
.comparison-example-top strong { font-weight:500; }
.comparison-example-card h3 { margin-top:28px; font-size:34px; font-weight:400; letter-spacing:-.04em; }
.comparison-example-card p { margin-top:14px; color:var(--text-secondary); font-size:14px; }
.comparison-example-card a { margin-top:auto; padding-top:24px; color:var(--primary-light); font-size:13px; font-weight:500; }
.comparison-example-card a:hover { color:var(--text); }

.comparison-advantage-card { padding:30px; min-height:270px; }
.comparison-advantage-card > span { display:block; color:var(--primary-light); font-size:12px; font-weight:600; letter-spacing:.16em; }
.comparison-advantage-card h3 { margin-top:26px; font-size:22px; line-height:1.25; font-weight:500; }
.comparison-advantage-card p { margin-top:14px; color:var(--text-secondary); font-size:14px; }

.comparison-method-grid { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(340px,.85fr); gap:72px; align-items:center; }
.comparison-method-copy > p { margin-top:26px; color:var(--text-secondary); font-size:17px; max-width:720px; }
.comparison-method-card { padding:34px; }
.comparison-method-card h3 { font-size:22px; font-weight:500; }
.comparison-method-card ul { list-style:none; margin-top:20px; }
.comparison-method-card li { position:relative; padding:14px 0 14px 28px; border-bottom:1px solid var(--border); color:var(--text-secondary); font-size:14px; }
.comparison-method-card li:last-child { border-bottom:0; }
.comparison-method-card li::before { content:"✓"; position:absolute; left:0; color:var(--primary-light); font-weight:600; }

.comparison-final-cta { padding-top:90px; }
.comparison-cta-card {
  display:grid;
  grid-template-columns:minmax(0,1.3fr) auto;
  gap:40px;
  align-items:center;
  padding:54px;
  border:1px solid var(--border-strong);
  border-radius:30px;
  background:linear-gradient(135deg,rgba(91,60,245,.22),rgba(18,18,29,.92) 48%,rgba(255,107,53,.10));
  box-shadow:var(--shadow);
}
.comparison-cta-label { color:var(--primary-light); font-size:12px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; }
.comparison-cta-card h2 { margin-top:16px; font-size:clamp(34px,4vw,58px); line-height:1.04; letter-spacing:-.045em; max-width:760px; }
.comparison-cta-card p { margin-top:18px; color:var(--text-secondary); max-width:700px; }
.comparison-cta-actions { margin-top:0; justify-content:flex-end; max-width:270px; }
.comparison-cta-actions .btn { width:100%; text-align:center; justify-content:center; }

@media (max-width: 1180px) and (min-width: 981px) {
  .nav-links { gap: 6px; }
  .nav-links a:not([data-nav="book"]) { font-size: 10px; letter-spacing: .08em; }
  .nav-links a[data-nav="book"] { padding-left: 14px !important; padding-right: 14px !important; }
}
@media (max-width: 1050px) {
  .comparison-hero-grid { grid-template-columns:1fr; gap:44px; }
  .comparison-score-card { max-width:700px; }
  .comparison-stat-grid,
  .comparison-example-grid,
  .comparison-advantage-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .comparison-matrix { overflow:visible; border:0; background:transparent; box-shadow:none; }
  .comparison-matrix-head { display:none; }
  .comparison-matrix-row { grid-template-columns:1fr 1fr; margin-bottom:18px; border:1px solid var(--border); border-radius:20px; overflow:hidden; background:rgba(12,13,22,.78); }
  .comparison-matrix-row > div { border-bottom:1px solid var(--border); }
  .comparison-matrix-row > div:nth-last-child(-n+2) { border-bottom:0; }
  .comparison-matrix-row > div:nth-child(2) { border-right:0; }
  .comparison-method-grid { gap:40px; }
  .comparison-cta-card { grid-template-columns:1fr; }
  .comparison-cta-actions { max-width:none; justify-content:flex-start; }
  .comparison-cta-actions .btn { width:auto; }
}
@media (max-width: 760px) {
  .comparison-hero { min-height:auto; padding-top:calc(var(--nav-h) + 58px); padding-bottom:74px; }
  .comparison-hero-copy h1 { font-size:clamp(44px,14vw,66px); }
  .comparison-hero-copy > p { font-size:16px; }
  .comparison-score-top, .comparison-score-list { padding-left:24px; padding-right:24px; }
  .comparison-stat-grid,
  .comparison-example-grid,
  .comparison-advantage-grid,
  .comparison-method-grid { grid-template-columns:1fr; }
  .comparison-stat-card,
  .comparison-example-card,
  .comparison-advantage-card { min-height:auto; }
  .comparison-matrix-row { grid-template-columns:1fr; }
  .comparison-matrix-row > div { border-right:0; border-bottom:1px solid var(--border) !important; }
  .comparison-matrix-row > div:last-child { border-bottom:0 !important; }
  .comparison-matrix-row > div::before { display:block; margin-bottom:8px; color:var(--text-muted); font-size:10px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; }
  .comparison-matrix-row > div:nth-child(1)::before { content:"Factor"; }
  body.lang-de .comparison-matrix-row > div:nth-child(1)::before { content:"Faktor"; }
  .comparison-matrix-row > div:nth-child(2)::before { content:"Alpine Grid Studios"; }
  .comparison-matrix-row > div:nth-child(3)::before { content:"Market pattern"; }
  body.lang-de .comparison-matrix-row > div:nth-child(3)::before { content:"Marktmuster"; }
  .comparison-matrix-row > div:nth-child(4)::before { content:"Your advantage"; }
  body.lang-de .comparison-matrix-row > div:nth-child(4)::before { content:"Ihr Vorteil"; }
  .comparison-cta-card { padding:34px 24px; }
  .comparison-cta-actions { flex-direction:column; }
  .comparison-cta-actions .btn { width:100%; }
}


/* Project page active navigation state */
body[data-page="project"] a[data-nav="project"] {
  color: var(--text);
  background: var(--nav-button-bg-hover, rgba(255,255,255,0.10));
  border-color: rgba(215, 238, 242, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}


/* Pricing care section single-card layout */
body[data-page="project"] .pricing-care-grid.pricing-care-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

/* Pricing button alignment fix — desktop only. */
body[data-page="project"] .pricing-growth-layout .pricing-card-action .btn {
  min-height: 56px;
}

@media (min-width: 1101px) {
  body[data-page="project"] .pricing-membership-card .pricing-card-action {
    margin-bottom: 24px;
  }
}

/* Custom Alpine Grid Studios logo */
.brand{display:inline-flex;align-items:center;gap:0;flex-shrink:0;line-height:0}
.brand-mark{display:none !important}
.brand-logo{display:block;height:54px;width:auto;max-width:min(34vw,220px);object-fit:contain;filter:drop-shadow(0 0 18px rgba(105,120,255,.12));}
.footer-brand .brand-logo{height:62px;max-width:min(42vw,250px);filter:brightness(0) invert(1);}
@media (max-width: 900px){.brand-logo{height:46px;max-width:180px}.footer-brand .brand-logo{height:56px;max-width:210px}}
@media (max-width: 640px){.brand-logo{height:40px;max-width:150px}.footer-brand .brand-logo{height:50px;max-width:180px}}
