:root {
  --pill-blue: #1f2a44;
  --pill-orange: #f39041;
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0,0,0,.1);
  --dark: #0b0b0d;
  --dark-text: #f5f5f7;
  --accent: var(--pill-orange);
  --radius: 28px;
  --container: 1180px;
  --header-height: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { margin: 0; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-height); background: rgba(255,255,255,.78); backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid transparent; transition: border-color .2s ease, background .2s ease; }
.site-header.is-scrolled { border-color: var(--line); }
.header-inner {
  height: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex: 0 0 auto;
  line-height: 0;
}
.brand__logo {
  display: block;
  width: 50px;
  height: auto;
  max-width: none;
  flex: 0 0 auto;
}
.brand__logo--footer { height: 28px; }
.primary-nav {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 28px;
  font-size: .88rem;
}
.primary-nav a { transition: opacity .2s ease; }
.primary-nav a:hover { opacity: .55; }
.nav-cta { padding: 9px 16px; border-radius: 999px; color: white; background: var(--accent); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
  cursor: pointer;
  flex: 0 0 42px;
  align-self: center;
}
.menu-toggle span { position: absolute; left: 11px; width: 20px; height: 1.5px; background: currentColor; transition: transform .25s ease, top .25s ease; }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 24px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.section { min-height: 82vh; padding: 150px 0 120px; display: flex; align-items: center; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--dark); color: var(--dark-text); }
.section-placeholder { width: 100%; }
.eyebrow { margin: 0 0 18px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; color: var(--muted); }
.section--dark .eyebrow, .section--dark p { color: #a1a1a6; }
h1, h2 { margin: 0; letter-spacing: -.055em; line-height: .96; text-wrap: balance; }

/* Brand rule: headings = pillCRM blue, actions = pillCRM orange */
h1, h2, h3, h4, h5, h6 {
  color: var(--pill-blue);
}
h1 { font-size: clamp(3.6rem, 8vw, 7.5rem); max-width: 1000px; }
h2 { font-size: clamp(2.8rem, 6vw, 5.7rem); max-width: 920px; }
.section-placeholder > p:not(.eyebrow) { max-width: 680px; margin: 28px 0 0; font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.55; color: var(--muted); }
.placeholder-frame { width: min(100%, 760px); min-height: 300px; margin-top: 64px; border: 1px dashed currentColor; border-radius: var(--radius); display: grid; place-items: center; opacity: .35; }
.placeholder-frame--wide { width: min(100%, 1050px); min-height: 480px; }
.placeholder-grid, .pricing-placeholder { margin-top: 64px; display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.placeholder-card { min-height: 220px; padding: 28px; border-radius: var(--radius); background: var(--bg-soft); border: 1px solid var(--line); color: var(--muted); }
.placeholder-card--tall { min-height: 420px; }
.pricing-placeholder { grid-template-columns: repeat(2, 1fr); max-width: 900px; }

.site-footer {
  background: #f5f5f7;
  padding: 0 0 34px;
}
.footer-inner {
  width: min(1180px, calc(100% - 48px));
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 0 30px;
  border-top: 1px solid rgba(31,42,68,.11);
}
.footer-claim {
  margin: 0;
  color: var(--pill-blue);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.012em;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer-nav a,
.footer-toplink {
  color: #707580;
  font-size: .82rem;
  text-decoration: none;
  transition: color .18s ease;
}
.footer-nav a:hover,
.footer-toplink:hover {
  color: var(--pill-blue);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(31,42,68,.11);
}
.copyright {
  margin: 0;
  color: #8a8e97;
  font-size: .76rem;
}
.footer-toplink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-toplink span {
  color: var(--pill-orange);
  font-size: .9rem;
}


@media (max-width: 760px) {
  :root { --header-height: 68px; --radius: 22px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { min-height: var(--header-height); }
  .brand { height: 100%; }
  .brand__logo { width: 60px; height: auto; max-width: none; }
  .menu-toggle { display: block; z-index: 102; }
  .primary-nav { position: fixed; inset: var(--header-height) 0 auto; padding: 26px 24px 34px; background: rgba(255,255,255,.97); backdrop-filter: blur(20px); display: flex; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--line); transform: translateY(-120%); opacity: 0; visibility: hidden; transition: transform .28s ease, opacity .2s ease, visibility .28s; }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .primary-nav a { padding: 15px 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .primary-nav .nav-cta { margin-top: 18px; padding: 13px 18px; text-align: center; border: 0; }
  .section { min-height: auto; padding: 105px 0 90px; }
  .placeholder-frame--wide { min-height: 280px; }
  .placeholder-grid, .pricing-placeholder { grid-template-columns: 1fr; }
  .placeholder-card { min-height: 170px; }
  .placeholder-card--tall { min-height: 320px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { flex-wrap: wrap; gap: 14px 24px; }
}

/* Product */
.product-section { background: var(--bg-soft); padding: clamp(96px,10vw,152px) 0 clamp(104px,11vw,164px); }
.product-section__inner { width: min(1180px, calc(100% - 48px)); }
.product-section__intro { max-width: 880px; margin: 0 auto; text-align: center; }
.product-section__intro .eyebrow { margin-bottom: 22px; }
.product-section__intro h2 { margin: 0; color: var(--pill-blue); font-size: clamp(3.4rem,6.4vw,6.6rem); line-height: .94; letter-spacing: -.065em; font-weight: 700; }
.product-section__lead { margin: 34px auto 0; max-width: 720px; color: var(--muted); font-size: clamp(1.15rem,1.8vw,1.55rem); line-height: 1.45; letter-spacing: -.025em; }
.product-pillars { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(34px,5vw,72px); margin-top: clamp(76px,8vw,112px); }
.product-pillar { border-top: 1px solid rgba(0,0,0,.12); padding-top: 24px; }
.product-pillar h3 { margin: 0; color: var(--pill-blue); font-size: clamp(1.7rem,2.5vw,2.35rem); line-height: 1.05; letter-spacing: -.04em; font-weight: 650; }
.product-pillar p { margin: 18px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.js .product-reveal { opacity: 0; transform: translateY(18px); }
.js .product-reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity 760ms cubic-bezier(.22,1,.36,1) var(--product-delay,0ms), transform 760ms cubic-bezier(.22,1,.36,1) var(--product-delay,0ms); }

@media (max-width: 760px) {
  .product-section { padding: 82px 0 94px; }
  .product-section__inner { width: calc(100% - 32px); }
  .product-section__intro { text-align: left; }
  .product-section__intro .eyebrow { margin-bottom: 16px; }
  .product-section__intro h2 { font-size: clamp(3rem,14vw,4.25rem); line-height: .96; letter-spacing: -.06em; }
  .product-section__lead { margin-top: 24px; font-size: 1.08rem; line-height: 1.5; }
  .product-section__lead br { display: none; }
  .product-pillars { grid-template-columns: 1fr; gap: 42px; margin-top: 62px; }
  .product-pillar { padding-top: 20px; }
  .product-pillar h3 { font-size: 1.8rem; }
  .product-pillar p { margin-top: 12px; font-size: .98rem; line-height: 1.6; }
}

/* Hero — single source of truth for desktop + mobile */
.hero {
  min-height: 100svh;
  padding: calc(var(--header-height) + 92px) 0 0;
  overflow: hidden;
  text-align: center;
  background: var(--bg);
}
.hero__inner { display: flex; flex-direction: column; align-items: center; }
.hero__content { width: 100%; display: flex; flex-direction: column; align-items: center; }
.hero__title {
  color: var(--pill-blue);
  max-width: 1100px;
  margin: 0;
  font-size: clamp(4rem, 7.4vw, 7rem);
  font-weight: 720;
  line-height: .94;
  letter-spacing: -.062em;
  text-wrap: balance;
}
.hero__lead {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 450;
  line-height: 1.4;
  letter-spacing: -.025em;
}
.hero__actions { margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: .98rem;
  font-weight: 600;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary { color: #fff; background: var(--accent); box-shadow: 0 8px 24px rgba(0,0,0,.10); }
.button--primary:hover { opacity: .86; }
.button:focus-visible, .primary-nav a:focus-visible, .menu-toggle:focus-visible { outline: 3px solid rgba(243,144,65,.32); outline-offset: 4px; }
.hero__claim { margin: 22px 0 0; color: #86868b; font-size: .92rem; line-height: 1.4; }
.hero__product { width: 100%; max-width: 1280px; margin-top: 36px; padding: 0 8px; }
.hero__product-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__everywhere {
  position: relative;
  margin-top: 29px;
  padding-top: 18px;
  padding-bottom: 34px;
  text-align: center;
}
.hero__everywhere::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  margin: 0 auto 14px;
  background: rgba(0,0,0,.16);
}
.hero__everywhere-title {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -.02em;
}
.hero__everywhere-devices {
  margin: 7px 0 0;
  color: #737378;
  font-size: .78rem;
  line-height: 1.4;
  letter-spacing: .035em;
}
.hero__everywhere-devices span {
  display: inline-block;
  margin: 0 .38em;
  color: #b0b0b5;
}

/* Scroll reveal for supporting Hero content */
.js .hero-scroll-reveal {
  opacity: 0;
  transform: translateY(10px);
}
.js .hero-scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms cubic-bezier(.22,1,.36,1),
    transform 700ms cubic-bezier(.22,1,.36,1);
}

/* Reduced, progressive-enhancement entrance animation */
.js .hero-reveal { opacity: 0; transform: translateY(12px); }
.js .hero-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0ms), transform 700ms cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0ms);
}

@media (max-width: 760px) {
  .hero { min-height: 100svh; padding: calc(var(--header-height) + 28px) 0 0; text-align: left; }
  .hero__inner, .hero__content { align-items: stretch; }
  .hero__title { max-width: 560px; font-size: clamp(3.35rem, 15vw, 5.2rem); line-height: .94; letter-spacing: -.06em; }
  .hero__lead { margin-top: 28px; font-size: clamp(1.16rem, 5.2vw, 1.4rem); line-height: 1.42; }
  .hero__lead br { display: none; }
  .hero__actions { margin-top: 30px; }
  .button { min-height: 50px; padding-inline: 21px; }
  .hero__claim { margin-top: 20px; font-size: .88rem; }
  .hero__product { width: calc(100% + 16px); margin-top: 22px; padding: 0; }
  .hero__product-image { width: 100%; height: auto; }
  .hero__everywhere { margin-top: 21px; padding-top: 16px; padding-bottom: 24px; }
  .hero__everywhere-title { font-size: 1.08rem; }
  .hero__everywhere-devices { margin-top: 7px; font-size: .78rem; }
}


/* Features */
.features-section {
  background: var(--bg);
  padding: clamp(104px, 11vw, 164px) 0 clamp(112px, 12vw, 176px);
}
.features-section__inner {
  width: min(1180px, calc(100% - 48px));
}
.features-section__intro {
  max-width: 820px;
}
.features-section__intro .eyebrow {
  margin-bottom: 22px;
}
.features-section__intro h2 {
  margin: 0;
  color: var(--pill-blue);
  font-size: clamp(3.1rem, 5.6vw, 5.8rem);
  line-height: .96;
  letter-spacing: -.06em;
  font-weight: 700;
}
.features-section__lead {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.65vw, 1.42rem);
  line-height: 1.5;
  letter-spacing: -.02em;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(70px, 8vw, 108px);
}
.feature-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(31,42,68,.09);
  border-radius: 24px;
  background: #f7f7f9;
  display: flex;
  flex-direction: column;
}
.feature-card {
  grid-column: span 2;
}
.feature-card--wide {
  grid-column: span 4;
}
.feature-card--highlight {
  grid-column: span 3;
  background: #f2f3f6;
}
.feature-card--full {
  grid-column: 1 / -1;
  min-height: 250px;
}
.feature-card__number {
  color: rgba(31,42,68,.42);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.feature-card__content {
  margin-top: clamp(72px, 7vw, 104px);
}
.feature-card--wide .feature-card__content {
  margin-top: clamp(76px, 7vw, 108px);
}
.feature-card--highlight .feature-card__content {
  margin-top: clamp(58px, 5.5vw, 82px);
}
.feature-card--full .feature-card__content {
  margin-top: clamp(48px, 4vw, 66px);
}
.feature-card h3 {
  margin: 0;
  color: var(--pill-blue);
  font-size: clamp(1.65rem, 2.15vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 650;
}
.feature-card p {
  margin: 16px 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.6;
}
.feature-card--accent {
  background: var(--pill-blue);
  border-color: transparent;
}
.feature-card--accent .feature-card__number {
  color: rgba(255,255,255,.5);
}
.feature-card--accent h3 {
  color: #fff;
}
.feature-card--accent p {
  color: rgba(255,255,255,.7);
}

/* Features scroll reveal */
.js .feature-reveal {
  opacity: 0;
  transform: translateY(18px);
}
.js .feature-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 760ms cubic-bezier(.22,1,.36,1) var(--feature-delay, 0ms),
    transform 760ms cubic-bezier(.22,1,.36,1) var(--feature-delay, 0ms);
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-card,
  .feature-card--wide,
  .feature-card--highlight {
    grid-column: span 1;
  }
  .feature-card--full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .features-section {
    padding: 84px 0 96px;
  }
  .features-section__inner {
    width: calc(100% - 32px);
  }
  .features-section__intro h2 {
    font-size: clamp(2.9rem, 13vw, 4.15rem);
    line-height: .97;
  }
  .features-section__lead {
    margin-top: 24px;
    font-size: 1.06rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 58px;
  }
  .feature-card,
  .feature-card--wide,
  .feature-card--highlight,
  .feature-card--full {
    grid-column: auto;
    min-height: 245px;
    padding: 24px;
    border-radius: 20px;
  }
  .feature-card__content,
  .feature-card--wide .feature-card__content,
  .feature-card--highlight .feature-card__content,
  .feature-card--full .feature-card__content {
    margin-top: 48px;
  }
  .feature-card h3 {
    font-size: 1.75rem;
  }
  .feature-card p {
    margin-top: 12px;
    font-size: .96rem;
  }
}


/* AI / KI */
.ai-section {
  position: relative;
  overflow: hidden;
  background: #0c0d10;
  padding: clamp(108px, 11vw, 168px) 0 clamp(112px, 12vw, 176px);
}
.ai-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -300px;
  right: -180px;
  border-radius: 50%;
  background: rgba(243,144,65,.055);
  filter: blur(2px);
  pointer-events: none;
}
.ai-section__inner {
  position: relative;
  width: min(1180px, calc(100% - 48px));
}
.ai-section__intro {
  max-width: 850px;
}
.ai-section__intro .eyebrow {
  margin-bottom: 22px;
}
.ai-section__intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 5.8vw, 6rem);
  line-height: .94;
  letter-spacing: -.062em;
  font-weight: 700;
}
.ai-section__lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(1.12rem, 1.65vw, 1.42rem);
  line-height: 1.5;
  letter-spacing: -.02em;
}
.ai-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(72px, 8vw, 110px);
}
.ai-card {
  grid-column: span 2;
  min-height: 310px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  display: flex;
  flex-direction: column;
}
.ai-card--wide {
  grid-column: span 4;
}
.ai-card--full {
  grid-column: 1 / -1;
  min-height: 250px;
}
.ai-card--accent {
  border-color: rgba(243,144,65,.28);
  background: linear-gradient(135deg, rgba(243,144,65,.115), rgba(255,255,255,.045) 58%);
}
.ai-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ai-card__number {
  color: rgba(255,255,255,.38);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.ai-card__status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(243,144,65,.34);
  border-radius: 999px;
  color: #f6a35f;
  background: rgba(243,144,65,.09);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .035em;
}
.ai-card__status--planned {
  color: rgba(255,255,255,.55);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
}
.ai-card__content {
  margin-top: clamp(72px, 7vw, 104px);
}
.ai-card--wide .ai-card__content {
  margin-top: clamp(76px, 7vw, 108px);
}
.ai-card--full .ai-card__content {
  margin-top: clamp(48px, 4vw, 68px);
}
.ai-card h3 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 650;
}
.ai-card p {
  max-width: 690px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.66);
  font-size: .98rem;
  line-height: 1.6;
}
.ai-section__outro {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.ai-section__spark {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--pill-orange);
  box-shadow: 0 0 20px rgba(243,144,65,.4);
}
.ai-section__outro p {
  margin: 0;
  color: rgba(255,255,255,.58);
  line-height: 1.55;
}
.ai-section__outro strong {
  color: #fff;
  font-weight: 650;
}

