@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

:root {
  --red: #8B1A1A;
  --red-hover: #b22222;
  --red-dark: #6b1414;
  --red-pale: #fdf3f3;
  --red-light: #f5e0e0;
  --red-border: #e8c4c4;
  --dark: #111111;
  --mid: #444;
  --soft: #777;
  --muted: #aaa;
  --line: #e5e5e5;
  --bg: #f9f8f6;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

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

/* ───────────────── Nav ───────────────── */
.nav {
  background: var(--dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
.nav-name {
  font-family: 'DM Serif Display', serif;
  font-size: 21px;
  color: white;
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: white; }
.nav-cta {
  background: var(--red);
  color: white !important;
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s ease;
}
.nav-cta:hover { background: var(--red-hover); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

/* ───────────────── Buttons ───────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.15s ease;
}
.btn-primary {
  background: var(--red);
  color: white;
}
.btn-primary:hover { background: var(--red-hover); }
.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--line);
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); }
.btn-on-dark {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-on-dark:hover { border-color: white; }

/* ───────────────── Hero ───────────────── */
.hero {
  background: var(--dark);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 50px solid rgba(255,255,255,0.045);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: 10%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 32px solid rgba(139,26,26,0.18);
}
.hero-inner {
  position: relative;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red-hover);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.18;
  color: white;
  margin-bottom: 22px;
  max-width: 14ch;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ───────────────── Section labels & headings ───────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-label.on-dark { color: var(--red-hover); }

h2.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--dark);
}
h2.section-title.on-dark { color: white; }

/* ───────────────── Problem / Value ───────────────── */
.split-section {
  padding: 88px 0;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
}
.split-card {
  border-radius: 14px;
  padding: 36px;
}
.split-card.problem {
  background: var(--white);
  border: 1.5px solid var(--line);
}
.split-card.solution {
  background: var(--red-pale);
  border: 1.5px solid var(--red-border);
}
.split-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--dark);
}
.split-card.solution h3 { color: var(--red-dark); }
.split-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.split-card li {
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.split-card.problem li::before {
  content: '✕';
  color: var(--muted);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 12px;
}
.split-card.solution li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ───────────────── Library spotlight ───────────────── */
.library-spotlight {
  background: var(--dark);
  border-radius: 16px;
  padding: 48px;
  margin-top: 28px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.library-spotlight::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 36px solid rgba(255,255,255,0.04);
}
.library-spotlight-text { position: relative; }
.library-spotlight h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: white;
  line-height: 1.3;
  margin-bottom: 14px;
}
.library-spotlight p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* Library diagram */
.library-diagram {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.diagram-hub {
  background: var(--red);
  color: white;
  border-radius: 12px;
  padding: 18px 28px;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  text-align: center;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.diagram-lines {
  width: 2px;
  height: 28px;
  background: rgba(255,255,255,0.15);
}
.diagram-outputs {
  display: flex;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.diagram-outputs::before {
  content: '';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.15);
  border-bottom: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.diagram-output {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  min-width: 110px;
}
.diagram-output-icon { font-size: 18px; margin-bottom: 6px; }

/* ───────────────── Feature grid ───────────────── */
.feature-section { padding: 88px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 26px 24px;
}
.feature-icon {
  font-size: 22px;
  margin-bottom: 14px;
}
.feature-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.feature-card p {
  font-size: 13.5px;
  color: var(--soft);
  line-height: 1.6;
}

/* ───────────────── How it works ───────────────── */
.steps-section {
  padding: 88px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
  position: relative;
}
.step-card {
  position: relative;
  padding-top: 8px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--red-pale);
  border: 1.5px solid var(--red-border);
  color: var(--red);
  border-radius: 50%;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}
.step-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.step-card p {
  font-size: 13.5px;
  color: var(--soft);
  line-height: 1.6;
}

/* ───────────────── Pricing teaser ───────────────── */
.pricing-teaser {
  padding: 88px 0;
  text-align: center;
}
.teaser-card {
  max-width: 640px;
  margin: 44px auto 0;
  background: var(--white);
  border: 1.5px solid var(--red-border);
  border-radius: 16px;
  padding: 44px 40px;
}
.teaser-price {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--dark);
  margin-bottom: 6px;
}
.teaser-price sup {
  font-size: 22px;
  vertical-align: super;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.teaser-term {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 22px;
}
.teaser-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 28px;
  font-size: 13.5px;
  color: var(--mid);
}
.teaser-points span::before {
  content: '✓ ';
  color: var(--red);
  font-weight: 700;
}

/* ───────────────── Trial section ───────────────── */
.trial-section { padding: 0 0 96px; }
.trial-box {
  background: var(--dark);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.trial-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.04);
}
.trial-box::after {
  content: '';
  position: absolute;
  bottom: -70px;
  left: 18%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 26px solid rgba(255,255,255,0.03);
}
.trial-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
  position: relative;
}
.trial-grid h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  font-weight: 400;
  color: white;
  line-height: 1.25;
  margin-bottom: 16px;
}
.trial-grid > div:first-child > p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 24px;
}
.trial-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}
.trial-checks div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.trial-checks div::before {
  content: '✓';
  color: var(--red-hover);
  font-weight: 700;
}
.trial-number {
  text-align: center;
  flex-shrink: 0;
}
.trial-number-box {
  background: var(--red);
  border-radius: 10px;
  padding: 26px 36px;
  margin-bottom: 14px;
}
.trial-number-box .num {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: white;
  line-height: 1;
  font-weight: 400;
}
.trial-number-box .label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 6px;
}
.trial-number-link {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-decoration: none;
}
.trial-number-link:hover { color: white; }

