:root {
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --primary-light: #14b8a6;
  --accent: #f97316;
  --bg: #f1f5f9;
  --surface: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #dbe3ec;
  --radius: 12px;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Prevent sticky header from clipping anchor targets */
section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 12px;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 245, 249, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
}

.nav-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
}

.nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 0 16px;
}

.nav-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  display: none;
}

.nav-list.open {
  display: block;
}

.nav-list a {
  display: block;
  text-decoration: none;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-list a:hover {
  background: #f8fafc;
}

.header-cta {
  display: none;
}

.section {
  padding: 68px 0;
}

.hero {
  background: #ffffff;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
}

.section-text {
  margin: 0 0 30px;
  color: var(--text-muted);
  max-width: 820px;
  line-height: 1.7;
}

.hero h1 {
  margin: 10px 0 14px;
  font-size: 34px;
  line-height: 1.15;
}

.kicker {
  display: inline-block;
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(13, 148, 136, 0.12);
  color: var(--primary-dark);
}

.lead,
.note {
  margin: 0 0 16px;
  color: var(--text-muted);
  max-width: 760px;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

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

.btn-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--primary-light);
  color: var(--primary-dark);
}

.btn-sm {
  padding: 9px 12px;
  font-size: 14px;
}

.hero-grid,
.split {
  display: grid;
  gap: 24px;
}

.card-grid,
.feature-grid {
  display: grid;
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20, 184, 166, 0.35);
  border-radius: 12px;
  background: rgba(20, 184, 166, 0.08);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.card-icon-svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.35;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-card {
  display: flex;
  flex-direction: column;
}

.ps-bridge {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.ps-bridge-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.ps-bridge-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.ps-bridge-card p {
  margin: 0;
  color: var(--text-muted);
}

.ps-bridge-card--accent {
  border-color: rgba(13, 148, 136, 0.38);
  background: #f0fdfa;
}

.section-alt {
  background: #edf3f9;
}

#solution .split > div {
  display: grid;
  align-content: start;
  gap: 18px;
}

#solution h2 {
  margin: 0;
}

#solution .section-text {
  margin: 0;
  max-width: 680px;
}

#solution .check-list {
  margin: 2px 0 4px;
  gap: 10px;
  line-height: 1.6;
}

#solution .btn {
  justify-self: start;
  margin-top: 2px;
}

.check-list,
.tag-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.how-grid {
  display: grid;
  gap: 14px;
}

.how-card {
  padding: 20px;
}

.how-step {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.12);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
}

.how-card h3 {
  margin: 0 0 8px;
}

.how-card p {
  margin: 0;
}

.tag-list {
  padding-left: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tag-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  color: var(--text-muted);
}

/* Для кого — белый блок, сетка иконок без «карточек» */

.audience-section {
  background: #ffffff;
}

.audience-head {
  margin: 0 auto 40px;
  max-width: 40rem;
  text-align: center;
}

.audience-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.audience-head h2 {
  margin: 0 0 14px;
}

.audience-intro {
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.65;
}

.audience-matrix {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 16px;
  width: 100%;
  max-width: 100%;
}

.audience-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.audience-cell-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.09);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audience-icon-svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-icon-svg circle,
.audience-icon-svg path {
  stroke: currentColor;
  fill: none;
}

.audience-cell-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  max-width: 100%;
  padding-inline: 4px;
}

@media (min-width: 480px) {
  .audience-matrix {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px 20px;
  }

  .audience-cell-icon {
    width: 56px;
    height: 56px;
  }

  .audience-icon-svg {
    width: 28px;
    height: 28px;
  }

  .audience-cell-label {
    font-size: 15px;
  }
}

.value-grid {
  display: grid;
  gap: 12px;
}

.split.value-layout {
  align-items: flex-start;
}

.value-card h3 {
  font-size: 18px;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 14px;
}

.billing-switch {
  position: relative;
  width: 46px;
  height: 24px;
}

.billing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.billing-switch-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #cbd5e1;
  border-radius: 999px;
  transition: 0.2s ease;
}

.billing-switch-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  transition: 0.2s ease;
}

.billing-switch input:checked + .billing-switch-slider {
  background: var(--primary);
}

.billing-switch input:checked + .billing-switch-slider::before {
  transform: translateX(22px);
}

.billing-discount {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
}

.tariff-grid {
  display: grid;
  gap: 14px;
}

.tariff-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tariff-card--accent {
  border-color: rgba(13, 148, 136, 0.4);
  background: #f0fdfa;
}

.tariff-subtitle {
  margin: 0;
  color: var(--text-muted);
}

.tariff-price {
  margin: 2px 0 0;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text);
}

.tariff-period {
  margin: 0;
  color: var(--text-muted);
}

.tariff-features {
  margin: 4px 0 12px;
  display: grid;
  gap: 5px;
}

.tariff-features p {
  margin: 0;
  color: var(--text);
}