.js .ai-reveal {
  opacity: 0;
  transform: translateY(18px);
}
.js .ai-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 760ms cubic-bezier(.22,1,.36,1) var(--ai-delay, 0ms),
    transform 760ms cubic-bezier(.22,1,.36,1) var(--ai-delay, 0ms);
}

@media (max-width: 900px) {
  .ai-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ai-card,
  .ai-card--wide {
    grid-column: span 1;
  }
  .ai-card--full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .ai-section {
    padding: 84px 0 96px;
  }
  .ai-section::before {
    width: 300px;
    height: 300px;
    top: -180px;
    right: -150px;
  }
  .ai-section__inner {
    width: calc(100% - 32px);
  }
  .ai-section__intro h2 {
    font-size: clamp(2.9rem, 13vw, 4.15rem);
    line-height: .96;
  }
  .ai-section__lead {
    margin-top: 24px;
    font-size: 1.06rem;
  }
  .ai-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 58px;
  }
  .ai-card,
  .ai-card--wide,
  .ai-card--full {
    grid-column: auto;
    min-height: 255px;
    padding: 24px;
    border-radius: 20px;
  }
  .ai-card__content,
  .ai-card--wide .ai-card__content,
  .ai-card--full .ai-card__content {
    margin-top: 48px;
  }
  .ai-card h3 {
    font-size: 1.75rem;
  }
  .ai-card p {
    margin-top: 12px;
    font-size: .96rem;
  }
  .ai-section__outro {
    margin-top: 40px;
  }
}


