/* ============================================
   LohnPulse Website — styles.css
   Brand: "Der smarte Nachbar"
   Colors: Forest Green System
   ============================================ */

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

:root {
  --brand-primary: #408557;
  --brand-logo: #2B5C3C;
  --brand-accent: #5FA87E;
  --brand-darkest: #1b5e20;
  --brand-deep: #1d4529;
  --brand-light-bg: #F6FAF7;
  --white: #FFFFFF;
  --off-white: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --neutral-900: #111827;
  --success-bg: #DCFCE7;
  --success-border: #408557;
  --warning-bg: #FEF3C7;
  --warning-border: #F59E0B;
  --error-bg: #FEE2E2;
  --error-border: #EF4444;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1200px;
  --header-height: 72px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  padding-top: var(--header-height);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-logo); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { color: var(--neutral-900); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--brand-light-bg); }
.section-dark { background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-logo) 100%); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Grid --- */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* --- Flex --- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(64, 133, 87, .3);
}
.btn-primary:hover {
  background: var(--brand-logo);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(43, 92, 60, .35);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--white);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.btn-secondary:hover {
  background: var(--brand-light-bg);
  color: var(--brand-logo);
  border-color: var(--brand-logo);
}
.btn-white {
  background: var(--white);
  color: var(--brand-logo);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.btn-white:hover {
  background: var(--brand-light-bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
/* Outline button for dark backgrounds — transparent bg, white border+text */
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: var(--white);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--neutral-200);
  height: var(--header-height);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header-logo { display: flex; align-items: center; gap: 0.75rem; font-weight: 700; font-size: 1.25rem; color: var(--brand-logo); }
.header-logo svg, .header-logo img { height: 36px; width: auto; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { color: var(--neutral-600); font-weight: 500; font-size: 0.95rem; transition: color .2s; position: relative; }
.nav a:hover, .nav a.active { color: var(--brand-primary); }
.nav a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--brand-primary); border-radius: 1px; }
.nav-cta { margin-left: 0.5rem; }
.nav a.btn-primary { color: var(--white); }
.nav a.btn-primary:hover { color: var(--white); }

/* Mobile Navigation */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--neutral-700); margin: 5px 0; transition: all .3s; border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    visibility: hidden;
    opacity: 0;
    transition: transform .3s ease, visibility .3s, opacity .3s;
    z-index: 99;
  }
  .nav.open { transform: translateY(0); visibility: visible; opacity: 1; }
  .nav a { font-size: 1.1rem; padding: 0.5rem 0; }
  .nav-cta { margin-left: 0; width: 100%; text-align: center; }
}

/* --- Hero Section --- */
.hero {
  padding: 3rem 0 5rem;
  background: linear-gradient(135deg, var(--brand-logo) 0%, var(--brand-primary) 50%, var(--brand-accent) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; max-width: 700px; }
.hero .subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,.9);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 480px) {
  .hero { padding: 3rem 0 3rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}

/* --- Problem Section --- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
}
.problem-card h3 { margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.problem-card p { color: var(--neutral-600); line-height: 1.7; }
.punchline {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-primary);
}
@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* --- Steps / Process --- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; counter-reset: step; }
.step {
  text-align: center;
  position: relative;
  padding: 2rem 1.5rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--brand-primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}
.step h3 { margin-bottom: 0.75rem; }
.step p { color: var(--neutral-600); font-size: 0.95rem; }
/* Connector lines */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -1rem;
  width: calc(2rem);
  height: 2px;
  background: var(--neutral-300);
}
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 1rem; }
  .step:not(:last-child)::after { display: none; }
}

/* --- Split Section (Mandant vs Kanzlei) --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.split-left {
  background: var(--brand-light-bg);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.split-right {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-logo) 100%);
  color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.split-right h3, .split-right p, .split-right li { color: var(--white); }
.split h3 { margin-bottom: 1.5rem; font-size: 1.35rem; }
.split ul { list-style: none; padding: 0; }
.split li {
  padding: 0.6rem 0;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.5;
}
.split li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--brand-primary);
}
.split-right li::before { color: var(--brand-accent); }
.split .btn { margin-top: 1.5rem; }
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .split-left { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .split-right { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
}

/* --- Feature Cards --- */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--brand-accent);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-light-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--brand-primary);
  font-size: 1.5rem;
}
.feature-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.feature-card p { color: var(--neutral-600); font-size: 0.95rem; margin: 0; }

/* --- Screenshot Carousel --- */
.carousel {
  position: relative;
  max-width: 900px;
  height: 450px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  background: var(--white);
}
.carousel-track {
  display: flex;
  transition: transform .6s ease;
  height: 100%;
}
.carousel-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-sizing: border-box;
  padding: 1rem;
}
.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .carousel { height: 250px; }
}
@media (max-width: 480px) {
  .carousel { height: 180px; }
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s;
}
.carousel-dot.active { background: var(--white); }
/* On light backgrounds */
.section .carousel-dot { background: var(--neutral-300); }
.section .carousel-dot.active { background: var(--brand-primary); }
.section .carousel { box-shadow: var(--shadow-xl); }

