/* === Mentex Code® landing pages — consolidated styles =====================
   Extracted from inline <style> blocks in templates/landing*.html
   (Task #24). Loaded *after* theme.css so the landing-specific
   CSS variables and components override the global theme where needed. */

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

/* ============================================================
   SHARED BASE
   Common rules used across all four landing pages
   (variables, body backgrounds, glass cards, buttons, header, etc.)
   ============================================================ */

.mono-data {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(197, 160, 89, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(3, 20, 50, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(197, 160, 89, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(59, 130, 246, 0.06) 59px, rgba(59, 130, 246, 0.06) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(59, 130, 246, 0.06) 59px, rgba(59, 130, 246, 0.06) 60px),
    repeating-linear-gradient(0deg, transparent, transparent 239px, rgba(59, 130, 246, 0.12) 239px, rgba(59, 130, 246, 0.12) 240px),
    repeating-linear-gradient(90deg, transparent, transparent 239px, rgba(59, 130, 246, 0.12) 239px, rgba(59, 130, 246, 0.12) 240px);
  background-attachment: fixed;
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

.gradient-text {
  background: linear-gradient(135deg, #C5A059 0%, #E3D1AE 35%, #CED2D6 70%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
}

.glass-card-gold {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-gold);
  border-radius: 1rem;
}

.glass-card:hover, .glass-card-gold:hover {
  background: var(--glass-bg-hover);
}

.hero-step-card.highlight {
  border: 1px solid var(--border-gold);
}

.hero-step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(197, 160, 89, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

a { color: var(--accent); text-decoration: none; }

a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

header {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  text-align: center;
  background: rgba(3, 7, 18, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-img { height: 50px; width: auto; display: block; }

.header-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-60);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.btn-ghost:hover {
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3), 0 0 30px rgba(59, 130, 246, 0.15);
}

.nav-cta {
  background: linear-gradient(135deg, #C5A059, #a8884a);
  color: #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(197, 160, 89, 0.4);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
  transition: all 0.2s ease;
}

.nav-cta:hover { filter: brightness(1.1); text-decoration: none; box-shadow: 0 0 20px rgba(197, 160, 89, 0.4), 0 0 40px rgba(197, 160, 89, 0.2); }

.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-content h1 span { color: var(--accent); }

.hero-content p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.target-card h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.target-card p { color: var(--muted); font-size: 0.95rem; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-number {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

.process-step h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.9rem;
}

.packages-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.package-card.vip {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, var(--glass-bg) 0%, rgba(197, 160, 89, 0.08) 100%);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.package-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(197, 160, 89, 0.15);
}

.package-card .badge {
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.package-card h3 { margin-bottom: 0.25rem; }

.package-card .pkg-desc {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.package-card .price span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
}

.package-card ul {
  list-style: none;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.package-card li {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  padding-left: 1.4rem;
  position: relative;
}

.package-card li::before {
  content: ">";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.package-card .suitable {
  background: rgba(206,210,214,0.1);
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.faq-item:hover {
  border-color: var(--border-gold);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.footer-inner {
  gap: 2rem;
}

.footer-links a {
  margin-left: 1.5rem;
}

.hero-network-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-network-grid .dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(197, 160, 89, 0.35);
  border-radius: 50%;
  animation: networkFloat 8s ease-in-out infinite;
}

.hero-network-grid .dot:nth-child(even) {
  background: rgba(59, 130, 246, 0.4);
}

.hero-network-grid .dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.12), transparent);
  transform-origin: left center;
}

.hero-network-grid .dot:nth-child(even)::before {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.12), transparent);
}

.hero-network-grid .dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.08), transparent);
  transform-origin: left center;
  transform: rotate(60deg);
}

.hero-network-grid .dot:nth-child(even)::after {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.08), transparent);
}

.hero-network-grid .dot:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 9s; }

.hero-network-grid .dot:nth-child(2) { top: 25%; left: 30%; animation-delay: -1.5s; animation-duration: 7s; }

.hero-network-grid .dot:nth-child(3) { top: 10%; left: 55%; animation-delay: -3s; animation-duration: 10s; }

.hero-network-grid .dot:nth-child(4) { top: 40%; left: 75%; animation-delay: -2s; animation-duration: 8s; }