/* Pricing */
.pricing-section {
  background: #fff;
  padding: clamp(108px, 11vw, 168px) 0 clamp(112px, 12vw, 176px);
}
.pricing-section__inner { width: min(1180px, calc(100% - 48px)); }
.pricing-section__intro { max-width: 850px; }
.pricing-section__intro .eyebrow { margin-bottom: 22px; }
.pricing-section__intro h2 {
  margin: 0;
  color: var(--pill-blue);
  font-size: clamp(3.05rem, 5.4vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.06em;
  font-weight: 700;
}
.pricing-section__lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.55;
  letter-spacing: -.018em;
}
.billing-switch {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(58px, 6vw, 84px);
}
.billing-switch__control {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(31,42,68,.1);
  border-radius: 999px;
  background: #f1f2f4;
}
.billing-switch__button {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #626773;
  font: inherit;
  font-size: .9rem;
  font-weight: 650;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.billing-switch__button.is-active {
  background: #fff;
  color: var(--pill-blue);
  box-shadow: 0 1px 4px rgba(31,42,68,.1);
}
.billing-switch__button:focus-visible {
  outline: 3px solid rgba(243,144,65,.28);
  outline-offset: 2px;
}
.billing-switch__note {
  margin: 12px 0 0;
  color: #858994;
  font-size: .82rem;
}
.pricing-launch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 30px auto 0;
  color: #737985;
  text-align: center;
  font-size: .88rem;
  line-height: 1.5;
}
.pricing-launch__dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pill-orange);
}
.pricing-launch p {
  margin: 0;
}
.pricing-launch strong {
  color: var(--pill-blue);
  font-weight: 650;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 42px;
}
.pricing-card {
  position: relative;
  min-width: 0;
  min-height: 620px;
  padding: 32px 30px 28px;
  border: 1px solid rgba(31,42,68,.12);
  border-radius: 24px;
  background: #f7f7f8;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  border-color: rgba(243,144,65,.48);
  background: #fff;
  box-shadow: 0 16px 46px rgba(31,42,68,.08);
}
.pricing-card__recommendation {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #777c87;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .025em;
}
.pricing-card__recommendation span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pill-orange);
}
.pricing-card__header { min-height: 72px; padding-right: 72px; }
.pricing-card__name {
  margin: 0;
  color: var(--pill-blue);
  font-size: 1.38rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.035em;
}
.pricing-card__for {
  margin: 9px 0 0;
  color: #858994;
  font-size: .84rem;
  line-height: 1.4;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  min-height: 76px;
  margin-top: 30px;
  color: #151820;
  white-space: nowrap;
}
.pricing-card__amount {
  font-size: clamp(3.15rem, 4vw, 4.25rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.06em;
  transition: opacity .14s ease, transform .14s ease;
}
.pricing-card__amount.is-changing { opacity: .25; transform: translateY(3px); }
.pricing-card__currency {
  margin-left: 3px;
  font-size: 1.35rem;
  font-weight: 700;
}
.pricing-card__period {
  margin-left: 7px;
  color: #777c87;
  font-size: .85rem;
  font-weight: 550;
}
.pricing-card__price--custom {
  align-items: center;
  white-space: normal;
  color: var(--pill-blue);
  font-size: clamp(1.7rem, 2.2vw, 2.15rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.04em;
}
.pricing-card__billing {
  min-height: 42px;
  margin: 8px 0 0;
  color: #777c87;
  font-size: .82rem;
  line-height: 1.45;
}
.pricing-card__rule {
  height: 1px;
  margin: 24px 0;
  background: rgba(31,42,68,.11);
}
.pricing-card__features {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4f5561;
  font-size: .9rem;
  line-height: 1.45;
}
.pricing-card__features li {
  position: relative;
  padding-left: 25px;
}
.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pill-blue);
  font-weight: 800;
}
.pricing-card--featured .pricing-card__features li::before { color: var(--pill-orange); }
.pricing-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.pricing-card__cta--primary {
  color: #fff;
  background: var(--pill-orange);
}
.pricing-card__cta--secondary {
  color: var(--pill-blue);
  border: 1px solid rgba(31,42,68,.16);
  background: #fff;
}
@media (hover:hover) and (pointer:fine) {
  .pricing-card__cta:hover { transform: translateY(-1px); }
  .pricing-card__cta--primary:hover { background: #e67f31; }
  .pricing-card__cta--secondary:hover { border-color: rgba(31,42,68,.3); }
}
.pricing-section__footnote {
  max-width: 800px;
  margin: 38px auto 0;
  color: #7b808b;
  text-align: center;
  font-size: .86rem;
  line-height: 1.55;
}
.pricing-section__footnote strong { color: var(--pill-blue); font-weight: 650; }

.js .pricing-reveal { opacity: 0; transform: translateY(18px); }
.js .pricing-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 760ms cubic-bezier(.22,1,.36,1) var(--pricing-delay, 0ms),
    transform 760ms cubic-bezier(.22,1,.36,1) var(--pricing-delay, 0ms);
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card--enterprise { grid-column: 1 / -1; min-height: 500px; }
}
@media (max-width: 760px) {
  .pricing-section { padding: 84px 0 96px; }
  .pricing-section__inner { width: calc(100% - 32px); }
  .pricing-section__intro h2 { font-size: clamp(2.8rem, 12.5vw, 4rem); line-height: .97; }
  .pricing-section__lead { margin-top: 22px; font-size: 1.04rem; }
  .billing-switch { align-items: stretch; margin-top: 48px; }
  .billing-switch__control { width: 100%; }
  .billing-switch__button { min-width: 0; padding: 0 10px; font-size: .79rem; }
  .billing-switch__note { text-align: center; }
  .pricing-launch {
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 26px;
    text-align: left;
    font-size: .84rem;
  }
  .pricing-launch__dot { margin-top: 6px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
  .pricing-card, .pricing-card--enterprise {
    grid-column: auto;
    min-height: 570px;
    padding: 26px 24px 24px;
    border-radius: 20px;
  }
  .pricing-card__recommendation { top: 22px; right: 22px; }
  .pricing-card__header { padding-right: 68px; }
  .pricing-card__price { margin-top: 24px; }
  .pricing-card__amount { font-size: 3.45rem; }
  .pricing-section__footnote { margin-top: 32px; text-align: left; }
}


/* Demo */
.demo-section {
  background: #f5f5f7;
  padding: clamp(108px, 11vw, 168px) 0 clamp(112px, 12vw, 176px);
}
.demo-section__inner {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, .78fr);
  gap: clamp(70px, 9vw, 130px);
  align-items: start;
}
.demo-section__copy { padding-top: 18px; }
.demo-section__copy .eyebrow { margin-bottom: 22px; }
.demo-section__copy h2 {
  margin: 0;
  color: var(--pill-blue);
  font-size: clamp(3.1rem, 5.2vw, 5.35rem);
  line-height: .96;
  letter-spacing: -.06em;
  font-weight: 700;
}
.demo-section__lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: #6f7480;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  letter-spacing: -.018em;
}
.demo-section__points {
  display: grid;
  gap: 0;
  margin-top: 62px;
  border-top: 1px solid rgba(31,42,68,.11);
}
.demo-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(31,42,68,.11);
}
.demo-point__number {
  padding-top: 3px;
  color: var(--pill-orange);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .12em;
}
.demo-point strong {
  color: var(--pill-blue);
  font-size: 1rem;
  font-weight: 700;
}
.demo-point p {
  max-width: 500px;
  margin: 7px 0 0;
  color: #737985;
  font-size: .9rem;
  line-height: 1.55;
}
.demo-card {
  padding: clamp(30px, 3.5vw, 46px);
  border: 1px solid rgba(31,42,68,.1);
  border-radius: 28px;
  background: #fff;
}
.demo-card__eyebrow {
  margin: 0 0 13px;
  color: var(--pill-orange);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.demo-card__header h3 {
  margin: 0;
  color: var(--pill-blue);
  font-size: clamp(2rem, 2.8vw, 2.65rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 700;
}
.demo-card__header > p:last-child {
  margin: 16px 0 0;
  color: #777c87;
  font-size: .94rem;
  line-height: 1.55;
}
.demo-form { display: grid; gap: 19px; margin-top: 34px; }

.demo-form__salutation {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.demo-form__salutation legend {
  margin: 0 0 8px;
  padding: 0;
  color: var(--pill-blue);
  font-size: .78rem;
  font-weight: 650;
}
.demo-form__salutation-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(31,42,68,.14);
  border-radius: 14px;
  background: #f1f2f4;
}
.demo-form__salutation-control label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}
.demo-form__salutation-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.demo-form__salutation-control span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  color: #747985;
  font-size: .82rem;
  font-weight: 650;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.demo-form__salutation-control input:checked + span {
  background: #fff;
  color: var(--pill-blue);
  box-shadow: 0 1px 4px rgba(31,42,68,.1);
}
.demo-form__salutation-control input:focus-visible + span {
  outline: 3px solid rgba(243,144,65,.28);
  outline-offset: 1px;
}
.demo-form__field input::placeholder {
  color: #a0a4ad;
}

.demo-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.demo-form__field { display: grid; gap: 8px; min-width: 0; }
.demo-form__field label {
  color: var(--pill-blue);
  font-size: .78rem;
  font-weight: 650;
}
.demo-form__field input,
.demo-form__field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(31,42,68,.14);
  border-radius: 13px;
  background: #f8f8f9;
  color: #181b22;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.demo-form__field input { min-height: 50px; padding: 0 14px; }
.demo-form__field textarea { min-height: 112px; padding: 13px 14px; resize: vertical; line-height: 1.5; }
.demo-form__field textarea::placeholder { color: #a0a4ad; }
.demo-form__field input:focus,
.demo-form__field textarea:focus {
  border-color: rgba(243,144,65,.65);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(243,144,65,.1);
}
.demo-form__consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  color: #777c87;
  font-size: .75rem;
  line-height: 1.5;
  cursor: pointer;
}
.demo-form__consent input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--pill-orange); }
.demo-form__consent a { color: var(--pill-blue); text-underline-offset: 2px; }
.demo-form__submit {
  min-height: 52px;
  margin-top: 2px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--pill-orange);
  color: #fff;
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease;
}
.demo-form__submit:focus-visible { outline: 3px solid rgba(243,144,65,.28); outline-offset: 3px; }
.demo-form__hint { margin: -6px 0 0; color: #999da6; text-align: center; font-size: .7rem; }
@media (hover:hover) and (pointer:fine) {
  .demo-form__submit:hover { background: #e67f31; transform: translateY(-1px); }
}
.js .demo-reveal { opacity: 0; transform: translateY(18px); }
.js .demo-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 760ms cubic-bezier(.22,1,.36,1) var(--demo-delay, 0ms),
    transform 760ms cubic-bezier(.22,1,.36,1) var(--demo-delay, 0ms);
}
@media (max-width: 900px) {
  .demo-section__inner { grid-template-columns: 1fr; gap: 64px; }
  .demo-section__copy { max-width: 720px; }
  .demo-card { max-width: 720px; }
}
@media (max-width: 760px) {
  .demo-section { padding: 84px 0 96px; }
  .demo-section__inner { width: calc(100% - 32px); gap: 48px; }
  .demo-section__copy { padding-top: 0; }
  .demo-section__copy h2 { font-size: clamp(2.8rem, 12.5vw, 4rem); line-height: .97; }
  .demo-section__lead { margin-top: 22px; font-size: 1.04rem; }
  .demo-section__points { margin-top: 44px; }
  .demo-point { grid-template-columns: 34px 1fr; gap: 12px; padding: 21px 0; }
  .demo-card { padding: 26px 22px; border-radius: 22px; }
  .demo-form { margin-top: 30px; }
  .demo-form__row { grid-template-columns: 1fr; gap: 19px; }
}


@media (max-width: 760px) {
  .site-footer { padding-bottom: 26px; }
  .footer-inner { width: calc(100% - 32px); }
  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 28px 0 26px;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 12px 22px;
  }
  .footer-bottom {
    padding-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .js .hero-reveal,
  .js .hero-reveal.is-visible,
  .js .hero-scroll-reveal,
  .js .hero-scroll-reveal.is-visible,
  .js .product-reveal,
  .js .product-reveal.is-visible,
  .js .feature-reveal,
  .js .feature-reveal.is-visible,
  .js .ai-reveal,
  .js .ai-reveal.is-visible,
  .js .pricing-reveal,
  .js .pricing-reveal.is-visible,
  .js .demo-reveal,
  .js .demo-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


.btn--primary:hover,
.btn--primary:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible,
.btn--dark:hover,
.btn--dark:focus-visible {
  background: #e67f31;
  color: #fff;
}


/* Dark sections — inverse pillCRM typography */
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
  color: #fff;
}

.section--dark .eyebrow {
  color: rgba(255,255,255,.62);
}

.section--dark p {
  color: rgba(255,255,255,.68);
}


/* Subpages: Kontakt & Rechtliches */
.subpage {
  background: #fff;
}
.subpage-hero {
  padding: clamp(150px, 16vw, 205px) 0 clamp(72px, 8vw, 112px);
  background: #fff;
}
.subpage-hero--legal {
  padding-bottom: clamp(58px, 6vw, 86px);
}
.subpage-hero__inner {
  max-width: 900px;
}
.subpage-hero h1 {
  margin: 10px 0 20px;
  max-width: 850px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: .96;
  letter-spacing: -.065em;
}
.subpage-hero__lead {
  max-width: 700px;
  margin: 0;
  color: #737985;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.58;
}
.contact-page {
  padding: 0 0 clamp(100px, 11vw, 150px);
  background: #f5f5f7;
}
.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
  padding-top: clamp(72px, 8vw, 108px);
}
.contact-page__intro {
  max-width: 470px;
}
.contact-page__intro h2 {
  margin: 10px 0 22px;
  font-size: clamp(2.35rem, 4vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.contact-page__intro > p:not(.eyebrow) {
  margin: 0 0 28px;
  color: #747a85;
  line-height: 1.7;
}
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--pill-blue);
  font-weight: 650;
  text-decoration: none;
}
.text-link span { color: var(--pill-orange); }
.contact-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(31,42,68,.1);
  border-radius: 28px;
  background: #fff;
}
.contact-form {
  display: grid;
  gap: 20px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.legal-page {
  padding: clamp(68px, 8vw, 108px) 0 clamp(110px, 12vw, 170px);
  background: #f5f5f7;
}
.legal-page__layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 760px);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}
.legal-page__aside {
  position: sticky;
  top: 120px;
  color: #8b9099;
  font-size: .78rem;
  line-height: 1.5;
}
.legal-page__aside p { margin: 0; }
.legal-page__aside strong {
  color: var(--pill-blue);
  font-weight: 600;
}
.legal-content {
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(31,42,68,.09);
  border-radius: 28px;
  background: #fff;
}
.legal-content section + section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid rgba(31,42,68,.09);
}
.legal-content h2 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  letter-spacing: -.025em;
}
.legal-content p {
  margin: 0;
  color: #656b76;
  line-height: 1.75;
}
.legal-draft-note {
  margin-bottom: 44px;
  padding: 18px 20px;
  border: 1px solid rgba(243,144,65,.35);
  border-radius: 14px;
  background: rgba(243,144,65,.07);
}
.legal-draft-note strong {
  color: var(--pill-blue);
  font-size: .9rem;
}
.legal-draft-note p {
  margin-top: 5px;
  font-size: .85rem;
  line-height: 1.55;
}
.legal-placeholder {
  color: #b36b32;
  font-weight: 600;
}
.legal-muted {
  font-size: .9rem;
}

