:root {
  --color-bg: #dbebec;
  --color-text: #32404f;
  --color-primary: #77bbbd;
  --color-primary-contrast: #ffffff;
  --color-accent: #d86067;
  --color-muted: #9fa0a0;
  --color-hero-start: #dbebec;
  --color-hero-mid: #a5d4d7;
  --color-hero-end: #e0a7aa;
  --color-surface: #ffffff;
  --color-soft-teal: #a5d4d7;
  --color-blush: #e0a7aa;
  --radius: 16px;
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
  --maxw: 1120px;
  --grid-gap: 24px;
  --font-body: "Roboto Flex", "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Zain", "Roboto Flex", "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --card-border-accent: rgba(119, 187, 189, 0.45);
  --card-surface-default: #ffffff;
  --card-border-default: var(--card-border-accent);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  line-height: 1.1;
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  line-height: 1.3;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  line-height: 1.4;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

section p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

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

a:hover,
a:focus {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(100% - 2rem, var(--maxw));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  padding: 0.75rem 1rem;
  z-index: 10;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(31, 42, 55, 0.08);
  backdrop-filter: blur(10px);
  z-index: 5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.95rem;
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-heading);
}

.footer-inner .logo {
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-text);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  margin-left: auto;
  cursor: pointer;
}

.nav > ul {
  display: flex;
  list-style: none;
  gap: 1.6rem;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
}

.nav-link.is-active {
  color: var(--color-primary);
  font-weight: 700;
  position: relative;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 3px;
  border-radius: 999px;
  background: var(--color-primary);
}

.nav-button {
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
}

.nav-button.is-active {
  box-shadow: 0 0 0 2px rgba(216, 96, 103, 0.35), 0 18px 30px rgba(50, 64, 79, 0.22);
}

.nav-button.is-secondary.is-active {
  border-color: rgba(119, 187, 189, 0.6);
  color: var(--color-primary);
  background: rgba(119, 187, 189, 0.12);
}