.hero-network-grid .dot:nth-child(5) { top: 60%; left: 20%; animation-delay: -4s; animation-duration: 11s; }

.hero-network-grid .dot:nth-child(6) { top: 70%; left: 50%; animation-delay: -1s; animation-duration: 9s; }

.hero-network-grid .dot:nth-child(7) { top: 50%; left: 85%; animation-delay: -5s; animation-duration: 8s; }

.hero-network-grid .dot:nth-child(8) { top: 80%; left: 70%; animation-delay: -3.5s; animation-duration: 10s; }

.hero-network-grid .dot:nth-child(9) { top: 30%; left: 90%; animation-delay: -2.5s; animation-duration: 7s; }

.hero-network-grid .dot:nth-child(10) { top: 85%; left: 35%; animation-delay: -6s; animation-duration: 12s; }

.hero-network-grid .dot:nth-child(11) { top: 5%; left: 80%; animation-delay: -4.5s; animation-duration: 9s; }

.hero-network-grid .dot:nth-child(12) { top: 55%; left: 5%; animation-delay: -7s; animation-duration: 11s; }

@keyframes networkFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  25% { transform: translate(15px, -10px); opacity: 0.5; }
  50% { transform: translate(-10px, 15px); opacity: 0.25; }
  75% { transform: translate(8px, 8px); opacity: 0.45; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }

.stagger-2 { transition-delay: 0.2s; }

.stagger-3 { transition-delay: 0.3s; }

.stagger-4 { transition-delay: 0.4s; }

.stagger-5 { transition-delay: 0.5s; }

.stagger-6 { transition-delay: 0.6s; }

.process-step:hover {
  transform: translateY(-4px);
}

.process-step:hover .step-number {
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.hero-step-card::after,
.target-card::after,
.package-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.5) 40%, rgba(59, 130, 246, 0.8) 50%, rgba(59, 130, 246, 0.5) 60%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

@keyframes scanBeam {
  0% { top: 0; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hero-step-card.visible::after,
.target-card.visible::after,
.package-card.visible::after {
  animation: scanBeam 0.8s ease-out forwards;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(197, 160, 89, 0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}


/* ============================================================
   PAGE: landing.html
   Page-specific rules for templates/landing.html
   ============================================================ */

.client-logos img { max-height: 40px; max-width: 160px; width: auto; height: auto; object-fit: contain; }

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

.showcase-item { max-width: 100%; }

:root {
  --bg: #030712;
  --bg-dark: #020409;
  --accent-blue: #3b82f6;
  --card: rgba(255, 255, 255, 0.04);
  --card-hover: rgba(255, 255, 255, 0.06);
  --accent: #C5A059;
  --accent-light: #E3D1AE;
  --accent-soft: rgba(197, 160, 89, 0.15);
  --silver: #CED2D6;
  --text: #ffffff;
  --text-80: rgba(255, 255, 255, 0.8);
  --text-60: rgba(255, 255, 255, 0.6);
  --text-40: rgba(255, 255, 255, 0.4);
  --text-35: rgba(255, 255, 255, 0.35);
  --muted: #CED2D6;
  --border: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(197, 160, 89, 0.2);
  --border-gold-strong: rgba(197, 160, 89, 0.35);
  --glow-gold: rgba(197, 160, 89, 0.15);
  --glow-blue: rgba(3, 7, 18, 0.8);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(24px);
}

.section-glow {
  position: relative;
}

.section-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(197, 160, 89, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
}


.hero-step-card.highlight .hero-step-icon {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.3), rgba(197, 160, 89, 0.15));
}

.hero-step-card h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.hero-step-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.comparison-cards {
  display: none;
}

.comparison-table-wrapper {
  display: block;
}

@media (max-width: 768px) {
  /* --- Hero --- */
  .hero-steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* --- Comparison (switch table -> stacked cards) --- */
  .comparison-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .comparison-table-wrapper {
    display: none;
  }
}

.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  overflow: hidden;
  font-size: 0.92rem;
}

.comp-table th {
  padding: 1.1rem 1rem;
  font-weight: 600;
  border-bottom: 2px solid rgba(197, 160, 89, 0.3);
  text-align: center;
  color: var(--muted);
}