.tag-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.08);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tag-icon .card-icon-svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
  padding: 14px;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.screenshot-placeholder {
  background: #ecfeff;
  border: 1px dashed var(--primary-light);
  border-radius: 16px;
  padding: 18px;
}

.screenshot-placeholder--image {
  background: transparent;
  border: 0;
  padding: 0;
}

.screenshot-image {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 0;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
  margin-bottom: 10px;
}

.screenshot-caption {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.form-builder-section {
  background: linear-gradient(180deg, #f4f9ff 0%, #eef6ff 100%);
}

.form-builder-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.builder-card {
  padding: 14px;
}

.builder-card-step {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-dark);
  background: rgba(13, 148, 136, 0.12);
  margin-bottom: 8px;
}

.builder-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.builder-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-builder-layout {
  align-items: start;
}

.form-builder-copy {
  display: grid;
  gap: 30px;
  align-content: start;
}

.builder-card--legal {
  background: #fff8f1;
  border-color: rgba(249, 115, 22, 0.35);
}

.builder-card--legal .builder-card-step {
  background: rgba(249, 115, 22, 0.15);
  color: #9a3412;
}

.builder-card--legal h3,
.builder-card--legal p {
  color: #7c2d12;
}

.builder-cta {
  justify-self: start;
  margin-top: 0;
}

.cta-section {
  padding-top: 20px;
}

.cta-box {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px 20px;
}

.cta-box p {
  margin: 0;
  color: var(--text-muted);
}

.cta-box .actions {
  justify-content: center;
  align-items: center;
}

.cta-box .btn {
  min-width: 210px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  margin: 8px 0 0;
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
}

.footer-inner {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.footer-inner p {
  margin: 0;
  color: var(--text-muted);
}

.footer-inner nav {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-inner nav a {
  color: var(--primary-dark);
  text-decoration: none;
}

.footer-inner nav a:hover {
  color: var(--accent);
}

@media (min-width: 360px) {
  .hero h1 {
    font-size: 38px;
  }
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 48px, 1280px);
  }

  .actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-grid,
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 24px;
  }

  .split.value-layout {
    align-items: flex-start;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ps-bridge {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .form-builder-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .how-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tag-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    margin-left: auto;
    margin-right: 10px;
  }

  .nav-list {
    display: flex;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .nav-list a {
    padding: 8px 10px;
    font-size: 15px;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero h1 {
    font-size: 50px;
  }

  .section h2 {
    font-size: 36px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tariff-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-builder-layout {
    align-items: start;
  }

  .cookie-banner {
    left: 24px;
    right: auto;
    max-width: 540px;
  }
}

@media (min-width: 1280px) {
  .section {
    padding: 84px 0;
  }

  .hero h1 {
    font-size: 56px;
  }
}

/* Modern UI refresh: same palette, updated visual language */
:root {
  --bg: #eff4fa;
  --surface: #ffffff;
  --radius: 16px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 26px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 22px 52px rgba(15, 23, 42, 0.14);
}

body {
  background:
    radial-gradient(900px 380px at 8% -6%, rgba(20, 184, 166, 0.08), transparent 65%),
    radial-gradient(900px 380px at 92% -8%, rgba(249, 115, 22, 0.08), transparent 65%),
    var(--bg);
  font-size: 16px;
}

.section {
  padding: clamp(58px, 8vw, 88px) 0;
}

.section h2 {
  font-size: clamp(1.75rem, 2.9vw, 2.35rem);
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.1vw, 3.7rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.lead {
  font-size: clamp(1rem, 1.8vw, 1.14rem);
}

.site-header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
}

.logo-mark {
  border-radius: 11px;
  box-shadow: inset 0 -8px 20px rgba(15, 23, 42, 0.14);
}

.nav-list {
  margin: 8px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.nav-list li + li {
  margin-top: 0;
}

.nav-list a {
  background: transparent;
  border-radius: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
  padding: 10px 2px;
}

.nav-list a:hover {
  color: var(--primary-dark);
}

.nav-mobile-signup {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.93) 0%, rgba(255, 255, 255, 0.72) 100%),
    linear-gradient(130deg, rgba(13, 148, 136, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.actions {
  gap: 12px;
}

.btn {
  border-radius: 14px;
  padding: 12px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(13, 148, 136, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
}

.card,
.ps-bridge-card,
.tariff-card,
.faq-list details,
.cta-box {
  border-radius: var(--radius);
  border: 0;
  box-shadow: var(--shadow);
}

.card,
.ps-bridge-card,
.tariff-card,
.value-card,
.builder-card,
.faq-list details {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.ps-bridge-card:hover,
.tariff-card:hover,
.value-card:hover,
.builder-card:hover,
.faq-list details:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.tag-list li,
.card-icon,
.tag-icon {
  border: 0;
}

/* Light entrance animations */
@keyframes fade-up-soft {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-grid > div,
.hero-grid > aside {
  animation: fade-up-soft 0.55s ease both;
}

.hero-grid > aside {
  animation-delay: 0.12s;
}

.card,
.ps-bridge-card,
.tariff-card,
.faq-list details,
.audience-cell,
.value-card,
.builder-card {
  animation: fade-up-soft 0.45s ease both;
}

.feature-grid > *:nth-child(1),
.ps-bridge > *:nth-child(1),
.how-grid > *:nth-child(1),
.tariff-grid > *:nth-child(1),
.audience-matrix > *:nth-child(1),
.value-grid > *:nth-child(1),
.form-builder-cards > *:nth-child(1),
.faq-list > *:nth-child(1) {
  animation-delay: 0.04s;
}

.feature-grid > *:nth-child(2),
.ps-bridge > *:nth-child(2),
.how-grid > *:nth-child(2),
.tariff-grid > *:nth-child(2),
.audience-matrix > *:nth-child(2),
.value-grid > *:nth-child(2),
.form-builder-cards > *:nth-child(2),
.faq-list > *:nth-child(2) {
  animation-delay: 0.1s;
}

.feature-grid > *:nth-child(3),
.ps-bridge > *:nth-child(3),
.how-grid > *:nth-child(3),
.tariff-grid > *:nth-child(3),
.audience-matrix > *:nth-child(3),
.value-grid > *:nth-child(3),
.form-builder-cards > *:nth-child(3),
.faq-list > *:nth-child(3) {
  animation-delay: 0.16s;
}

.feature-grid > *:nth-child(4),
.audience-matrix > *:nth-child(4),
.value-grid > *:nth-child(4),
.form-builder-cards > *:nth-child(4),
.faq-list > *:nth-child(4) {
  animation-delay: 0.22s;
}

.feature-grid > *:nth-child(5),
.audience-matrix > *:nth-child(5) {
  animation-delay: 0.28s;
}

.feature-grid > *:nth-child(6),
.audience-matrix > *:nth-child(6) {
  animation-delay: 0.34s;
}

.feature-grid > *:nth-child(7),
.audience-matrix > *:nth-child(7) {
  animation-delay: 0.4s;
}

.feature-grid > *:nth-child(8),
.audience-matrix > *:nth-child(8) {
  animation-delay: 0.46s;
}

.section-alt {
  background: linear-gradient(180deg, #eef4fb 0%, #e8f1fa 100%);
}


.form-builder-section {
  background: linear-gradient(180deg, #f4f9ff 0%, #eaf3ff 100%);
}

.screenshot-image {
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.16);
}

.kicker,
.how-step,
.builder-card-step {
  box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.16);
}

.billing-toggle {
  border: 1px solid rgba(148, 163, 184, 0.32);
  box-shadow: var(--shadow-soft);
}

.tariff-card--accent,
.ps-bridge-card--accent {
  background: linear-gradient(180deg, #f0fdfa 0%, #e8faf8 100%);
}

.cookie-banner {
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(8px);
}

.site-footer {
  background: rgba(255, 255, 255, 0.6);
}

.footer-inner nav a {
  transition: color 0.2s ease;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(13, 148, 136, 0.33);
  outline-offset: 2px;
}

@media (min-width: 1024px) {
  section[id] {
    scroll-margin-top: 108px;
  }

  .nav-list {
    gap: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-list li + li {
    margin-top: 0;
  }

  .nav-mobile-signup {
    display: none;
  }

  .nav-mobile-login {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .hero-grid,
  .split {
    gap: 34px;
  }

  .nav-list a {
    border-radius: 10px;
    padding: 8px 10px;
  }
}

@media (max-width: 1023.98px) {
  .header-cta {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Legal documents */
.legal-content {
  max-width: 52rem;
}

.legal-content h1 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.legal-content h2 {
  margin: 32px 0 12px;
  font-size: 1.16rem;
  line-height: 1.35;
  color: #0f4c5c;
}

.legal-content p {
  margin: 0.75rem 0;
}

.legal-content ul,
.legal-content ol {
  margin: 0.5rem 0 1rem;
  padding-left: 1.35rem;
}

.legal-content li {
  margin: 0.35rem 0;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.legal-content td {
  border: 1px solid #e2e8f0;
  padding: 0.5rem 0.75rem;
  vertical-align: top;
}

.legal-content td:first-child {
  width: 38%;
  font-weight: 500;
  background: #f8fafc;
}

.legal-content .doc-meta {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.legal-content .doc-note {
  font-size: 0.875rem;
  color: #64748b;
  font-style: italic;
}

.legal-content code {
  font-size: 0.88em;
  background: #f1f5f9;
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.legal-content .terms-defs dt {
  font-weight: 600;
  margin-top: 1rem;
  color: #0f4c5c;
}

.legal-content .terms-defs dd {
  margin: 0.35rem 0 0;
  padding-left: 0;
}