.button {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.is-primary {
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  border-radius: 999px;
  border: none;
  padding: 0.8rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(119, 187, 189, 0.35);
}

.button.is-secondary {
  background: transparent;
  border: 1px solid rgba(50, 64, 79, 0.25);
  color: var(--color-text);
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
}

.button.is-ghost {
  background: transparent;
  color: var(--color-primary);
  border: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(32, 44, 56, 0.16);
}

.button:focus-visible,
.nav-link:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.hero-section {
  padding: 5rem 0 4rem;
  background: var(--color-hero-start);
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.45;
}

.hero-section::before {
  background: rgba(119, 187, 189, 0.4);
  top: -160px;
  right: -120px;
}

.hero-section::after {
  background: rgba(216, 96, 103, 0.3);
  bottom: -180px;
  left: -80px;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(340px, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  background: var(--color-accent);
  color: var(--color-primary-contrast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
}

.lead {
  font-size: 1.2rem;
  max-width: 52ch;
}

.hero-section h1 {
  font-size: clamp(3rem, 3.2vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-visual {
  border-radius: calc(var(--radius) * 1.25);
  padding: 1rem;
  overflow: visible;
  position: relative;
}

.hero-visual img {
  display: block;
  width: 260%;
  max-width: none;
  transform: translateX(2%);
  filter: drop-shadow(0 40px 60px rgba(50, 64, 79, 0.22));
}

.section-default {
  padding: 4rem 0;
}

.section-light {
  padding: 4rem 0;
  background: var(--color-soft-teal);
}

.section-cta {
  padding: 4rem 0;
  background: #32404f;
  color: #ffffff;
}

.card-grid {
  display: grid;
  gap: var(--grid-gap);
}

.card-grid.two-col {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid.three-col {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card-grid.four-col {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.benefits-grid,
.modules-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.icon-card,
.module-card,
.quote-card,
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--card-border, var(--card-border-default));
  padding: 1.5rem;
  background: var(--card-surface, var(--card-surface-default));
  box-shadow: var(--shadow);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.info-card:hover,
.icon-card:hover,
.module-card:hover,
.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.section-forwho {
  --card-surface: rgba(250, 254, 254, 0.72);
  --card-border: rgba(165, 212, 215, 0.35);
}

.section-benefits {
  background: var(--color-accent);
  color: #fff;
  --card-surface: rgba(255, 255, 255, 0.15);
  --card-border: rgba(255, 255, 255, 0.25);
}

.section-benefits h2,
.section-benefits .eyebrow {
  color: #fff;
}

.section-modules {
  background: var(--color-accent);
  color: #fff;
  --card-surface: rgba(255, 255, 255, 0.15);
  --card-border: rgba(255, 255, 255, 0.25);
}

.section-modules h2,
.section-modules .eyebrow {
  color: #fff;
}

.section-benefits .module-card-link,
.section-benefits .card-link-indicator,
.section-modules .module-card-link,
.section-modules .card-link-indicator {
  color: #fff;
}

.section-benefits .info-card:hover,
.section-benefits .icon-card:hover,
.section-benefits .module-card:hover,
.section-modules .module-card:hover {
  --card-surface: rgba(255, 255, 255, 0.25);
}

.proof-section {
  --card-surface: rgba(159, 160, 160, 0.12);
  --card-border: rgba(50, 64, 79, 0.35);
}


.icon-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(119, 187, 189, 0.18);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.tagline {
  color: var(--color-muted);
  font-weight: 500;
}

.inline-link a {
  font-weight: 600;
}

.proof {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.logos ul {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.section-cta .button.is-secondary {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.3);
}

.section-cta .button.is-secondary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.section-cta .cta-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  background: #32404f;
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-heading {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.form-feature {
  align-items: start;
}

.demo-form {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(50, 64, 79, 0.25);
  padding: 0.75rem;
  font-size: 1rem;
}

.form-group .select {
  width: 100%;
}

.form-group .select select {
  height: auto;
  padding: 0.75rem 2.5rem 0.75rem 0.75rem;
}

.form-group .select::after {
  border-color: var(--color-primary);
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.form-group.consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 400;
  cursor: pointer;
}

.form-group.consent input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  min-width: 1.15rem;
  min-height: 1.15rem;
  accent-color: var(--color-primary);
}

.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1rem;
}

.form-disclaimer {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.error {
  color: var(--color-accent);
  min-height: 1rem;
  font-size: 0.85rem;
}

.form-feedback {
  min-height: 1.25rem;
  margin-top: 0.5rem;
  font-weight: 600;
}

.thank-layout,
.legal-copy {
  text-align: left;
}

.nav-toggle {
  display: none;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #32404f;
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: min(100% - 2rem, 420px);
  z-index: 10;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav > ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    right: 1rem;
    top: 70px;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 200px;
  }

  .nav[data-open="true"] > ul {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    position: relative;
  }

  .hero-visual img {
    width: 250%;
    transform: translateX(5%);
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 4rem 0 3rem;
  }

  .hero-visual img {
    width: 250%;
    transform: translateX(-20%);
  }

  .benefits-grid,
  .modules-grid {
    grid-template-columns: 1fr;
  }
}

/* Dropdown navigation */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-dropdown-arrow {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 15px 35px rgba(50, 64, 79, 0.18);
  border: 1px solid rgba(31, 42, 55, 0.08);
  padding: 0.5rem;
  padding-top: 1rem;
  min-width: 240px;
  list-style: none;
  z-index: 10;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

/* Mega menu */
.nav-mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 15px 35px rgba(50, 64, 79, 0.18);
  border: 1px solid rgba(31, 42, 55, 0.08);
  padding: 1.25rem 1.5rem;
  z-index: 10;
  gap: 1.5rem;
}

.nav-mega:hover .nav-mega-menu,
.nav-mega:focus-within .nav-mega-menu {
  display: flex;
}

.nav-mega-section {
  min-width: 200px;
}

.nav-mega-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-mega-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  padding: 0 1rem;
  margin: 0 0 0.25rem;
}

.nav-dropdown-link {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
  background: rgba(119, 187, 189, 0.12);
  color: var(--color-primary);
}

.nav-dropdown-link.is-active {
  color: var(--color-primary);
  font-weight: 700;
}

.section-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-top: 2rem;
}

.screenshot-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top:0px;
}

/* Doelgroepen grid (2 columns) */
.doelgroepen-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .doelgroepen-grid {
    grid-template-columns: 1fr;
  }
}

/* Werkveld compact link list */
.werkveld-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.werkveld-link-list li {
  margin: 0;
}

.werkveld-link-list a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-white, #fff);
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

.werkveld-link-list a:hover,
.werkveld-link-list a:focus-visible {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

/* Module overview grid */
.modules-overview-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.modules-overview-grid .module-card h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.3;
}

.module-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.module-card-link:hover,
.module-card-link:focus-visible {
  color: inherit;
  text-decoration: none;
}

.module-card-link .module-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.module-card-link .module-card p {
  flex: 1;
}

.module-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.card-link-indicator {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
}

/* Module detail pages */
.module-hero {
  padding: 4rem 0 3rem;
  background: var(--color-hero-start);
}

.module-hero h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.module-hero .lead {
  max-width: 64ch;
}

.module-hero .hero-ctas {
  margin-top: 1.5rem;
}

/* Feature grid for detail pages */
.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--card-border-accent);
  padding: 1.5rem;
  background: var(--color-surface);
  box-shadow: var(--shadow);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* Subsections (Deelnemerontwikkeling: Teamtools, Backoffice, Jaarrapportage) */
.subsection .lead {
  max-width: 64ch;
  margin-bottom: 1.5rem;
}

/* Audience section */
.section-audience .lead {
  font-size: 1.3rem;
  max-width: 48ch;
}

.screenshot-container {
  border-radius: var(--radius);
  margin-top: 1.5rem;
  background: rgba(255,255,255,0.3);
  padding: 1rem;
}

/* Benefit list */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
  max-width: 64ch;
}

.benefit-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Modules overview page */
.modules-overview-grid .module-card h2 {
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .modules-overview-grid {
    grid-template-columns: 1fr;
  }

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

  .module-hero {
    padding: 3rem 0 2rem;
  }
}

@media (max-width: 768px) {
  .nav-dropdown .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 0.75rem;
    min-width: auto;
    display: block;
  }

  .nav-mega .nav-mega-menu {
    position: static;
    flex-direction: column;
    box-shadow: none;
    border: none;
    padding: 0 0 0 0.75rem;
    gap: 0.5rem;
    display: block;
  }

  .nav-mega-section {
    min-width: auto;
  }

  .nav-mega-heading {
    padding: 0.5rem 0.75rem 0;
  }

  .nav-dropdown-link {
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
  }
}