.comp-table th:first-child {
  text-align: left;
  color: var(--text);
}

.comp-table th.mentex-col {
  color: var(--accent);
  background: rgba(197, 160, 89, 0.1);
  border-bottom-color: var(--accent);
}

.comp-table td {
  padding: 0.9rem 1rem;
  text-align: center;
  color: var(--muted);
  border-bottom: 1px solid rgba(206,210,214,0.08);
}

.comp-table td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
}

.comp-table td.mentex-col {
  color: var(--accent);
  background: rgba(197, 160, 89, 0.05);
  font-weight: 600;
}

.comp-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.06);
}

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

.comparison-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--glass-border);
}

.comparison-card-title {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(197, 160, 89, 0.3);
}

.comparison-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  gap: 0.5rem;
}

.comparison-card-row:not(:last-child) {
  border-bottom: 1px solid rgba(206, 210, 214, 0.08);
}

.comparison-card-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  min-width: 55px;
  flex-shrink: 0;
}

.comparison-card-label.mentex {
  color: var(--accent);
  font-weight: 600;
}

.comparison-card-value {
  font-size: 0.85rem;
  text-align: right;
  flex: 1;
  color: var(--muted);
}

.comparison-card-value.highlight {
  color: var(--accent);
  background: rgba(197, 160, 89, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(197, 160, 89, 0.2);
  font-weight: 600;
}

.hero-sidebar {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border-gold);
  max-width: 700px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.hero-sidebar h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.hero-sidebar ul {
  list-style: none;
  margin-bottom: 1rem;
}

.hero-sidebar li {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

.hero-sidebar li::before {
  content: ">";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.hero-sidebar .note {
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid rgba(206,210,214,0.2);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}

.target-groups {
  padding: 4rem 0;
  background: transparent;
}

.target-groups h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.target-groups .subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process {
  padding: 4rem 0;
}

.process h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.process .subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

@media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

.packages {
  padding: 4rem 0;
  background: transparent;
}

.packages h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.packages .subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.package-card .pkg-header {
  margin-bottom: 1.5rem;
}

.about-section {
  padding: 4rem 0;
  background: transparent;
}

.about-section h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.about-section .subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.testimonial-card::before {
  left: 1.5rem;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  color: var(--muted);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-savings {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(206,210,214,0.2);
}

.testimonial-author .title {
  opacity: 0.8;
}

.faq {
  background: transparent;
}

.faq-item summary {
  font-size: 1rem;
  transition: background 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  background: rgba(197, 160, 89, 0.08);
}

.faq-item .faq-content {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.faq-item p { color: var(--muted); font-size: 0.9rem; margin: 0; }

.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: transparent;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(197, 160, 89, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-60);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-info h4 { margin-bottom: 0.5rem; }

.target-grid.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.target-grid.bento-grid .target-card:first-child {
  grid-column: 1 / -1;
  padding: 2.5rem;
  background: linear-gradient(145deg, var(--glass-bg) 0%, rgba(197, 160, 89, 0.06) 100%);
  border-color: var(--border-gold-strong);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.target-grid.bento-grid .target-card:first-child h3 {
  font-size: 1.3rem;
}

.target-grid.bento-grid .target-card:first-child p {
  font-size: 1.02rem;
  max-width: 700px;
}

.target-grid.bento-grid .target-card:nth-child(2),
.target-grid.bento-grid .target-card:nth-child(3) {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comparison-header-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto 2.5rem;
}

.comparison-header-bento .bento-title-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-gold);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comparison-header-bento .bento-stat-card {
  background: linear-gradient(145deg, rgba(197, 160, 89, 0.12) 0%, rgba(197, 160, 89, 0.04) 100%);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-gold);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comparison-header-bento .bento-stat-card .stat-number {
  font-size: 2.5rem;
  color: var(--accent);
}

.comparison-header-bento .bento-stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.stagger-7 { transition-delay: 0.7s; }

.stagger-8 { transition-delay: 0.8s; }

#salarySlider {
  position: relative;
}

.target-card,
.hero-step-card,
.testimonial-card,
.comparison-card {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.target-card:hover,
.hero-step-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(197, 160, 89, 0.15);
}

.target-groups h2,
.process h2,
.packages h2,
.about-section h2,
.cost-calculator h2,
.comparison h2 {
  letter-spacing: -0.03em;
}

.hero-step-card,
.target-card,
.package-card,
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.comparison-header-bento .bento-stat-card .stat-number {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-sidebar li::before {
  color: var(--accent-blue);
}

#salarySlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #C5A059, #E3D1AE);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(197,160,89,0.4), 0 2px 8px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.85);
  transition: all 0.2s ease;
}

#salarySlider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(197,160,89,0.6), 0 2px 12px rgba(0,0,0,0.4);
}

#salarySlider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #C5A059, #E3D1AE);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(197,160,89,0.4), 0 2px 8px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.85);
}

.showcase-item:hover {
    transform: scale(1.03);
  }

@media (max-width: 992px) {
  /* --- Target Groups --- */
  .target-grid { grid-template-columns: repeat(2, 1fr); }
  /* --- Testimonials --- */
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  /* --- Case Studies --- */
  .case-studies-grid {
    grid-template-columns: 1fr !important;
    max-width: 600px;
    margin: 0 auto;
  }
  /* --- Showcase --- */
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 576px) {
    /* --- Showcase --- */
    .showcase-grid {
      grid-template-columns: 1fr !important;
      gap: 2rem !important;
    }
  }

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: fadeIn 0.3s ease;
  }

.lightbox-overlay.active {
    display: flex;
  }

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
  }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

