:root {
  --ink: #101010;
  --muted: #5c5f68;
  --line: #e8e3dc;
  --panel: #f7f4ef;
  --dark: #050505;
  --navy: #061a2d;
  --accent: #ff8300;
  --accent-dark: #db6200;
  --blue: #0c2b4c;
  --blue-dark: #061a2d;
  --green: #0aa36d;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #050505;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: #050505;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

#app {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  min-height: 0;
  background: #050505;
}

#app > .section:only-child {
  flex: 1 0 auto;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 94px;
  padding: 13px clamp(22px, 4vw, 58px);
  background: #050505;
  color: var(--white);
  border-bottom: 1px solid #050505;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  font-size: clamp(1.42rem, 1.8vw, 2.05rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.brand-mark .brand-software {
  color: var(--accent);
}

.brand img {
  width: 68px;
  height: 68px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  object-fit: cover;
  background: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 30px);
  font-size: 0.98rem;
  font-weight: 700;
  min-width: 0;
}

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

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

.nav-cta {
  min-width: 116px;
  padding: 13px 24px;
  border-radius: 7px;
  background: var(--accent);
  color: var(--ink) !important;
  text-align: center;
  text-transform: uppercase;
  flex-shrink: 0;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.language-switcher a {
  min-width: 34px;
  padding: 5px 8px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
}

.language-switcher a.active,
.language-switcher a:hover {
  background: var(--accent);
  color: var(--ink);
}

@media (max-width: 1280px) {
  .site-header {
    gap: 16px;
    padding-inline: clamp(18px, 2vw, 34px);
  }

  .brand {
    gap: 12px;
    font-size: clamp(1.22rem, 1.7vw, 1.7rem);
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.9rem;
  }

  .nav-cta {
    min-width: 98px;
    padding: 11px 18px;
  }

  .language-switcher a {
    min-width: 29px;
    padding-inline: 6px;
  }
}

.section {
  padding: clamp(38px, 5vw, 68px) clamp(18px, 4vw, 54px);
  background: #fffaf3;
}

.section.alt {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 131, 0, 0.2), transparent 34%),
    linear-gradient(135deg, #050505 0%, #0a1219 58%, #150d05 100%);
  color: var(--white);
}

.campaign-hero,
.proof-section {
  margin-top: -1px;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 131, 0, 0.24), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(255, 131, 0, 0.08), transparent 30%),
    linear-gradient(135deg, #050505 0%, #091018 54%, #160e07 100%);
  color: var(--white);
}

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

.section.dark .lead,
.section.dark .feature p,
.section.dark .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.inner {
  max-width: var(--max);
  margin: 0 auto;
}

.campaign-hero .inner {
  max-width: 1400px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1.28fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  min-height: auto;
}

.hero.compact {
  min-height: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(1.75rem, 2.75vw, 2.72rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(1.42rem, 2.05vw, 2.08rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.12vw, 1.06rem);
}

.campaign-hero .lead,
.section.alt .lead,
.proof-section .lead {
  color: rgba(255, 255, 255, 0.76);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.section:not(.campaign-hero):not(.alt):not(.proof-section) .button {
  background: var(--white);
  color: var(--ink);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.hero-media img,
.media img {
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.campaign-hero .campaign-visual img {
  min-height: 360px;
}

.hero-media.hero-media-product img {
  min-height: 330px;
  box-shadow: 0 28px 72px rgba(9, 12, 20, 0.2);
}

.campaign-visual img {
  border-color: rgba(255, 255, 255, 0.16);
  background: #101010;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.mobile-hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 1.14fr);
  gap: clamp(36px, 5vw, 74px);
}

.mobile-hero .campaign-visual {
  justify-self: end;
  width: min(520px, 100%);
  transform: translateX(28px);
}

.mobile-hero .campaign-visual img {
  max-height: 680px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center right;
}

.mobile-hero h1 {
  max-width: 640px;
}

.brand-banner {
  width: min(520px, 100%);
  margin: 0 0 18px;
}

.brand-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.media-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 34px;
}

.media-strip img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.image-stack {
  display: grid;
  gap: 18px;
}

.image-stack img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 131, 0, 0.24);
  border-radius: 8px;
  background: rgba(255, 131, 0, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.proof-band div {
  padding: 20px;
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(10px);
}

.proof-band strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.proof-band span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  max-width: 760px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.74);
  list-style: none;
}

.checklist li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}