@media (max-width: 820px) {
  .subpage-hero {
    padding-top: 128px;
  }
  .contact-page__grid,
  .legal-page__layout {
    grid-template-columns: 1fr;
  }
  .contact-page__grid {
    gap: 46px;
  }
  .legal-page__aside {
    position: static;
  }
}
@media (max-width: 560px) {
  .subpage-hero {
    padding: 112px 0 58px;
  }
  .subpage-hero h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }
  .contact-page {
    padding-bottom: 80px;
  }
  .contact-page__grid {
    padding-top: 56px;
  }
  .contact-card,
  .legal-content {
    padding: 24px 20px;
    border-radius: 22px;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

.legal-content a {
  color: var(--pill-blue);
  text-decoration-color: rgba(31,42,68,.28);
  text-underline-offset: 3px;
}
.legal-content a:hover {
  text-decoration-color: var(--pill-orange);
}

.privacy-content section:first-child {
  margin-top: 0;
}
.privacy-content section > p + p {
  margin-top: 14px;
}
.legal-list {
  margin: 14px 0 18px;
  padding-left: 1.25rem;
  color: #656b76;
  line-height: 1.75;
}
.legal-list li + li {
  margin-top: 5px;
}


/* Form privacy note */
.form-privacy-note {
  padding: 16px 18px;
  border: 1px solid rgba(31,42,68,.10);
  border-radius: 14px;
  background: #f7f7f8;
}
.form-privacy-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pill-blue);
  font-size: .78rem;
  font-weight: 650;
}
.form-privacy-note p {
  margin: 0;
  color: #737985;
  font-size: .78rem;
  line-height: 1.55;
}
.form-privacy-note a {
  color: var(--pill-blue);
  font-weight: 600;
  text-underline-offset: 3px;
}