.lightbox-close:hover {
    transform: scale(1.2);
  }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
  /* --- Header --- */
  .header-inner {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }
  .header-nav {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .logo-img {
    height: auto;
    width: clamp(180px, 50vw, 280px);
    max-width: 80vw;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  /* --- Hero --- */
  .hero {
    padding: 2rem 0;
  }
  .hero-content h1 {
    font-size: 1.4rem;
    padding: 0 0.5rem;
  }
  .hero-content p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  .hero-sidebar {
    margin: 1.5rem 0.5rem 0;
    padding: 1rem;
  }
  .hero-network-grid .dot::before,
  .hero-network-grid .dot::after {
    width: 60px;
  }

  /* --- Layout / containers / section padding --- */
  .container {
    padding: 0 1rem;
  }
  .target-groups, .process, .packages, .social-proof, .faq {
    padding: 2.5rem 0;
  }
  .target-groups h2, .process h2, .packages h2, .social-proof h2, .faq h2 {
    font-size: 1.3rem;
  }

  /* --- Target Groups --- */
  .target-grid { grid-template-columns: 1fr; }
  .target-grid.bento-grid {
    grid-template-columns: 1fr;
  }
  .target-grid.bento-grid .target-card:first-child {
    grid-column: 1;
  }

  /* --- Comparison --- */
  .comparison table {
    font-size: 0.85rem;
  }
  .comparison th, .comparison td {
    padding: 0.6rem 0.4rem !important;
    font-size: 0.8rem;
  }
  .comparison th:first-child, .comparison td:first-child {
    min-width: 120px;
  }
  .comparison-header-bento {
    grid-template-columns: 1fr;
  }
  .comparison td, .comparison th {
    padding: 0.75rem 0.5rem !important;
  }

  /* --- Cost Calculator --- */
  .cost-calculator .container > div > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .cost-calculator .container > div {
    padding: 1.5rem !important;
  }
  #salarySlider {
    height: 12px !important;
  }
  #salarySlider::-webkit-slider-thumb {
    width: 28px !important;
    height: 28px !important;
  }

  /* --- Wizard --- */
  .wizard-card, #wizardStep1 > div { grid-template-columns: 1fr !important; }

  /* --- Packages --- */
  .packages .container > div:last-child > div:last-child {
    grid-template-columns: 1fr !important;
  }

  /* --- Founder Story --- */
  .founder-story .container > div {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .founder-story .container > div > div:last-child {
    text-align: left;
  }
  .founder-story h2 {
    font-size: 1.4rem !important;
  }

  /* --- Stats Block --- */
  .stats-block .container > div {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .stats-block .container > div > div {
    padding: 1rem !important;
  }
  .stats-block .container > div > div > div:first-child {
    font-size: 2.5rem !important;
  }

  /* --- Testimonials --- */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* --- Case Studies --- */
  .case-studies-grid {
    grid-template-columns: 1fr !important;
  }

  /* --- Client Logos --- */
  .client-logos > div > div > div {
    min-width: 100px !important;
    padding: 0.5rem 0.75rem !important;
  }

  /* --- CTA Section --- */
  .cta-section > .container > div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* --- FAQ --- */
  .faq-item summary {
    font-size: 0.95rem;
    padding-right: 1.5rem;
  }

  /* --- Footer --- */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  /* --- Buttons --- */
  .btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* --- Header --- */
  .header-nav {
    gap: 0.3rem;
  }
  .nav-link, .btn-ghost, .nav-cta {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  /* --- Hero --- */
  .hero-content h1 {
    font-size: 1.2rem;
  }
  .hero h1 {
    font-size: 1.75rem !important;
  }

  /* --- Buttons --- */
  .btn-primary {
    font-size: 0.9rem !important;
    padding: 0.75rem 1.25rem !important;
  }

  /* --- Target Groups --- */
  .target-card {
    padding: 1rem !important;
  }
  .target-card h3 {
    font-size: 1rem !important;
  }
  .target-card p {
    font-size: 0.85rem !important;
  }

  /* --- Packages --- */
  .package-card {
    padding: 1.25rem;
  }
  .package-card .price {
    font-size: 1.5rem;
  }
  .package-selector-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* --- Cost Calculator (ROI) --- */
  .cost-calculator h2 {
    font-size: 1.25rem !important;
  }
  .cost-calculator p.subtitle {
    font-size: 0.9rem !important;
  }

  /* --- Founder Story --- */
  .founder-story img {
    width: 180px !important;
    height: 180px !important;
  }
  .founder-story h2 {
    font-size: 1.2rem !important;
  }
  .founder-story p {
    font-size: 0.9rem !important;
  }

  /* --- Comparison: stacked-card layout (flex base, grid override below) --- */
  .comparison table {
    display: block;
  }
  .comparison thead {
    display: none;
  }
  .comparison tbody {
    display: block;
  }
  .comparison tr {
    display: block;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border);
  }
  .comparison td {
    border-bottom: 1px solid rgba(206,210,214,0.1);
  }
  .comparison td:last-child {
    border-bottom: none;
  }
  .comparison td:first-child {
    font-weight: 600;
  }
  .comparison td:first-child::before {
    content: none;
  }
  .comparison td:nth-child(2)::before {
    font-weight: 500;
    font-size: 0.75rem;
  }
  .comparison td:nth-child(3)::before {
    font-weight: 500;
    font-size: 0.75rem;
  }
  /* Comparison: improved aligned-icons layout (overrides above) */
  .comparison td {
    display: grid !important;
    grid-template-columns: 70px 1fr;
    align-items: center;
    text-align: left;
    padding: 0.5rem 0.75rem !important;
    background: var(--glass-bg) !important;
    border-radius: 0.5rem;
    margin-bottom: 0.4rem;
    gap: 0.5rem;
    justify-content: space-between;
  }
  .comparison td:first-child {
    display: block !important;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    background: transparent !important;
    padding: 0 !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 2px solid rgba(197, 160, 89, 0.3);
    color: var(--text);
  }
  .comparison td:nth-child(2)::before,
  .comparison td:nth-child(3)::before {
    font-weight: 500;
    font-size: 0.75rem;
    text-align: left;
  }
  .comparison td:nth-child(2)::before {
    content: "Klassisch:";
    color: var(--muted);
  }
  .comparison td:nth-child(3)::before {
    content: "Mentex:";
    color: var(--accent);
  }
  .comparison td:nth-child(3) {
    background: rgba(197, 160, 89, 0.1) !important;
    border: 1px solid rgba(197, 160, 89, 0.2) !important;
  }
  .comparison table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}


/* ============================================================
   PAGE: landing_hr.html
   Page-specific overrides & additions for templates/landing_hr.html
   ============================================================ */

.btn-primary:hover { filter: brightness(1.1); text-decoration: none; box-shadow: 0 0 20px rgba(197, 160, 89, 0.4), 0 0 40px rgba(197, 160, 89, 0.2); transform: scale(1.03); }

.hero-step-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.hero-step-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(197, 160, 89, 0.15);
}