.inner.split {
  max-width: 1340px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.checklist-detail-section {
  background: #f6f8fb;
}

.checklist-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.checklist-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(20, 29, 43, 0.06);
}

.checklist-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 70%, rgba(255, 131, 0, 0.9) 0 22%, transparent 23%),
    linear-gradient(135deg, #fff7ed, #ffffff);
  color: #111;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(255, 131, 0, 0.13);
}

.checklist-card h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.35vw, 1.36rem);
  line-height: 1.16;
}

.checklist-meta {
  margin: 12px 0 18px;
  color: #657184;
  font-size: 0.95rem;
  font-weight: 700;
}

.checklist-card p {
  margin: 0 0 16px;
  color: #5d687a;
  font-size: 0.98rem;
  line-height: 1.58;
}

.checklist-card ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.checklist-card li {
  position: relative;
  padding-left: 20px;
  color: #566174;
  font-size: 0.96rem;
  line-height: 1.5;
}

.checklist-card li + li {
  margin-top: 5px;
}

.checklist-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.about-cards-section {
  background: #fffaf3;
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(44px, 6vw, 76px);
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}

.about-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.about-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.about-card-copy {
  padding: 24px 22px 34px;
}

.about-card h2 {
  margin: 0 0 8px;
  color: #656371;
  font-size: clamp(1.32rem, 1.9vw, 1.78rem);
  line-height: 1.15;
}

.about-card p {
  margin: 0;
  color: #7a7887;
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
  line-height: 1.48;
}

.about-card p + p {
  margin-top: 28px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.feature,
.price-option,
.faq-item,
.news-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.faq-grid .faq-item {
  padding: 20px;
}

.faq-grid .faq-item h3 {
  font-size: 1.05rem;
}

.faq-proof-section {
  background: #fffaf3;
  padding-top: clamp(48px, 6vw, 86px);
  padding-bottom: clamp(54px, 7vw, 100px);
}

.faq-proof-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) clamp(24px, 7vw, 104px);
  border-radius: 26px;
  background: #343434;
  color: var(--white);
  text-align: center;
}

.faq-proof-stars {
  margin-bottom: clamp(26px, 4vw, 42px);
  color: #f4a21c;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.faq-proof-card h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.65rem, 2.65vw, 2.55rem);
  line-height: 1.08;
}

.faq-proof-card p {
  max-width: 900px;
  margin: clamp(30px, 4vw, 58px) auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
}

.faq-proof-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(28px, 4vw, 48px);
}

.faq-proof-actions .button {
  min-width: min(365px, 100%);
  min-height: 66px;
  border: 0;
  font-size: 1.12rem;
  font-weight: 900;
}

.faq-proof-actions .button:not(.primary) {
  background: var(--white);
  color: var(--ink);
}

.legal-document {
  max-width: 980px;
}

.legal-text {
  margin-top: 18px;
  max-height: min(62vh, 720px);
  overflow-y: auto;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: #262626;
  font-size: 0.88rem;
  line-height: 1.52;
  scrollbar-color: rgba(255, 131, 0, 0.75) rgba(16, 16, 16, 0.08);
  scrollbar-width: thin;
}