/* --- Headline orphan prevention --- */
h1, h2, h3 { text-wrap: balance; }

/* --- Feature Showcase Label & List --- */
.feature-showcase-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-accent);
  background: var(--brand-light-bg);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.feature-list li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  color: var(--neutral-700);
  font-size: 0.95rem;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-accent);
  font-weight: 700;
}

/* --- Feature Showcase (Text + Screenshot alternating) --- */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--neutral-200);
}
.feature-showcase:last-child { border-bottom: none; }
.feature-showcase.reverse .feature-showcase-text { order: 2; }
.feature-showcase.reverse .feature-showcase-img { order: 1; }
.feature-showcase-text h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.feature-showcase-text p { color: var(--neutral-600); line-height: 1.7; }
.feature-showcase-text .feature-icon { margin-bottom: 0.75rem; }
.feature-showcase-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
  width: 100%;
}
/* Portrait/mobile screenshots — constrain height, center */
.feature-showcase-img.portrait {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--brand-light-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.feature-showcase-img.portrait img {
  width: auto;
  max-width: 280px;
  max-height: 500px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
@media (max-width: 768px) {
  .feature-showcase { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0; }
  .feature-showcase.reverse .feature-showcase-text { order: 1; }
  .feature-showcase.reverse .feature-showcase-img { order: 2; }
}

/* --- Zoho Widget Sizing --- */
/* Ensure Zoho pricing widget iframes get enough width for horizontal layout */
[id^="zf-widget-root-id"] iframe {
  width: 100% !important;
  min-height: 500px;
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.comparison-table thead { background: var(--brand-logo); color: var(--white); }
.comparison-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}
.comparison-table th.highlight { background: var(--brand-primary); }
.comparison-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--neutral-200);
  font-size: 0.95rem;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) { background: var(--brand-light-bg); }
.comparison-table tbody tr:hover { background: rgba(64, 133, 87, .05); }
.comparison-table td.highlight {
  background: rgba(64, 133, 87, .08);
  font-weight: 600;
  color: var(--brand-primary);
}
.comparison-table .check { color: var(--brand-primary); font-weight: 700; }
.comparison-table .cross { color: var(--error-border); }
.comparison-table .partial { color: var(--warning-border); }
@media (max-width: 768px) {
  .comparison-table { font-size: 0.85rem; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comparison-table th, .comparison-table td { padding: 0.6rem 0.75rem; white-space: nowrap; }
}

/* --- Trust / Stats --- */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.trust-item {
  text-align: center;
  padding: 1rem 1.5rem;
}
.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.trust-label {
  font-size: 0.9rem;
  color: var(--neutral-600);
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--brand-light-bg);
  border: 1px solid var(--neutral-200);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-700);
}
.trust-badge svg { width: 18px; height: 18px; color: var(--brand-primary); }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 2.5rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--neutral-200);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--neutral-800);
  font-family: var(--font-sans);
  transition: color .2s;
}
.faq-question:hover { color: var(--brand-primary); }
.faq-question .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--brand-primary);
  transition: transform .3s;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

/* --- Final CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--brand-logo) 0%, var(--brand-primary) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 2.5rem; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 480px) {
  .cta-buttons { flex-direction: column; align-items: stretch; }
}

/* --- Footer --- */
.footer {
  background: var(--neutral-900);
  color: var(--neutral-400);
  padding: 3.5rem 0 1.5rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand p { color: var(--neutral-400); margin-top: 0.75rem; line-height: 1.6; max-width: 280px; }
.footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1rem; font-weight: 600; }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: 0.5rem; }
.footer a { color: var(--neutral-400); transition: color .2s; }
.footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--neutral-700);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Pricing Cards --- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 2px solid var(--neutral-200);
  text-align: center;
  transition: all .3s;
  position: relative;
}
.pricing-card:hover { border-color: var(--brand-accent); box-shadow: var(--shadow-xl); }
.pricing-card.featured {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}
.pricing-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-primary);
  color: var(--white);
  padding: 0.3rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}
.pricing-card h3 { margin-bottom: 0.5rem; }
.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin: 1rem 0;
  line-height: 1;
}
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--neutral-500); }
.pricing-desc { color: var(--neutral-500); font-size: 0.9rem; margin-bottom: 1.5rem; }
.pricing-features { list-style: none; padding: 0; text-align: left; margin-bottom: 2rem; }
.pricing-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--neutral-700);
}
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--brand-primary); font-weight: 700; }

