﻿/* Dokumentbasis One Page â€“ Light SaaS Theme */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAFAF8;
  --bg-white: #FFFFFF;
  --bg-alt: #F3F4F6;
  --text: #1A2332;
  --text-secondary: #3D4654;
  --text-muted: #5B6472;
  --accent: #84CC16;
  --accent-hover: #65A30D;
  --accent-soft: #ECFCCB;
  --accent-bright: #A3E635;
  --blue: #2563EB;
  --blue-soft: #DBEAFE;
  --border: #E5E7EB;
  --border-light: #F0F1F3;
  --shadow-sm: 0 2px 8px rgba(26, 35, 50, 0.05);
  --shadow: 0 12px 40px rgba(26, 35, 50, 0.09);
  --shadow-lg: 0 24px 64px rgba(26, 35, 50, 0.14);
  --shadow-screenshot: 0 28px 80px rgba(26, 35, 50, 0.16), 0 8px 24px rgba(26, 35, 50, 0.06);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container: 72rem;
  --header-height: 4.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow { max-width: 48rem; }

/* â”€â”€ Announcement bar â”€â”€ */

.announcement-bar {
  background: var(--accent-bright);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  padding: 0.625rem 0;
  line-height: 1.45;
}

.announcement-bar__inner p { margin: 0; }

.announcement-bar a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-bar a:hover { color: var(--text); }

/* â”€â”€ Header pill â”€â”€ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 0;
  background: transparent;
}

.header-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 0.875rem 0.625rem 1rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo:hover { text-decoration: none; color: var(--text); }

.site-logo__img {
  display: block;
  height: 2.25rem;
  width: auto;
  max-width: min(240px, 52vw);
}

.site-logo--footer .site-logo__img {
  height: 2.5rem;
  max-width: 220px;
}

.site-header__nav-group { position: relative; }

.nav-toggle { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }

.nav-toggle-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: var(--radius);
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle:checked ~ .nav-toggle-label .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .nav-toggle-label .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-toggle-label .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 16rem;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.75rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.nav-toggle:checked ~ .site-nav { display: flex; }

.site-nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--text);
  background: var(--bg-alt);
  text-decoration: none;
}

.site-nav__login {
  color: var(--text-muted) !important;
  font-size: 0.8125rem !important;
}

.site-nav .btn { margin-top: 0.375rem; text-align: center; justify-content: center; }

/* â”€â”€ Buttons â”€â”€ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn--lg { padding: 0.875rem 1.75rem; font-size: 0.9375rem; }
.btn--block { width: 100%; }

.btn--primary {
  color: var(--text);
  background: var(--accent-bright);
  box-shadow: 0 2px 8px rgba(132, 204, 22, 0.25);
}

.btn--primary:hover {
  background: var(--accent);
  color: var(--text);
}

.btn--dark {
  color: #fff;
  background: var(--text);
}

.btn--dark:hover {
  background: #2D3748;
  color: #fff;
}

.btn--outline {
  color: var(--text);
  background: transparent;
  border: 1.5px solid var(--border);
}

.btn--outline:hover {
  background: var(--bg-alt);
  color: var(--text);
}

/* â”€â”€ Hero â”€â”€ */

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero--centered { text-align: center; }

.hero__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
  font-size: clamp(2.125rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 54rem;
  margin: 0 auto 1.5rem;
}

.hero__headline-line {
  display: block;
}