.legal-text h2 {
  margin: 18px 0 6px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text p {
  margin: 0 0 9px;
}

.legal-text::-webkit-scrollbar {
  width: 8px;
}

.legal-text::-webkit-scrollbar-track {
  background: rgba(16, 16, 16, 0.06);
  border-radius: 999px;
}

.legal-text::-webkit-scrollbar-thumb {
  background: rgba(255, 131, 0, 0.72);
  border-radius: 999px;
}

.news-panel {
  margin-top: 18px;
  max-height: min(62vh, 720px);
  overflow-y: auto;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 8px;
  background: var(--white);
  scrollbar-color: rgba(255, 131, 0, 0.75) rgba(16, 16, 16, 0.08);
  scrollbar-width: thin;
}

.news-panel .news-item {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 0;
  background: transparent;
}

.news-panel .news-item + .news-item {
  margin-top: 0;
}

.news-panel .news-item:last-child {
  border-bottom: 0;
}

.news-toggle {
  display: block;
  width: 100%;
  padding: 15px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.news-toggle:hover {
  color: var(--accent-dark);
}

.news-toggle-title,
.news-summary {
  display: block;
}

.news-summary {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.42;
}

.news-toggle:hover .news-summary {
  color: var(--muted);
}

.news-body {
  padding: 0 0 18px;
}

.news-panel .news-item p {
  margin: 0 0 9px;
  font-size: 0.88rem;
  line-height: 1.52;
}

.news-panel .news-item p:last-child {
  margin-bottom: 0;
}

.news-panel::-webkit-scrollbar {
  width: 8px;
}

.news-panel::-webkit-scrollbar-track {
  background: rgba(16, 16, 16, 0.06);
  border-radius: 999px;
}

.news-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 131, 0, 0.72);
  border-radius: 999px;
}

.section.alt .feature,
.dark .feature {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.section.alt .feature p,
.section.alt .faq-item p,
.section.alt .news-item p {
  color: rgba(255, 255, 255, 0.68);
}

.feature p,
.price-option p,
.faq-item p,
.news-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.prices-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 131, 0, 0.14), transparent 34%),
    linear-gradient(270deg, rgba(255, 131, 0, 0.12) 0%, rgba(255, 131, 0, 0.06) 46%, rgba(255, 131, 0, 0.015) 100%),
    #fffaf3;
  color: var(--ink);
}

.prices-inner {
  max-width: 1440px;
}

.prices-section .eyebrow,
.prices-section h1,
.prices-section .lead {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.prices-section .lead {
  color: var(--muted);
  font-size: clamp(0.94rem, 1.04vw, 1.02rem);
  line-height: 1.58;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.5vw, 34px);
  align-items: stretch;
  margin-top: clamp(38px, 4.2vw, 58px);
}

.price-option {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 740px;
  padding: clamp(30px, 2.7vw, 42px);
  border: 1px solid rgba(255, 131, 0, 0.2);
  border-radius: 30px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32);
  text-align: center;
}

.price-option.featured {
  border-color: rgba(255, 131, 0, 0.48);
}

.price-badge {
  position: absolute;
  top: -21px;
  left: 32px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #050505;
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(255, 131, 0, 0.28);
}

.price-option h2 {
  font-size: clamp(1.48rem, 2vw, 2rem);
  line-height: 1.06;
}

.price-desc {
  min-height: 78px;
  max-width: 320px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 0.96vw, 0.96rem);
  line-height: 1.45;
}

.price-amount {
  min-height: 98px;
  margin: 26px 0 28px;
  color: #625e75;
}

.price-amount span {
  display: block;
  font-size: clamp(2.35rem, 3.8vw, 3.5rem);
  font-weight: 900;
  line-height: 0.95;
}

.price-amount small {
  display: block;
  margin-top: 10px;
  color: #706f76;
  font-size: 0.84rem;
  font-weight: 800;
}

.price-features {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 310px;
  margin: 0 0 24px;
  padding: 0;
  color: #696773;
  font-size: clamp(0.88rem, 0.92vw, 0.94rem);
  line-height: 1.34;
  text-align: left;
  list-style: none;
}

.price-features li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
}

.price-features li::before {
  content: "✓";
  color: #17a34a;
  font-weight: 900;
}

.price-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: auto;
  border: 2px solid var(--accent);
  border-radius: 11px;
  background: var(--white);
  color: var(--accent-dark);
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.price-button:hover,
.price-button.is-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #050505;
  transform: translateY(-1px);
}