.target-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border-gold);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.target-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--border-gold-strong);
  box-shadow: 0 12px 40px rgba(197, 160, 89, 0.15);
  transform: translateY(-4px);
}

.process-step {
  text-align: center;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.package-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--glass-border);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
}

.package-card .price {
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

.testimonial-card {
  overflow: hidden;
}

.testimonial-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--border-gold-strong);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(197, 160, 89, 0.15);
}

.testimonial-card::before {
  opacity: 0.15;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.footer-info p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

@media (max-width: 992px) {
    /* --- Showcase --- */
    .showcase-grid-hr { grid-template-columns: repeat(2, 1fr) !important; }
  }

@media (max-width: 768px) {
  /* --- Header --- */
  .header-nav {
    gap: 0.3rem;
  }
  .nav-link, .nav-cta {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  /* --- Hero --- */
  .hero-network-grid .dot::before,
  .hero-network-grid .dot::after {
    width: 60px;
  }
  .hero .container > div > div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* --- Process --- */
  .process .container > div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr !important;
  }

  /* --- About / Founder --- */
  #about-founder > .container > div[style*="grid-template-columns: 1fr 2fr"] {
    grid-template-columns: 1fr !important;
  }
  section[id="about"] > .container > div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* --- Generic section grids (inline-style fallbacks) --- */
  section > .container > div[style*="grid-template-columns: repeat(2"] {
    grid-template-columns: 1fr !important;
  }
  section > .container > div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  section > .container > div[style*="display: grid; grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* --- CTA Section --- */
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* --- Trust Badges --- */
  .trust-badges {
    flex-direction: column;
    gap: 1rem !important;
  }
}

@media (max-width: 576px) {
  /* --- Showcase --- */
  .showcase-grid-hr { grid-template-columns: 1fr !important; gap: 2rem !important; }
  /* --- Generic section grids --- */
  section > .container > div[style*="display: grid; grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 480px) {
  /* --- Header --- */
  .nav-link, .nav-cta {
    font-size: 0.75rem;
    padding: 0.35rem 0.6rem;
  }
  /* --- Hero --- */
  .hero h1 {
    font-size: 1.75rem !important;
  }
  /* --- Buttons --- */
  .btn-primary {
    font-size: 0.9rem !important;
    padding: 0.75rem 1.25rem !important;
  }
}


/* ============================================================
   PAGE: landing_executive_search.html
   Page-specific overrides & additions for templates/landing_executive_search.html
   ============================================================ */

.hero {
  overflow: hidden;
}

.btn-secondary:hover { border-color: var(--border-gold); color: var(--accent); text-decoration: none; box-shadow: 0 0 15px rgba(59, 130, 246, 0.3), 0 0 30px rgba(59, 130, 246, 0.15); transform: translateY(-2px); }

.section-padding { padding: 4rem 0; }

.section-padding-lg { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.section-header .subtitle {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border-gold);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--border-gold-strong);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(197, 160, 89, 0.15);
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.5) 40%, rgba(59, 130, 246, 0.8) 50%, rgba(59, 130, 246, 0.5) 60%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

.benefit-card.visible::after {
  animation: scanBeam 0.8s ease-out forwards;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(197, 160, 89, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.package-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.5) 40%, rgba(59, 130, 246, 0.8) 50%, rgba(59, 130, 246, 0.5) 60%, transparent 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

.package-card.visible::after {
  animation: scanBeam 0.8s ease-out forwards;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border-gold);
  position: relative;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card .testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-gold);
  margin: 0 auto 1rem;
  display: block;
}

