:root {
  --primary: #0e7490;
  --primary-dark: #155e75;
  --primary-light: #e8f4f0;
  --secondary: #5b7c99;
  --accent: #e07a5f;
  --accent-soft: #fdf4f0;
  --success: #16a34a;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --soft: #f8fafb;
  --warm: #faf8f5;
  --dark: #1e293b;
  --radius: 16px;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", "Palatino Linotype", serif;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  color: var(--primary);
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: auto;
  max-height: 72px;
  width: auto;
  max-width: min(220px, 52vw);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 8px 24px rgba(14, 116, 144, 0.28);
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
}

.btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 116, 144, 0.32);
}

.btn-large {
  padding: 0.95rem 1.6rem;
  font-size: 1.02rem;
}

.btn-outline {
  color: var(--primary-dark);
  background: #fff;
  border: 2px solid var(--line);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.btn-sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-soft {
  background: var(--soft);
}

.section-warm {
  background: linear-gradient(180deg, var(--warm) 0%, #fff 100%);
}

.section-dark {
  background: var(--dark);
}

.text-center {
  text-align: center;
}

.section-lead {
  margin-bottom: 2rem;
  font-size: 1.08rem;
  max-width: 58ch;
  margin-inline: auto;
}

/* Hero */
.hero {
  padding: 3.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(14, 116, 144, 0.08), transparent),
    radial-gradient(ellipse 60% 50% at 5% 80%, rgba(224, 122, 95, 0.06), transparent),
    linear-gradient(180deg, #f0f9f8 0%, #fff 70%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.profession-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.profession-chips span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #b8e0d8;
  color: var(--primary-dark);
}

.hero-accent {
  color: var(--primary);
}

.hero-lead {
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-trust li {
  font-size: 0.92rem;
  color: var(--muted);
  padding-left: 1.4rem;
  position: relative;
}

.hero-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* Portal mockup */
.hero-visual-card {
  position: relative;
}

.portal-mockup {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  background: #f1f5f9;
  border-bottom: 1px solid var(--line);
}

.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.mockup-bar span:first-child { background: #f87171; }
.mockup-bar span:nth-child(2) { background: #fbbf24; }
.mockup-bar span:nth-child(3) { background: #4ade80; }

.mockup-url {
  margin-left: auto;
  font-size: 0.72rem;
  font-family: ui-monospace, "Cascadia Code", monospace;
  color: var(--muted);
  background: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.mockup-body {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 280px;
}

.mockup-sidebar {
  background: #1e3a5f;
  padding: 0.85rem 0.55rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
}

.mockup-logo-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 0.35rem 0.4rem;
  margin-bottom: 0.15rem;
}

.mockup-logo-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.mockup-logo {
  display: none;
}

.mockup-nav-item {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.2);
}

.mockup-nav-item.active {
  background: rgba(255,255,255,0.55);
}

.mockup-main {
  padding: 1.25rem 1.35rem;
  background: #f8fafc;
}

.mockup-greeting {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mockup-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.5rem;
  text-align: center;
}

.mockup-stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
  line-height: 1.2;
}

.mockup-stat span {
  font-size: 0.65rem;
  color: var(--muted);
}

.mockup-stat.highlight strong {
  color: var(--success);
}

.mockup-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mockup-row {
  font-size: 0.78rem;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.green { background: var(--success); }
.dot.amber { background: #f59e0b; }
.dot.blue { background: var(--primary); }

.mockup-caption {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  text-align: center;
  color: var(--muted);
  font-style: italic;
}

/* Pain section */
.pain-section {
  background: #fff;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pain-card {
  background: var(--warm);
  border: 1px solid #ede8e0;
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pain-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.pain-card h3 {
  font-size: 1.1rem;
  font-family: inherit;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pain-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pain-bridge {
  margin-top: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 52ch;
  margin-inline: auto;
}

/* Modules */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.module-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #b8e0d8;
}

.module-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.module-card h3 {
  font-size: 1.1rem;
  font-family: inherit;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.module-benefit {
  margin: 0 0 0.85rem;
  font-size: 0.94rem;
  line-height: 1.55;
}

.module-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
  text-decoration: none;
}

.module-link:hover {
  text-decoration: underline;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.pillar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.3rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pillar-featured {
  border: 2px solid var(--primary);
  box-shadow: 0 14px 36px rgba(14, 116, 144, 0.14);
  background: linear-gradient(180deg, #fff 0%, var(--primary-light) 100%);
}

.pillar-icon {
  font-size: 2.4rem;
  margin-bottom: 0.7rem;
}

.pillar-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.12rem;
  font-family: inherit;
  font-weight: 700;
}

.pillar-card p {
  margin: 0;
  font-size: 0.95rem;
}

/* Trust */
.trust-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.trust-lead {
  font-size: 1.08rem;
  line-height: 1.7;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.trust-list li {
  padding: 0.55rem 0 0.55rem 1.5rem;
  position: relative;
  font-size: 0.96rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.trust-list li:last-child {
  border-bottom: none;
}

.trust-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.compliance-note {
  padding: 1rem 1.15rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #64748b;
  background: #fff;
  border-left: 4px solid var(--secondary);
  border-radius: 0 10px 10px 0;
}

.data-flow {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.flow-node {
  padding: 1.25rem 1rem;
  border-radius: 12px;
  border: 2px solid var(--line);
}

.flow-you {
  background: var(--primary-light);
  border-color: #99d4c8;
}

.flow-us {
  background: #f1f5f9;
}

.flow-label {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.flow-detail {
  font-size: 0.85rem;
  color: var(--muted);
}

.flow-arrow {
  margin: 1rem 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

/* Social proof */
.social-proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.proof-stat strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.proof-stat span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Pricing */
.pricing-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1000px;
  margin: 2.5rem auto 1.5rem;
}

.price-box {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.35rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.price-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-recommended {
  border-color: var(--primary);
  box-shadow: 0 18px 44px rgba(14, 116, 144, 0.16);
}

.rec-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #c96d52);
  color: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.price-box h3 {
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
  font-family: inherit;
  font-weight: 700;
}

.price-amount {
  font-family: Georgia, serif;
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.price-amount span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
}

.price-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.93rem;
  color: #374151;
}

.price-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

/* FAQ teaser */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.25rem 1rem;
}

.faq-item summary {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  padding: 0.85rem 0;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-weight: 700;
}

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

.faq-item p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Service */
.service-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 2rem auto 0;
  text-align: center;
}

.service-compact article {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.4rem 1rem;
  transition: transform 0.2s;
}

.service-compact article:hover {
  transform: translateY(-2px);
}

.service-compact h3 {
  margin-bottom: 0.4rem;
  font-size: 1.08rem;
  font-family: inherit;
  font-weight: 700;
}

.service-compact p {
  margin: 0;
  font-size: 0.92rem;
}

/* CTA */
.cta-final {
  background: linear-gradient(180deg, #fff 0%, var(--primary-light) 100%);
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.cta-copy h2 {
  margin-bottom: 0.85rem;
}

.cta-copy p {
  font-size: 1.05rem;
  line-height: 1.65;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.cta-benefits li {
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
  font-size: 0.94rem;
  color: var(--muted);
}

.cta-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.demo-form {
  display: grid;
  gap: 0.85rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.demo-form input,
.demo-form select {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 0.82rem 0.9rem;
  font: inherit;
  transition: border-color 0.2s;
  background: #fff;
}

.demo-form input:focus,
.demo-form select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-feedback {
  margin: 0.4rem 0 0;
  min-height: 1.2em;
  font-size: 0.9rem;
  color: var(--success);
}

.form-feedback-error {
  color: #b91c1c;
}

.demo-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.trust-line {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.trust-line a {
  color: var(--primary);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--dark);
  color: #94a3b8;
}

.footer-minimal {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
}

.footer-minimal > p {
  margin: 0;
  color: #e2e8f0;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-brand-block p {
  margin: 0;
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-logo {
  display: block;
  height: auto;
  max-height: 48px;
  width: auto;
  max-width: 150px;
  background: #fff;
  border-radius: 8px;
  padding: 0.35rem 0.55rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.88rem;
  align-items: center;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.mono {
  font-family: ui-monospace, "Cascadia Code", monospace;
  color: #64748b;
}

/* Legal pages */
.legal-page {
  background: #fff;
}

.legal-container {
  max-width: 800px;
}

.legal-container h1 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary);
}

.legal-container h2 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-size: 1.4rem;
}

.legal-container h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.legal-container h4 {
  margin-top: 0.8rem;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
}

.legal-container p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-container ul {
  margin: 0 0 1.25rem 1.2rem;
  padding: 0;
  line-height: 1.65;
  color: var(--muted);
}

.legal-container li {
  margin-bottom: 0.45rem;
}

.wissen-hub-list {
  list-style: none;
  margin-left: 0;
  padding: 0;
}

.wissen-hub-list li {
  margin-bottom: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.wissen-hub-list a {
  text-decoration: none;
  color: var(--primary);
}

.wissen-hub-list a:hover {
  text-decoration: underline;
}

.legal-container a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-copy {
    text-align: center;
  }
  .profession-chips {
    justify-content: center;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-trust {
    align-items: center;
  }
  .trust-split,
  .cta-split {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .module-grid,
  .pillars,
  .pricing-modern,
  .service-compact {
    grid-template-columns: 1fr;
  }
  .pain-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    background: #fff;
    font-weight: 700;
    cursor: pointer;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1rem 1rem;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 0.6rem 0.3rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .footer-minimal {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .mockup-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