.headline-highlight {
  background: var(--accent-bright);
  padding: 0.08em 0.28em;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__sub {
  font-size: clamp(1.0625rem, 2.2vw, 1.1875rem);
  color: var(--text-secondary);
  max-width: 38rem;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.purchase-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto 1rem;
  text-align: center;
}

.purchase-note--cta {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.hero__discover {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.hero__discover a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.hero__discover a:hover { color: var(--text); text-decoration: underline; }

.hero__values {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.625rem;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  padding: 0;
}

.hero__values li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.875rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

.hero__trust {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* â”€â”€ Screenshot frames â”€â”€ */

.screenshot-frame {
  margin: 0;
  position: relative;
}

.screenshot-frame__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3F6212;
  background: var(--accent-soft);
  border: 1px solid rgba(132, 204, 22, 0.25);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.screenshot-frame__browser {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-screenshot);
  overflow: hidden;
}

.screenshot-frame--prominent .screenshot-frame__browser,
.screenshot-frame--hero .screenshot-frame__browser {
  box-shadow: var(--shadow-screenshot);
}

.screenshot-frame__bar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.screenshot-frame__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.screenshot-frame__dot--red { background: #FCA5A5; }
.screenshot-frame__dot--yellow { background: #FDE047; }
.screenshot-frame__dot--green { background: #86EFAC; }

.screenshot-frame__url {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.screenshot-frame__body {
  background: var(--bg-white);
  line-height: 0;
}

.screenshot-frame__body img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.screenshot-frame--prominent {
  max-width: 56rem;
  margin: 0 auto 2.5rem;
}

.screenshot-frame--hero {
  max-width: 64rem;
  margin: 2.5rem auto 0;
}

.feature-intro {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.feature-intro h2 {
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin-bottom: 1rem;
}

.feature-intro p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.feature-block {
  max-width: 44rem;
}

.feature-block h2 {
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin-bottom: 1rem;
}

.feature-block p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.feature-points--centered {
  max-width: 44rem;
  margin: 0 auto;
}

.feature-points--inline {
  display: grid;
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .feature-points--inline {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Kernlogik grid */

.section-logic {
  padding: 5rem 0;
  background: var(--bg-white);
}

.logic-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.logic-card {
  padding: 1.375rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.logic-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.logic-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.compare-note {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 2rem auto 0;
  line-height: 1.6;
}

.cta-card__logo {
  height: 2.75rem;
  width: auto;
  margin: 0 auto 1.25rem;
  opacity: 0.95;
}

@media (min-width: 640px) {
  .logic-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .logic-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Audience strip */

.audience-strip {
  padding: 1.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border-light);
}

.audience-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.audience-strip span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* â”€â”€ Feature sections â”€â”€ */

.feature-section {
  padding: 5.5rem 0;
}

.feature-section--alt { background: var(--bg-white); }

.feature-split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.feature-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--text);
  color: #fff;
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.125rem;
}

.feature-split__content h2 {
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin-bottom: 1.125rem;
}

.feature-split__content > p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.feature-points {
  list-style: none;
  display: grid;
  gap: 0.875rem;
}

.feature-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.feature-points__icon {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  margin-top: 0.2rem;
  background: var(--accent-soft);
  border-radius: 4px;
  position: relative;
}

.feature-points__icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.8;
}

/* Admin mini grid inside feature */
.admin-mini-grid {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
}

.admin-mini-card {
  padding: 1.125rem 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature-section--alt .admin-mini-card { background: var(--bg); }

.admin-mini-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.admin-mini-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.feature-split__visual {
  padding: 0.5rem;
}

.feature-split__visual .screenshot-frame {
  height: 100%;
}

/* Legacy ui-frame styles removed – real screenshots used */

/* â”€â”€ Section intro â”€â”€ */
/* â”€â”€ Section intro â”€â”€ */

.section-intro { margin-bottom: 2.5rem; }

.section-intro--center {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.section-intro h2 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-intro__lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* â”€â”€ Compare â”€â”€ */

.section-compare {
  padding: 5.5rem 0;
  background: var(--bg-white);
}

.compare-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.compare-card {
  position: relative;
  padding: 2.25rem 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.compare-card--pro {
  background: var(--bg-white);
  border-color: rgba(132, 204, 22, 0.35);
  box-shadow: var(--shadow);
}

.compare-card__label {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #3F6212;
  background: var(--accent-soft);
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-pill);
}

.compare-card h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 0.375rem;
}

.compare-card__price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.compare-card__price-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 1rem;
  text-align: center;
}

.compare-card__desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.compare-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}

.compare-list li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding-left: 1.375rem;
  position: relative;
  line-height: 1.5;
}

.compare-list li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
}

/* â”€â”€ Audience grid â”€â”€ */

.section-audience { padding: 5.5rem 0; }

.audience-grid {
  display: grid;
  gap: 1.125rem;
  grid-template-columns: 1fr;
}

.audience-card {
  padding: 1.625rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.audience-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.audience-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.audience-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* â”€â”€ Diff section â”€â”€ */

.section-diff {
  padding: 5.5rem 0;
  background: var(--bg-white);
}

.diff-grid {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.diff-grid li {
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
}

/* â”€â”€ CTA â”€â”€ */

.section-cta {
  padding: 5.5rem 0 5.5rem;
}

.cta-card {
  text-align: center;
  padding: 3.25rem 2.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  max-width: 40rem;
  margin: 0 auto;
}

.cta-card h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-card > p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.75;
}

.cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.cta-card__contact {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* â”€â”€ Footer â”€â”€ */

.site-footer {
  padding: 3rem 0 2rem;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.site-footer__brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 28rem;
  line-height: 1.6;
}

.site-footer__tagline {
  font-size: 0.8125rem !important;
  color: var(--text-muted);
  margin-top: 0.5rem !important;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.site-footer__links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
}

.site-footer__links a:hover { color: var(--text); text-decoration: underline; }

.site-footer__copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.site-logo--footer { margin-bottom: 0; }

/* â”€â”€ Legal pages â”€â”€ */

.legal-page {
  padding: 3rem 0 4rem;
  min-height: 50vh;
}

.back-link {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.back-link:hover { color: var(--text); }

.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.legal-content {
  padding: 1.5rem 0;
}

.legal-content h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.legal-content h2:first-of-type {
  margin-top: 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  line-height: 1.75;
}

.legal-content p {
  margin-bottom: 0.75rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.25rem;
}

.legal-content li {
  margin-bottom: 0.35rem;
}

.site-footer__legal {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-top: 1.25rem;
  line-height: 1.6;
  max-width: 42rem;
}

/* â”€â”€ Success page â”€â”€ */

.success-layout { display: flex; flex-direction: column; min-height: 100vh; }
.success-header { border-bottom: 1px solid var(--border); background: var(--bg-white); }
.success-header__inner { display: flex; align-items: center; height: var(--header-height); }
.success-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 3rem 0 4rem; }

.success-content {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.success-content h1 { margin-bottom: 1.25rem; font-weight: 800; }
.success-content p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 2rem; text-align: left; line-height: 1.7; }

.success-footer { padding: 1.5rem 0 2rem; border-top: 1px solid var(--border); background: var(--bg-white); }
.success-footer__inner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
.success-footer__digistore { font-size: 0.875rem; color: var(--text-muted); }
.success-footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.25rem; }
.success-footer__links a { font-size: 0.875rem; color: var(--text-secondary); }

/* â”€â”€ Responsive â”€â”€ */

@media (min-width: 640px) {
  .admin-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .success-footer__inner { flex-direction: row; justify-content: center; gap: 1.5rem; }
}

@media (min-width: 768px) {
  .nav-toggle-label { display: none; }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.125rem;
    min-width: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .nav-toggle:checked ~ .site-nav { display: flex; flex-direction: row; }

  .site-nav a { padding: 0.45rem 0.6rem; font-size: 0.875rem; }
  .site-nav .btn { margin-top: 0; margin-left: 0.375rem; }
  .site-nav__login { margin-left: 0.25rem; }

  .feature-split {
    grid-template-columns: 1fr 1.05fr;
    gap: 4rem;
  }

  .feature-split__visual {
    padding: 0.75rem;
  }

  .feature-split--reverse .feature-split__content { order: 2; }
  .feature-split--reverse .feature-split__visual { order: 1; }

  .site-footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .site-footer__links { justify-content: flex-end; }
}

@media (min-width: 900px) {
  .audience-grid { grid-template-columns: repeat(4, 1fr); }
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
  .diff-grid li:last-child { grid-column: 2; }
}

@media (max-width: 767px) {
  .hero {
    padding: 2.5rem 0 2rem;
  }

  .hero__headline {
    font-size: clamp(1.875rem, 7vw, 2.5rem);
    gap: 0.15em;
  }

  .hero__sub {
    font-size: 1.0625rem;
  }

  .feature-section {
    padding: 4rem 0;
  }

  .section-compare,
  .section-audience,
  .section-diff,
  .section-cta {
    padding: 4rem 0;
  }

  .header-pill { border-radius: var(--radius-lg); }
  .site-nav .btn--sm { width: 100%; }
  .feature-split__visual { padding: 0.25rem 0; }
}

@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .compare-grid { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero__actions .btn { width: 100%; }
  .cta-card__actions .btn { width: 100%; }
}