.testimonial-card h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.testimonial-savings .label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.testimonial-savings .amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
}

.testimonial-author {
  text-align: center;
  margin-top: 1rem;
}

.testimonial-author .title {
  color: var(--muted);
  font-size: 0.8rem;
}

.faq {
  padding: 4rem 0;
}

.faq h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

footer {
  background: rgba(3, 7, 18, 0.9);
}

.footer-info h3 { color: var(--accent); margin-bottom: 0.5rem; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(59, 130, 246, 0.08);
}

@media (max-width: 768px) {
  /* --- Header --- */
  .header-nav { gap: 0.5rem; }
  .nav-link { display: none; }
  /* --- Hero --- */
  .hero-content h1 { font-size: 1.5rem; }
  .hero-network-grid .dot::before { width: 60px; }
  /* --- Card / Process / Testimonial grids --- */
  .card-grid-3, .card-grid-2, .testimonial-grid, .process-grid { grid-template-columns: 1fr; }
  /* --- Packages --- */
  .packages-grid { grid-template-columns: 1fr !important; }
  /* --- Case Studies --- */
  .case-studies-grid { grid-template-columns: 1fr !important; }
  /* --- CTA --- */
  .cta-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  /* --- Header --- */
  .header-nav { gap: 0.3rem; }
  .nav-link, .btn-ghost, .nav-cta {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  /* --- Hero --- */
  .hero-content h1 { font-size: 1.2rem; }
  /* --- Packages --- */
  .package-card { padding: 1.25rem; }
  .package-card .price { font-size: 1.5rem; }
}

@media (max-width: 992px) {
  /* --- Card / Testimonial grids --- */
  .card-grid-3, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  /* --- Generic section grids (inline-style fallbacks) --- */
  .container > div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 576px) {
      /* --- Generic section grids --- */
      .container > div[style*="grid-template-columns: repeat(4"],
      .container > div[style*="grid-template-columns: repeat(2"] {
        grid-template-columns: 1fr !important;
      }
    }


/* ============================================================
   PAGE: landing_geschaeftsfuehrer.html
   Page-specific overrides & additions for templates/landing_geschaeftsfuehrer.html
   ============================================================ */

.btn-ghost {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-gold);
  color: var(--accent);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #C5A059, #a8884a);
  color: #ffffff;
  padding: 0.9rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.25);
  border: 1px solid rgba(197, 160, 89, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-60);
  padding: 0.9rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--glass-border);
  transition: all 0.2s ease;
}