/* --- Price Calculator --- */
.calculator {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  margin: 2rem auto 0;
}
.calculator label { font-weight: 600; font-size: 0.95rem; display: block; margin-bottom: 0.5rem; }
.calculator input[type="range"] {
  width: 100%;
  margin: 0.5rem 0 1rem;
  accent-color: var(--brand-primary);
}
.calculator-result {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-200);
}
.calculator-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-primary);
}
.calculator-amount span { font-size: 1rem; font-weight: 400; color: var(--neutral-500); }

/* --- Legal Pages --- */
.legal-page { padding-top: 2rem; padding-bottom: 4rem; }
.legal-page h1 { margin-bottom: 2rem; font-size: 2rem; }
.legal-page h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.35rem; color: var(--brand-logo); }
.legal-page h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; font-size: 1.1rem; }
.legal-page p, .legal-page li { color: var(--neutral-600); line-height: 1.8; }
.legal-page ul, .legal-page ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page li { margin-bottom: 0.4rem; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.legal-page th, .legal-page td { padding: 0.6rem 1rem; border: 1px solid var(--neutral-200); text-align: left; }
.legal-page th { background: var(--brand-light-bg); font-weight: 600; }

/* --- Sub-Page Hero (smaller) --- */
.hero-sub {
  padding: 3rem 0 3rem;
  background: linear-gradient(135deg, var(--brand-logo) 0%, var(--brand-primary) 100%);
  color: var(--white);
}
.hero-sub h1 { color: var(--white); margin-bottom: 0.75rem; }
.hero-sub p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 600px; }

/* --- Utility --- */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Inline Icon Sizing --- */
.icon-inline { display: inline-block; vertical-align: middle; width: 1.2em; height: 1.2em; margin-right: 0.3em; }

/* --- Section Subtitle --- */
.section-subtitle {
  color: var(--neutral-500);
  max-width: 650px;
  margin: 0.75rem auto 0;
  font-size: 1.1rem;
}

/* --- App-Link Banner --- */
.app-banner {
  background: var(--brand-light-bg);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}
.app-banner p { margin: 0; font-weight: 500; }
@media (max-width: 480px) {
  .app-banner { flex-direction: column; text-align: center; }
}

/* --- Urgency Banner (top of page, below header) --- */
.urgency-banner {
  background: linear-gradient(90deg, var(--brand-logo) 0%, var(--brand-primary) 100%);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .urgency-banner { font-size: 0.8rem; padding: 0.5rem 1rem; }
}
.urgency-banner a { color: var(--white); text-decoration: underline; font-weight: 600; }
.urgency-banner a:hover { color: rgba(255,255,255,.8); }

/* --- CTA Microcopy --- */
.cta-microcopy {
  font-size: 0.8rem;
  color: var(--neutral-400);
  margin-top: 0.75rem;
  text-align: center;
}
.cta-section .cta-microcopy { color: rgba(255,255,255,.6); }

/* --- Founder / Team Section --- */
.founder-section {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--brand-accent);
}
.founder-info h3 { margin-bottom: 0.25rem; }
.founder-info .founder-role { color: var(--brand-primary); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.75rem; }
.founder-info p { color: var(--neutral-600); line-height: 1.7; }
.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.founder-credentials span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  background: var(--brand-light-bg);
  border: 1px solid var(--neutral-200);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--neutral-700);
}
@media (max-width: 768px) {
  .founder-section { flex-direction: column; text-align: center; }
  .founder-credentials { justify-content: center; }
}

/* --- Testimonials --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 3rem;
  line-height: 1;
  color: var(--brand-accent);
  opacity: .3;
  font-family: Georgia, serif;
}
.testimonial-quote { font-style: italic; color: var(--neutral-700); line-height: 1.7; margin-bottom: 1.25rem; padding-top: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-author-name { font-weight: 600; font-size: 0.9rem; color: var(--neutral-800); }
.testimonial-author-role { font-size: 0.8rem; color: var(--neutral-500); }
@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* --- Video Placeholder --- */
.video-placeholder {
  position: relative;
  max-width: 800px;
  margin: 2.5rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--neutral-900);
  aspect-ratio: 16/9;
  cursor: pointer;
}
.video-placeholder img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: transform .2s, background .2s;
}
.video-placeholder:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.1); background: var(--brand-logo); }
.video-play-btn svg { width: 28px; height: 28px; fill: var(--white); margin-left: 3px; }
.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--neutral-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  padding: 1.25rem 1.5rem;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.cookie-text { flex: 1; font-size: 0.9rem; color: var(--neutral-600); line-height: 1.5; }
.cookie-text a { color: var(--brand-primary); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s;
  font-family: var(--font-sans);
}
.cookie-btn-accept { background: var(--brand-primary); color: var(--white); }
.cookie-btn-accept:hover { background: var(--brand-logo); }
.cookie-btn-necessary { background: var(--neutral-100); color: var(--neutral-700); border: 1px solid var(--neutral-300); }
.cookie-btn-necessary:hover { background: var(--neutral-200); }
@media (max-width: 768px) {
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-buttons { width: 100%; justify-content: center; }
}
