:root {
  --bg: #f5f4f0;
  --bg-alt: #eceae4;
  --fg: #0d0d12;
  --fg-muted: #6b6b78;
  --accent: #e07a15;
  --accent-dark: #c4630f;
  --accent-bg: #fdf3e7;
  --white: #ffffff;
  --border: #ddd9cf;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 244, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px 80px;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 32px;
  max-width: 700px;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
}

/* Problem */
.problem {
  background: var(--fg);
  color: var(--white);
  padding: 80px 48px;
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.problem-body h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 20px;
}

.problem-body p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Features */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}

.section-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 56px;
  max-width: 640px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.feature-card {
  background: var(--white);
  padding: 36px 32px;
}

.feature-card-wide {
  grid-column: 1 / -1;
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Use Cases */
.usecases {
  background: var(--bg-alt);
  padding: 96px 48px;
}

.usecases-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.usecase-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.usecase-item {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.usecase-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.usecase-item h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.usecase-item p {
  color: var(--fg-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 96px 48px;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
}

.pricing-card-accent {
  background: var(--fg);
  border-color: var(--fg);
}

.pricing-card-accent .pricing-label {
  color: rgba(255,255,255,0.5);
}

.pricing-card-accent .pricing-price {
  color: var(--white);
}

.pricing-card-accent .pricing-desc {
  color: rgba(255,255,255,0.6);
}

.pricing-card-accent .pricing-features li {
  color: rgba(255,255,255,0.8);
}

.pricing-card-accent .pricing-features li::before {
  background: var(--accent);
}

.pricing-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 16px;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

/* Closing */
.closing {
  background: var(--accent);
  padding: 96px 48px;
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 24px;
}

.closing p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.1rem;
}

.footer-meta {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* Hero CTAs */
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.15s;
}
.btn-secondary:hover { border-color: var(--fg-muted); }

/* Feature saving badge */
.feature-saving {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* Navbar CTA button */
.nav-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--white) !important;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent-dark); }

/* Process section */
.process {
  background: var(--bg-alt);
  padding: 96px 48px;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 56px;
  margin-top: -36px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}

.process-step {
  background: var(--white);
  padding: 36px 28px;
}

.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}

.step-content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.process-promise {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.process-promise svg { color: var(--accent); flex-shrink: 0; }

/* Social proof */
.social-proof {
  padding: 96px 48px;
}

.social-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.social-proof-note {
  color: var(--fg-muted);
  font-size: 0.88rem;
  margin-top: -36px;
  margin-bottom: 48px;
  font-style: italic;
}

.logo-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.logo-slot {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 18px 32px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.testimonial-text {
  font-size: 1.0rem;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

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

/* Pricing grid 3-column */
.pricing-intro {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 48px;
  margin-top: -36px;
}

.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.pricing-badge-accent {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.pricing-badge-popular {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.pricing-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
}

.pricing-card-accent .pricing-period { color: rgba(255,255,255,0.5); }

.pricing-cta {
  display: block;
  margin-top: 28px;
  text-align: center;
  background: var(--fg);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 8px;
  transition: opacity 0.15s;
}
.pricing-cta:hover { opacity: 0.85; }
.pricing-cta-white {
  background: var(--white);
  color: var(--fg);
}
.pricing-cta-white:hover { opacity: 0.9; }

/* FAQ */
.faq {
  background: var(--bg-alt);
  padding: 96px 48px;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item {
  background: var(--white);
}

.faq-item + .faq-item { border-top: 1px solid var(--border); }

.faq-q {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

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

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--fg-muted);
  flex-shrink: 0;
  margin-left: 16px;
}

details[open] .faq-q::after { content: '−'; }

.faq-a {
  padding: 0 24px 20px;
}

.faq-a p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Contact form */
.contact-form {
  margin-top: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cf-input {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 15px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.15s;
}
.cf-input::placeholder { color: rgba(255,255,255,0.45); }
.cf-input:focus { border-color: rgba(255,255,255,0.5); }

.cf-textarea { resize: vertical; min-height: 80px; }

.cf-btn {
  background: var(--white);
  color: var(--fg);
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.15s;
}
.cf-btn:hover { opacity: 0.9; }
.cf-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Responsive */
/* ── ROI Calculator ─────────────────────────────────────────────────────── */
.roi-calc {
  padding: 96px 48px;
  background: var(--fg);
  color: var(--white);
}

.roi-calc-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.roi-calc-header {
  margin-bottom: 56px;
}

.roi-calc-header .section-headline {
  color: var(--white);
}

.roi-calc-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
}

.roi-calc-body {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

/* Input side */
.roi-inputs {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.roi-field {}

.roi-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.roi-select-wrap {
  position: relative;
}

.roi-select {
  width: 100%;
  appearance: none;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 12px 40px 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s;
}
.roi-select:focus { border-color: var(--accent); }
.roi-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}

.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  transition: background 0.15s;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.roi-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--white);
}

.roi-slider-val {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  min-width: 28px;
  text-align: right;
}

.roi-slider-range {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.roi-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.roi-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  cursor: pointer;
  user-select: none;
}

.roi-check input[type=checkbox] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

/* Result side */
.roi-result-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 80px;
}

.roi-result-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 28px;
}

.roi-result-headline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.roi-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.roi-metric {
  text-align: center;
  padding: 16px 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
}

.roi-metric-accent {
  background: var(--accent);
}

.roi-metric-val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}