.section-label {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.hero {
  padding: 5rem 0 4rem;
  background: transparent;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero p.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.content-section {
  padding: 5rem 0;
  background: transparent;
}

.content-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.content-section .subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.7;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.benefit-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

.icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(197, 160, 89, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.step-number {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(197, 160, 89, 0.05));
  color: var(--accent);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.package-card .badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: #CED2D6;
  color: #C5A059;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 2px solid #C5A059;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 3rem;
  color: rgba(197, 160, 89, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 1;
}

.testimonial-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
  border: 2px solid var(--border-gold);
  object-position: center top;
}

.testimonial-savings {
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  text-align: center;
  padding-top: 1rem;
}

.testimonial-author .name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.faq-question span { color: var(--accent); font-size: 1.2rem; transition: transform 0.3s ease; }

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

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-item.open .faq-question span { transform: rotate(45deg); }

footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-info h3 { font-size: inherit; }

.footer-bottom {
  text-align: center;
  color: var(--text-40);
  font-size: 0.8rem;
  padding-top: 1rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  /* --- Benefit grid --- */
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  /* --- Testimonials --- */
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* --- Header --- */
  .header-nav { gap: 0.75rem; }
  /* --- Hero --- */
  .hero h1 { font-size: 1.75rem; }
  .hero-network-grid .dot::before { width: 60px; }
  /* --- Benefit grid --- */
  .benefit-grid { grid-template-columns: 1fr; }
  /* --- Process --- */
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  /* --- Testimonials --- */
  .testimonial-grid { grid-template-columns: 1fr; }
  /* --- Footer --- */
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-links a { margin-left: 0; margin-right: 1.5rem; }
}

@media (max-width: 480px) {
  /* --- Header --- */
  .header-nav { gap: 0.3rem; }
  .nav-link, .btn-ghost, .nav-cta { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
  /* --- Hero --- */
  .hero h1 { font-size: 1.5rem; }
  /* --- Process --- */
  .process-grid { grid-template-columns: 1fr; }
  /* --- Packages --- */
  .package-card { padding: 1.25rem; }
  .package-card .price { font-size: 1.5rem; }
}