/* Pricing page */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  align-items: start;
}

.pricing-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--card-border-accent);
  padding: 2rem 1.5rem;
  background: var(--color-surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.pricing-card.is-highlighted {
  border-color: var(--color-primary);
  border-width: 2px;
  box-shadow: 0 20px 40px rgba(119, 187, 189, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card h2 {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  margin-bottom: 0.25rem;
}

.pricing-users {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: 500;
  margin: 0;
}

.pricing-price {
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(50, 64, 79, 0.1);
  border-bottom: 1px solid rgba(50, 64, 79, 0.1);
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.1;
}

.pricing-amount.is-custom {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
}

.pricing-period {
  display: block;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.pricing-description {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.75rem;
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.pricing-card .button {
  width: 100%;
  text-align: center;
  text-decoration: none;
}

/* Pricing table (modules) */
.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--card-border-accent);
}

.pricing-table thead {
  background: var(--color-primary);
  color: var(--color-primary-contrast);
}

.pricing-table th {
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.pricing-table th:not(:first-child) {
  text-align: center;
}

.pricing-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(50, 64, 79, 0.08);
  font-size: 0.95rem;
}

.pricing-table td:not(:first-child) {
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
}

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

.pricing-table tbody tr:hover {
  background: rgba(119, 187, 189, 0.06);
}

.pricing-table-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 400;
  margin-top: 0.15rem;
}

.pricing-table-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
}

/* Extras grid */
.extras-grid {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--card-border-accent);
}

.extras-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(50, 64, 79, 0.08);
}

.extras-item:last-child {
  border-bottom: none;
}

.extras-note {
  display: block;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.extras-price {
  font-weight: 700;
  white-space: nowrap;
  color: var(--color-text);
}

@media (max-width: 640px) {
  .pricing-table {
    font-size: 0.85rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.65rem 0.75rem;
  }

  .pricing-table-desc {
    display: none;
  }
}

/* FAQ */
.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid rgba(50, 64, 79, 0.12);
  padding: 1.25rem 0;
}

.faq-item dt {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.faq-item dd {
  margin: 0;
  color: var(--color-text);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* Blog */
.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card h2,
.blog-card h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.3;
  margin-top: 0.5rem;
}

.blog-card p {
  flex: 1;
  color: var(--color-text);
  font-size: 0.95rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-card-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card-audience {
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 600;
}

.blog-card-audience::before {
  content: "|";
  color: var(--color-muted);
  opacity: 0.4;
  margin-right: 0.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: 500;
}

.blog-meta-sep {
  opacity: 0.4;
}

.blog-featured-card,
.blog-article-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--card-border-accent);
  box-shadow: var(--shadow);
  padding: 2rem 2.5rem;
  margin-top: 1.5rem;
}

.blog-featured-excerpt {
  margin-bottom: 0;
}

.blog-read-more {
  margin-top: 1.5rem;
  text-decoration: none;
}

.blog-content {
  font-size: 1.05rem;
  line-height: 1.75;
}

.blog-content h2 {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(50, 64, 79, 0.08);
}

.blog-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.blog-content h3 {
  margin-top: 1.5rem;
}

.blog-content ul {
  padding-left: 1.5rem;
  margin: 0.75rem 0;
  list-style: disc;
}

.blog-content ol {
  padding-left: 1.5rem;
  margin: 0.75rem 0;
  list-style: decimal;
}

.blog-content li {
  margin-bottom: 0.35rem;
}

.blog-content strong {
  font-weight: 600;
}

.blog-content hr {
  border: none;
  border-top: 1px solid rgba(50, 64, 79, 0.12);
  margin: 2rem 0;
}

.blog-content em {
  color: var(--color-muted);
}

.blog-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured-card,
  .blog-article-card {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