/* ───────────────── Footer ───────────────── */
.footer {
  background: var(--dark);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand .nav-name { font-size: 18px; }
.footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer-links a:hover { color: white; }
.footer-contact {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-weight: 500;
}
.footer-contact:hover { color: white; }

/* ───────────────── Pricing page specific ───────────────── */
.page-header {
  background: var(--dark);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.04);
}
.page-header-inner { position: relative; max-width: 680px; }
.page-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  font-weight: 400;
  color: white;
  line-height: 1.25;
  margin-bottom: 14px;
}
.page-header p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 56ch;
}

.pricing-page-section { padding: 72px 0; }

.value-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  max-width: 640px;
}
.value-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--mid);
}
.value-point::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-card {
  background: var(--white);
  border: 1.5px solid var(--red);
  border-radius: 14px;
  padding: 36px 40px;
  position: relative;
  margin-top: 44px;
  max-width: 560px;
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--red);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.card-name {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 12px;
}
.card-price {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.card-price sup {
  font-size: 24px;
  vertical-align: super;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.card-term {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 24px;
}
.card-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin-bottom: 22px;
}
.card-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.card-features li {
  font-size: 14px;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.card-features li::before {
  content: '✓';
  color: var(--muted);
  flex-shrink: 0;
  margin-top: 2px;
}
.card-features li strong { color: var(--dark); }

.addon-row {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  max-width: 560px;
}
.addon-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.addon-desc { font-size: 13px; color: var(--soft); }
.addon-price { text-align: right; flex-shrink: 0; }
.addon-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: var(--dark);
  line-height: 1;
}
.addon-unit { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

.enterprise-box {
  background: var(--dark);
  border-radius: 14px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  max-width: 560px;
  position: relative;
  overflow: hidden;
}
.enterprise-box::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 26px solid rgba(255,255,255,0.04);
}
.enterprise-box h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 23px;
  color: white;
  font-weight: 400;
  margin-bottom: 8px;
  position: relative;
}
.enterprise-box p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  position: relative;
}
.enterprise-contact {
  background: var(--red);
  color: white;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  position: relative;
  text-decoration: none;
  display: block;
}
.enterprise-contact div:first-child {
  font-size: 11px;
  opacity: 0.8;
  margin-bottom: 3px;
  letter-spacing: 0.5px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.included-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 22px;
}
.included-icon { font-size: 20px; margin-bottom: 10px; }
.included-title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.included-desc { font-size: 12.5px; color: var(--soft); line-height: 1.55; }

.notes {
  background: var(--red-pale);
  border: 1px solid var(--red-light);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 44px;
  max-width: 760px;
}
.notes p {
  font-size: 13.5px;
  color: #5a1010;
  line-height: 1.75;
  margin-bottom: 8px;
}
.notes p:last-child { margin-bottom: 0; }
.notes strong { color: var(--red-dark); }

/* ───────────────── Form modal ───────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17,17,17,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: 14px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--soft);
  padding: 4px;
}
.modal-close:hover { color: var(--dark); }
.modal-box h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}
.modal-sub {
  font-size: 13.5px;
  color: var(--soft);
  margin-bottom: 24px;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-field .optional {
  color: var(--muted);
  font-weight: 400;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--red);
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}
.form-status {
  font-size: 13.5px;
  margin-top: 14px;
  text-align: center;
}
.form-status.success { color: var(--red-dark); }
.form-status.error { color: var(--red-dark); }

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .split-grid { grid-template-columns: 1fr; }
  .library-spotlight { grid-template-columns: 1fr; padding: 36px 28px; }
  .library-diagram { margin-top: 20px; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .card-features { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 16px; }
  .trial-grid { grid-template-columns: 1fr; }
  .trial-number { text-align: left; }
  .enterprise-box { grid-template-columns: 1fr; text-align: left; }
  .enterprise-contact { width: fit-content; }
}

@media (max-width: 640px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 32px 24px;
    gap: 18px;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { width: 100%; text-align: center; }

  .hero { padding: 56px 0 64px; }
  .hero h1 { font-size: 34px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }

  .section-title { font-size: 28px !important; }
  .split-section, .feature-section, .steps-section, .pricing-teaser, .pricing-page-section { padding: 56px 0; }

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

  .trial-box, .library-spotlight { padding: 32px 24px; }
  .trial-grid h3 { font-size: 26px; }
  .teaser-card { padding: 32px 24px; }
  .teaser-price { font-size: 38px; }

  .price-card { padding: 28px 24px; }
  .card-price { font-size: 42px; }
  .addon-row, .enterprise-box { padding: 22px 24px; grid-template-columns: 1fr; gap: 16px; }
  .addon-price { text-align: left; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .page-header h1 { font-size: 30px; }
}