/* Privacy overlay */
.privacy-modal[hidden] { display: none; }
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.privacy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12,13,16,.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.privacy-modal__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(980px, 100%);
  max-height: min(90svh, 920px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0,0,0,.22);
  outline: none;
}
.privacy-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 38px 28px;
  border-bottom: 1px solid rgba(31,42,68,.09);
}
.privacy-modal__header .eyebrow { margin-bottom: 8px; }
.privacy-modal__header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.privacy-modal__close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f1f2f4;
  color: var(--pill-blue);
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.privacy-modal__close:hover { background: #e8e9ec; }
.privacy-modal__body {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 10px 38px 40px;
  scrollbar-gutter: stable;
}
.privacy-modal__body section { padding-top: 30px; }
.privacy-modal__body section + section {
  margin-top: 30px;
  border-top: 1px solid rgba(31,42,68,.09);
}
.privacy-modal__body h2 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  letter-spacing: -.02em;
}
.privacy-modal__body p,
.privacy-modal__body li {
  color: #656b76;
  font-size: .9rem;
  line-height: 1.7;
}
.privacy-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 38px;
  border-top: 1px solid rgba(31,42,68,.09);
}
.privacy-modal__footer a {
  color: #737985;
  font-size: .8rem;
  text-decoration: none;
}
.privacy-modal__footer a:hover { color: var(--pill-blue); }
.privacy-modal__footer button {
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--pill-blue);
  color: #fff;
  font: inherit;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
}
body.privacy-modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .privacy-modal { padding: 0; }
  .privacy-modal__dialog {
    width: 100%;
    height: 100svh;
    max-height: none;
    border: 0;
    border-radius: 0;
  }
  .privacy-modal__header { padding: 24px 20px 20px; }
  .privacy-modal__header h2 { font-size: 2.25rem; }
  .privacy-modal__body { padding: 4px 20px 30px; }
  .privacy-modal__footer { padding: 16px 20px; }
}


/* Secure forms */
.form-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.form-status {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: .86rem;
  line-height: 1.5;
}
.form-status--success {
  border: 1px solid rgba(30,122,72,.16);
  background: rgba(30,122,72,.07);
  color: #256b43;
}
.form-status--error {
  border: 1px solid rgba(176,52,52,.16);
  background: rgba(176,52,52,.06);
  color: #8e3434;
}
