.hero {
  padding: 88px 0 72px;
  text-align: center;
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 46px;
  align-items: center;
  text-align: left;
}
.hero-split .hero-inner {
  max-width: none;
  margin: 0;
}
.hero-split .hero-actions {
  justify-content: flex-start;
}
.hero .badge { margin-bottom: 20px; }
.hero-actions, .cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trust-line {
  margin-top: 18px;
  color: var(--gray-400);
  font-size: 13px;
}
.screenshot-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
}
.screenshot-frame img {
  display: block;
  width: 100%;
}
.screenshot-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.84);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.proof-tile {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}
.proof-tile strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.proof {
  padding: 22px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}
.logo-name {
  color: var(--gray-400);
  font-weight: 700;
  filter: grayscale(1);
}
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 62px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 28px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--white);
  font-weight: 800;
}
.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 7px;
  right: -22px;
  color: var(--gray-400);
  font-size: 28px;
}
.compliance-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-featured {
  border-color: var(--red-600);
  box-shadow: 0 14px 38px rgba(220, 38, 38, 0.12);
}
.plan-price {
  color: var(--gray-900);
  font-size: 34px;
  font-weight: 800;
  margin: 14px 0 4px;
}
.plan-price small {
  color: var(--gray-400);
  font-size: 14px;
  font-weight: 500;
}
.plan .btn { margin-top: auto; }
.quote {
  font-size: 17px;
  color: var(--gray-700);
}
.author {
  margin-top: 18px;
  color: var(--gray-900);
  font-weight: 700;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 54px 0;
}
.feature-row:nth-child(even) .mock-screen { order: 2; }
.mock-screen {
  min-height: 300px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  box-shadow: var(--shadow);
}
.mock-bar {
  height: 12px;
  width: 42%;
  margin-bottom: 18px;
  border-radius: 20px;
  background: var(--red-600);
}
.mock-line {
  height: 12px;
  margin: 12px 0;
  border-radius: 20px;
  background: var(--gray-100);
}
.mock-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.mock-cell {
  min-height: 70px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
}
.integrations {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.integration-pill {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-700);
  font-weight: 700;
}
.sector-card {
  min-height: 160px;
}
.sector-card p {
  margin-bottom: 0;
}
.implementation-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.metric {
  padding: 18px;
  border-radius: 8px;
  background: var(--gray-50);
}
.metric strong {
  display: block;
  color: var(--red-600);
  font-size: 26px;
  line-height: 1.1;
}
.objection-list {
  columns: 2;
  column-gap: 28px;
}
.objection-list li {
  break-inside: avoid;
}
.pricing-toggle {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}
.pricing-toggle button {
  border: 0;
  border-radius: 6px;
  padding: 9px 16px;
  background: transparent;
  color: var(--gray-600);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.pricing-toggle button.is-active {
  background: var(--red-600);
  color: var(--white);
}
.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.comparison th, .comparison td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.comparison th { color: var(--gray-900); background: var(--gray-50); }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq summary {
  color: var(--gray-900);
  font-weight: 700;
  cursor: pointer;
}
.demo-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: start;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field-full { grid-column: 1 / -1; }
label {
  display: block;
  color: var(--gray-900);
  font-weight: 700;
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  color: var(--gray-900);
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
.form-message {
  margin-top: 14px;
  font-weight: 700;
}
.form-message.error { color: var(--red-700); }
.form-message.success { color: #047857; }
.legal-note {
  border-left: 4px solid var(--red-600);
  background: var(--red-50);
}
.swiss-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-900);
  font-weight: 800;
}
.swiss-badge img { width: 54px; height: 54px; }

@media (max-width: 767px) {
  .hero { padding: 62px 0 48px; }
  .hero-split, .implementation-strip { grid-template-columns: 1fr; text-align: center; }
  .hero-split .hero-actions { justify-content: center; }
  .proof-grid, .metric-row { grid-template-columns: 1fr; }
  .objection-list { columns: 1; }
  .step:not(:last-child)::after { display: none; }
  .feature-row, .demo-layout { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) .mock-screen { order: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .comparison { display: block; overflow-x: auto; }
}