.price-grid:has(.price-button:not(.is-primary):hover) .price-button.is-primary:not(:hover) {
  background: var(--white);
  color: var(--accent-dark);
  transform: none;
}

.price-button.is-primary:hover {
  background: var(--accent);
  color: #050505;
}

.demo-section {
  position: relative;
  overflow: hidden;
}

.demo-section::before {
  content: "";
  position: absolute;
  left: max(-90px, -4vw);
  bottom: -135px;
  width: min(620px, 38vw);
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.48)),
    url("assets/koffie-logo.png") center / contain no-repeat;
  border-radius: 999px;
  opacity: 0.36;
  filter: saturate(0.92);
  pointer-events: none;
}

.demo-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 82%, rgba(255, 131, 0, 0.09), transparent 30%);
  pointer-events: none;
}

.form-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 440px);
  gap: clamp(48px, 7vw, 108px);
  align-items: stretch;
  max-width: 1160px;
}

.demo-copy {
  display: grid;
  gap: 18px;
  align-content: center;
  min-width: 0;
  min-height: 470px;
}

.demo-copy h1 {
  max-width: 620px;
  font-size: clamp(1.82rem, 2.85vw, 2.7rem);
  overflow-wrap: break-word;
}

.demo-copy .lead,
.demo-copy .checklist {
  margin: 0;
}

.demo-copy .lead {
  max-width: 560px;
  font-size: clamp(0.96rem, 1.06vw, 1.02rem);
}

.demo-copy .checklist {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  max-width: 640px;
}

.demo-form {
  display: grid;
  gap: 12px;
  width: min(440px, 100%);
  min-height: 470px;
  padding: 26px;
  align-content: center;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34);
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.demo-form input,
.demo-form textarea,
.demo-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cfd2dc;
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
}

.demo-form textarea {
  min-height: 112px;
  resize: vertical;
}

.form-note {
  min-height: 18px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1.15fr) minmax(120px, 0.55fr) minmax(150px, 0.55fr);
  gap: clamp(24px, 6vw, 82px);
  padding: 18px max(clamp(18px, 4vw, 54px), calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: #353535;
  color: var(--white);
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.footer-logo {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--white);
}

.footer-company {
  display: grid;
  align-content: start;
}

.footer-socials {
  display: flex;
  gap: 2px;
  margin-top: 12px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 4px;
  align-content: start;
  font-size: 0.88rem;
}

.footer-links h2 {
  margin: 0 0 2px;
  color: var(--white);
  font-size: 0.9rem;
}

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

.site-footer a:hover {
  color: var(--white);
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand {
    font-size: 1.42rem;
  }

  .campaign-hero .inner {
    max-width: var(--max);
  }

  .campaign-hero .campaign-visual img {
    min-height: auto;
  }

  .mobile-hero .campaign-visual {
    justify-self: center;
    width: min(420px, 100%);
    transform: none;
  }

  .mobile-hero .campaign-visual img {
    max-height: none;
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 16px;
    overflow: visible;
    padding-bottom: 0;
    font-size: 0.9rem;
  }

  .nav-cta {
    min-width: auto;
    padding: 9px 16px;
  }

  .hero,
  .split,
  .form-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .demo-section::before {
    display: none;
  }

  .demo-copy,
  .demo-form {
    min-height: auto;
  }

  .demo-form {
    justify-self: stretch;
    width: 100%;
  }

  .checklist,
  .checklist-detail-grid,
  .feature-grid,
  .about-card-grid,
  .faq-grid,
  .price-grid,
  .media-strip,
  .proof-band {
    grid-template-columns: 1fr;
  }

  .price-option,
  .price-desc,
  .price-amount,
  .price-features {
    min-height: auto;
  }

  .price-badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 18px;
  }

  .faq-proof-card {
    padding: 34px 18px;
    border-radius: 18px;
  }

  .faq-proof-card p br {
    display: none;
  }

  .faq-proof-actions {
    flex-direction: column;
  }

  .faq-proof-actions .button {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