.roi-metric-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.roi-metric-accent .roi-metric-lbl { color: rgba(255,255,255,0.85); }

.roi-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.5;
}

/* Email capture */
.roi-capture {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px;
}

.roi-capture-cta {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  margin-bottom: 16px;
}

.roi-capture-cta strong { color: var(--white); }

.roi-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 11px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.15s;
}
.roi-input::placeholder { color: rgba(255,255,255,0.4); }
.roi-input:focus { border-color: var(--accent); }

.roi-submit-btn {
  width: 100%;
  font-size: 0.95rem;
  padding: 13px 24px;
  border: none;
}

/* Success state */
.roi-capture-done {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

.roi-done-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.roi-done-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}

/* ── End ROI Calculator ───────────────────────────────────────────────────── */

/* ── Use Cases V2 ──────────────────────────────────────────────────────── */
.usecases-v2 {
  padding: 96px 48px;
  background: var(--bg-alt);
}

.uc2-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.uc2-intro {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-top: -32px;
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 600px;
}

/* Filter tabs */
.uc2-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.uc2-filter {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.15s;
}
.uc2-filter:hover { border-color: var(--fg-muted); color: var(--fg); }
.uc2-filter.active {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--white);
}

/* Cards grid — 2 columns */
.uc2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.uc2-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.15s;
}
.uc2-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.uc2-card-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.uc2-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-bg);
  border-radius: 10px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.uc2-card-meta {
  flex: 1;
  min-width: 0;
}

.uc2-branch-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.uc2-card-meta h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}

.uc2-savings-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.uc2-saving {
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--accent-bg);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 100px;
}

.uc2-saving-green {
  background: #edfaf3;
  color: #1a7a47;
}

.uc2-summary {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Expand button */
.uc2-expand-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  align-self: flex-start;
  transition: all 0.15s;
}
.uc2-expand-btn:hover { border-color: var(--fg-muted); background: var(--bg-alt); }
.uc2-expand-btn[aria-expanded="true"] .uc2-chevron { transform: rotate(180deg); }
.uc2-chevron { transition: transform 0.2s; flex-shrink: 0; }

/* Detail section */
.uc2-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

/* Vorher/Nachher table */
.uc2-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.uc2-table th {
  background: var(--bg-alt);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

.uc2-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
  color: var(--fg);
}

.uc2-table tr:nth-child(odd) td { background: var(--bg); }
.uc2-table tr:nth-child(even) td { background: var(--white); }

/* First column = Vorher = muted red tint */
.uc2-table td:first-child { color: var(--fg-muted); }
/* Second column = Nachher = slight green accent on text */
.uc2-table td:last-child { color: var(--fg); font-weight: 500; }

/* Tool stack chips */
.uc2-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.uc2-tool-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.uc2-tool-chip {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg);
}

/* Per-card CTA button */
.uc2-cta-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.15s;
  text-align: left;
  align-self: flex-start;
  line-height: 1.3;
}
.uc2-cta-btn:hover { background: var(--accent-dark); }

/* ── End Use Cases V2 ──────────────────────────────────────────────────── */

/* ── Preise Page (/preise) ─────────────────────────────────────────────── */

.pp-hero {
  background: var(--fg);
  padding: 80px 48px;
}

.pp-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.pp-hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.pp-hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.pp-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.65;
}

/* Cards section */
.pp-cards {
  padding: 80px 48px;
  background: var(--bg-alt);
}

.pp-cards-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.pp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pp-card-featured {
  background: var(--fg);
  border-color: var(--fg);
  box-shadow: 0 8px 40px rgba(13,13,18,0.18);
  transform: scale(1.03);
  z-index: 1;
}

.pp-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
}

.pp-card-header {
  margin-bottom: 28px;
}

.pp-tier {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.pp-tier-light {
  color: var(--white);
}

.pp-target {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.pp-target-light {
  color: rgba(255,255,255,0.55);
}

.pp-pricing-block {
  margin-bottom: 28px;
}

.pp-setup {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.pp-setup-light {
  color: rgba(255,255,255,0.5);
}

.pp-setup-label {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.pp-setup-label-light {
  color: rgba(255,255,255,0.4);
}

.pp-monthly {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
}

.pp-monthly-light {
  color: var(--white);
}

.pp-monthly-period {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.pp-monthly-period-light {
  color: rgba(255,255,255,0.5);
}

.pp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 32px;
}

.pp-features li {
  font-size: 0.88rem;
  color: var(--fg);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}

.pp-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.pp-features-light li {
  color: rgba(255,255,255,0.8);
}

.pp-cta {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 8px;
  transition: background 0.15s;
  margin-top: auto;
}

.pp-cta:hover { background: var(--accent-dark); }

.pp-cta-light {
  background: var(--white);
  color: var(--fg);
}

.pp-cta-light:hover { background: var(--bg); }

.pp-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-align: center;
}

/* Compare table */
.pp-compare {
  padding: 80px 48px;
}

.pp-compare-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pp-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pp-table th {
  padding: 14px 18px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  color: var(--fg);
}

.pp-th-feature {
  text-align: left;
  width: 34%;
}

.pp-th-featured {
  background: var(--fg);
  color: var(--white);
}

.pp-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--fg-muted);
  vertical-align: middle;
}

.pp-table td:first-child {
  text-align: left;
  color: var(--fg);
  font-weight: 500;
}

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

.pp-td-featured {
  background: rgba(13,13,18,0.04);
  color: var(--fg);
  font-weight: 600;
}

/* FAQ on preise page */
.pp-faq {
  background: var(--bg-alt);
  padding: 80px 48px;
}

.pp-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Select field in contact form */
.cf-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b78' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ── End Preise Page ───────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .navbar, .hero, .problem, .features, .usecases, .pricing, .closing, .footer,
  .process, .social-proof, .faq, .roi-calc, .usecases-v2,
  .pp-hero, .pp-cards, .pp-compare, .pp-faq {
    padding-left: 24px;
    padding-right: 24px;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-grid,
  .usecase-list,
  .uc2-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid,
  .pricing-grid-3 {
    grid-template-columns: 1fr;
  }

  .pp-grid {
    grid-template-columns: 1fr;
  }

  .pp-card-featured {
    transform: scale(1);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .roi-calc-body {
    grid-template-columns: 1fr;
  }

  .roi-result-col {
    position: static;
  }

  .roi-checks {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .hero { padding: 64px 24px 56px; }
  .features, .usecases, .pricing, .process, .faq, .usecases-v2 { padding: 64px 24px; }
  .pp-hero, .pp-cards, .pp-compare, .pp-faq { padding: 56px 20px; }
  .pp-hero-headline { font-size: 2.2rem; }
  .stat-number { font-size: 3.5rem; }
  .process-steps { grid-template-columns: 1fr; }
}