:root {
  color-scheme: light;
  --ink: #071b2e;
  --ink-soft: #24384b;
  --muted: #617184;
  --line: #d9e2ea;
  --line-strong: #b7c5d1;
  --paper: #ffffff;
  --paper-soft: #f5f8fb;
  --mist: #eaf3f7;
  --navy: #0a2540;
  --blue: #166088;
  --indigo: #4f46e5;
  --cyan: #087f83;
  --green: #1f8a5b;
  --coral: #ec6a5b;
  --shadow: 0 22px 70px rgba(7, 27, 46, 0.12);
  --shadow-soft: 0 12px 36px rgba(7, 27, 46, 0.08);
  --container: 1180px;
  --gutter: 24px;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(14, 165, 168, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--indigo) 55%, var(--cyan));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.brand-name {
  font-weight: 800;
}

.brand-name span {
  color: var(--muted);
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ink-soft);
  font-weight: 650;
  font-size: 14px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
}

.main-nav a:hover {
  background: var(--paper-soft);
  color: var(--ink);
}

.main-nav .nav-cta {
  margin-left: 8px;
  background: var(--ink);
  color: #fff;
  padding-inline: 16px;
}

.main-nav .nav-cta:hover {
  background: var(--blue);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero {
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding: 104px 0 64px;
  background-image:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 36%, rgba(255, 255, 255, 0.76) 56%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/images/hero-workspace.jpg");
  background-size: cover;
  background-position: center;
}

.hero-copy {
  width: min(660px, 100%);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: 76px;
  line-height: 0.98;
  font-weight: 850;
  max-width: 10ch;
}

h2 {
  font-size: 46px;
  line-height: 1.08;
  font-weight: 820;
}

h3 {
  font-size: 21px;
  line-height: 1.22;
  font-weight: 780;
}

.hero-lead {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 21px;
  max-width: 620px;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 760;
  font-size: 15px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 24px rgba(7, 27, 46, 0.18);
}

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

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--line-strong);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.proof-list {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-list li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(7, 27, 46, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 720;
}

.proof-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
}

.market-strip {
  background: var(--navy);
  color: #fff;
  padding: 22px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.strip-grid div {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.strip-grid strong {
  min-width: max-content;
}

.strip-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.strip-grid a {
  color: #fff;
  font-weight: 780;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.section {
  padding: 104px 0;
}

.section-head {
  max-width: 760px;
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
}

.section-head.wide {
  max-width: 920px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head p:not(.section-label),
.split-copy p,
.faq-intro p,
.contact-layout p {
  color: var(--muted);
  font-size: 18px;
}

.section-label {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.comparison-card,
.price-card,
.included-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.comparison-card {
  padding: 26px;
  display: grid;
  gap: 12px;
}

.comparison-card.is-strong {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.comparison-card.is-strong p {
  color: rgba(255, 255, 255, 0.78);
}

.comparison-card p {
  color: var(--muted);
}

.comparison-price {
  color: var(--blue);
  font-weight: 820;
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.9fr 1fr;
}

.split-copy {
  display: grid;
  gap: 18px;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper-soft);
}

.media-frame.dark {
  background: var(--navy);
}

.media-frame img {
  width: 100%;
  height: auto;
}

.check-list,
.contact-proof {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li,
.contact-proof li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
}

.check-list li::before,
.contact-proof li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
  border-radius: 50%;
  background:
    linear-gradient(var(--green), var(--green)) center / 9px 2px no-repeat,
    var(--mist);
  transform: rotate(-45deg);
}

.pricing-section {
  background: var(--paper-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 100%;
  box-shadow: 0 1px 0 rgba(7, 27, 46, 0.02);
}

.price-card.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.price-card.featured .button-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.price-card.featured .button-primary:hover {
  background: var(--mist);
}

.price-head {
  display: grid;
  gap: 8px;
}

.price-head p {
  color: var(--muted);
}

.featured .price-head p,
.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.featured .price span {
  color: #76ddd5;
}

.price {
  font-size: 54px;
  line-height: 1;
  font-weight: 860;
}

.price span {
  font-size: 24px;
  margin-right: 6px;
  color: var(--cyan);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}

.price-card li {
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
}

.price-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.price-card li::before {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 4px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
}

.price-card .button {
  margin-top: auto;
  width: 100%;
}

.tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 850;
}

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

.included-grid article {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.included-grid svg {
  width: 36px;
  height: 36px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.included-grid p {
  color: var(--muted);
}

.seo-section {
  background: linear-gradient(180deg, #fff, var(--paper-soft));
}

.seo-points {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.seo-points div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
}

.seo-points strong {
  color: var(--ink);
}

.seo-points span {
  color: var(--muted);
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: process;
}

.process-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  gap: 12px;
}

.process-list span {
  color: var(--cyan);
  font-weight: 860;
}

.process-list p {
  color: var(--muted);
}

.faq-section {
  background: var(--paper-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 64px;
  align-items: start;
}

.faq-intro {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 110px;
}

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

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 780;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
  font-weight: 850;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  padding: 104px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 27, 46, 0.98), rgba(10, 37, 64, 0.94)),
    linear-gradient(90deg, var(--navy), var(--blue));
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-layout > div {
  display: grid;
  gap: 18px;
}

.contact-layout h2 {
  color: #fff;
}

.contact-section .section-label {
  color: #76ddd5;
}

.contact-layout p,
.contact-proof li {
  color: rgba(255, 255, 255, 0.76);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  scroll-margin-top: 96px;
}

.step-form {
  align-content: start;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.step-progress {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.step-progress span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  background: #f6f9fb;
  font-size: 13px;
  font-weight: 840;
}

.step-progress span.is-active,
.step-progress span.is-complete {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.form-step {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-step[hidden] {
  display: none;
}

.form-step-head {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  margin-bottom: 4px;
}

.form-step-head span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-step-head h3 {
  font-size: 25px;
  line-height: 1.14;
}

.choice-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.choice-card {
  position: relative;
  min-height: 118px;
  padding: 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(8, 127, 131, 0.42);
  box-shadow: var(--shadow-soft);
}

.choice-card input {
  position: absolute;
  inset: 15px auto auto 15px;
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.choice-card > span {
  display: grid;
  gap: 6px;
  padding-left: 30px;
}

.choice-card strong {
  color: var(--ink);
  font-size: 16px;
}

.choice-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.choice-card:has(input:checked) {
  border-color: var(--blue);
  background: #eefafa;
  box-shadow: 0 0 0 3px rgba(8, 127, 131, 0.12);
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-weight: 760;
  font-size: 14px;
}

.lead-form .full {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
}

.lead-form .choice-card input {
  position: absolute;
  inset: 15px auto auto 15px;
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 999px;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form button {
  border: 0;
  cursor: pointer;
}

.form-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-size: 13px;
  font-weight: 640;
  line-height: 1.5;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.form-consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.form-nav .button {
  min-width: 132px;
}

.form-nav [hidden] {
  display: none;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  color: var(--muted);
  font-size: 14px;
}

.lead-form[data-w24-state="submitting"] .form-status {
  color: var(--blue);
}

.lead-form[data-w24-state="success"] .form-status {
  color: #087f5b;
}

.lead-form[data-w24-state="error"] .form-status {
  color: #b42318;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.site-footer {
  padding: 56px 0 28px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-grid p {
  color: var(--muted);
  margin-top: 12px;
}

.footer-grid nav {
  display: grid;
  gap: 10px;
}

.footer-grid nav a:hover {
  color: var(--blue);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

/* page-specific hero backgrounds */
.page-website-erstellen-lassen-kosten .hero-compact {
  --hero-bg-image: url("/assets/images/hero-pricing-fixpreis.png");
  --hero-bg-position: center;
  --hero-accent: rgba(8, 127, 131, 0.28);
}

.page-website-erstellen-lassen-festpreis .hero-compact {
  --hero-bg-image: url("/assets/images/seo-launch.jpg");
  --hero-bg-position: center;
  --hero-accent: rgba(79, 70, 229, 0.22);
}

.page-homepage-erstellen-lassen .hero-compact {
  --hero-bg-image: url("/assets/images/hero-homepage-onepager.png");
  --hero-bg-position: center;
  --hero-accent: rgba(31, 138, 91, 0.22);
}

.page-onepager-erstellen-lassen .hero-compact {
  --hero-bg-image: url("/assets/images/mockups-industries.jpg");
  --hero-bg-position: center;
  --hero-accent: rgba(236, 106, 91, 0.2);
}

.page-website-relaunch .hero-compact {
  --hero-bg-image: url("/assets/images/hero-relaunch-cms.png");
  --hero-bg-position: center;
  --hero-accent: rgba(22, 96, 136, 0.24);
}

.page-wordpress-website-erstellen-lassen .hero-compact {
  --hero-bg-image: url("/assets/images/hero-relaunch-cms.png");
  --hero-bg-position: 58% center;
  --hero-accent: rgba(245, 158, 11, 0.2);
}

.page-ueber-uns .hero-compact {
  --hero-bg-image: url("/assets/images/hero-about-company.png");
  --hero-bg-position: center;
  --hero-accent: rgba(8, 127, 131, 0.2);
}

.page-ratgeber .hero-compact {
  --hero-bg-image: url("/assets/images/seo-launch.jpg");
  --hero-bg-position: center;
  --hero-accent: rgba(79, 70, 229, 0.2);
}

.page-branchen .hero-compact {
  --hero-bg-image: url("/assets/images/mockups-industries.jpg");
  --hero-bg-position: center;
  --hero-accent: rgba(31, 138, 91, 0.22);
}

.page-standorte .hero-compact {
  --hero-bg-image: url("/assets/images/hero-about-company.png");
  --hero-bg-position: center;
  --hero-accent: rgba(8, 127, 131, 0.22);
}

.page-tools .hero-compact {
  --hero-bg-image: url("/assets/images/hero-pricing-fixpreis.png");
  --hero-bg-position: center;
  --hero-accent: rgba(236, 106, 91, 0.18);
}

.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: start;
}

.calculator-grid .section-head {
  grid-column: 1 / -1;
  margin-bottom: 10px;
}

.tool-panel,
.result-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.tool-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.tool-panel label,
.tool-panel fieldset {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 760;
}

.tool-panel fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.tool-panel legend {
  padding: 0 8px;
  color: var(--ink);
}

.tool-panel select,
.tool-panel input[type="range"] {
  width: 100%;
}

.tool-panel select {
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #fff;
}

.tool-panel input[type="checkbox"] {
  accent-color: var(--blue);
}

.result-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  padding: 28px;
}

.result-panel strong {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.result-panel p:not(.section-label) {
  color: var(--muted);
}

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

  .result-panel {
    position: static;
  }
}


@media (max-width: 1040px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 38px;
  }

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

  .pricing-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .split,
  .split.reverse,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: 18px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 76px 0 54px;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 62%, rgba(255, 255, 255, 0.5) 100%),
      url("assets/images/hero-workspace.jpg");
    background-position: 58% center;
  }

  h1 {
    font-size: 46px;
    max-width: 11ch;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lead,
  .section-head p:not(.section-label),
  .split-copy p,
  .faq-intro p,
  .contact-layout p {
    font-size: 17px;
  }

  .strip-grid,
  .strip-grid div {
    grid-template-columns: 1fr;
    display: grid;
    gap: 8px;
  }

  .section,
  .contact-section {
    padding: 72px 0;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .form-step,
  .choice-grid,
  .choice-grid.compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 66px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .comparison-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .price-card,
  .comparison-card,
  .included-grid article {
    padding: 22px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .step-progress {
    grid-template-columns: 1fr;
  }

  .form-nav {
    flex-direction: column-reverse;
  }

  .form-nav .button {
    width: 100%;
  }
}

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

/* website-24 design refresh 2026-05-12 */
:root {
  --paper-soft: #f7f9fb;
  --mist: #e8f4f1;
  --amber: #f59e0b;
}

body {
  background: linear-gradient(180deg, #fff 0%, #f8fbfd 42%, #fff 100%);
}

main {
  overflow: clip;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(7, 27, 46, 0.05);
}

.main-nav a {
  white-space: nowrap;
}

.main-nav a[aria-current="page"] {
  background: var(--ink);
  color: #fff;
}

.main-nav a[aria-current="page"]:hover {
  background: var(--blue);
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-compact {
  --hero-bg-image: url("/assets/images/seo-launch.jpg");
  --hero-bg-position: center;
  --hero-accent: rgba(8, 127, 131, 0.22);
  min-height: 62svh;
  padding: 96px 0 78px;
  background-color: #f8fbfd;
  background-image:
    radial-gradient(circle at 84% 22%, var(--hero-accent) 0, rgba(255, 255, 255, 0) 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.76) 68%, rgba(255, 255, 255, 0.42) 100%),
    var(--hero-bg-image);
  background-size: cover;
  background-position: center, center, var(--hero-bg-position);
}

.hero-compact .hero-content {
  display: block;
}

.hero-compact .hero-copy {
  width: 100%;
  max-width: 820px;
}

.hero-compact h1 {
  max-width: 15ch;
  font-size: 58px;
}

.hero-compact .hero-lead {
  max-width: 720px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.breadcrumb a {
  color: var(--blue);
}

.breadcrumb a:hover,
.split-copy a:hover,
.section-head a:hover,
.answer-card a:hover,
.section-note a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button {
  border-radius: var(--radius);
}

.proof-list li {
  background: rgba(255, 255, 255, 0.82);
}

.section {
  position: relative;
}

.section[id] {
  scroll-margin-top: 96px;
}

.section-label {
  letter-spacing: 0.08em;
}

.answer-section {
  padding: 56px 0;
  background: linear-gradient(180deg, rgba(232, 244, 241, 0.5), rgba(247, 249, 251, 0.95));
}

.answer-card {
  max-width: 980px;
  padding: 34px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--coral);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
}

.answer-card h2 {
  max-width: 18ch;
}

.answer-card p:last-child {
  color: var(--ink-soft);
  font-size: 18px;
}

.section-note {
  max-width: 900px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 18px;
}

.section-note.center {
  margin-inline: auto;
  text-align: center;
}

.comparison-grid,
.pricing-grid,
.included-grid,
.process-list {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.pricing-grid--single {
  max-width: 680px;
  margin-inline: auto;
}

.comparison-card,
.included-grid article,
.process-list li,
.price-card {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.comparison-card:hover,
.included-grid article:hover,
.process-list li:hover,
.price-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--blue) 32%, var(--line));
  box-shadow: var(--shadow-soft);
}

.comparison-card,
.included-grid article,
.process-list li {
  align-content: start;
}

.comparison-card.is-strong,
.price-card.featured,
.price-card.is-strong {
  background: linear-gradient(135deg, var(--ink), var(--navy) 58%, #0b5b66);
  color: #fff;
  border-color: var(--navy);
}

.comparison-card.is-strong .comparison-price,
.price-card.featured .price span,
.price-card.is-strong .price span {
  color: #76ddd5;
}

.price-card.is-strong .price-head p,
.price-card.is-strong li {
  color: rgba(255, 255, 255, 0.78);
}

.included-grid article {
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(7, 27, 46, 0.03);
}

.included-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--coral), var(--amber));
}

.split:not(:has(.media-frame)) .split-copy {
  align-self: stretch;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.split-copy a,
.section-head a,
.answer-card a,
.section-note a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.process-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--cyan);
}

.faq-list details {
  box-shadow: 0 1px 0 rgba(7, 27, 46, 0.03);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
}

.faq-list summary::after {
  float: none;
}

.contact-section {
  background-image:
    linear-gradient(135deg, rgba(7, 27, 46, 0.97), rgba(10, 37, 64, 0.93)),
    url("assets/images/seo-launch.jpg");
  background-size: cover;
  background-position: center;
}

.contact-section .check-list li,
.contact-section .check-list a {
  color: rgba(255, 255, 255, 0.82);
}

.contact-section .check-list a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-section .button-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.contact-section .button-primary:hover {
  background: var(--mist);
}

.footer-grid {
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(0, 1fr));
}

.kv-list {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) 1fr;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.kv-list dt,
.kv-list dd {
  margin: 0;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}

.kv-list dt {
  color: var(--muted);
  font-weight: 780;
  background: var(--paper-soft);
}

.kv-list dd {
  color: var(--ink-soft);
}

.kv-list dt:last-of-type,
.kv-list dd:last-of-type {
  border-bottom: 0;
}

.kv-list a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1040px) {
  .hero-compact .hero-content,
  .split,
  .split.reverse,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .hero-compact {
    padding: 70px 0 52px;
    background-image:
      radial-gradient(circle at 70% 14%, var(--hero-accent) 0, rgba(255, 255, 255, 0) 36%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 58%, rgba(255, 255, 255, 0.68) 100%),
      var(--hero-bg-image);
    background-position: center, center, var(--hero-bg-position);
  }

  .hero-compact h1 {
    max-width: none;
    font-size: 42px;
  }

  .answer-section {
    padding: 44px 0;
  }

  .answer-card {
    padding: 26px;
  }
}

@media (max-width: 560px) {
  .comparison-grid,
  .process-list,
  .pricing-grid,
  .included-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split:not(:has(.media-frame)) .split-copy {
    padding: 22px;
  }

  .kv-list {
    grid-template-columns: 1fr;
  }

  .kv-list dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .kv-list dd {
    padding-top: 0;
  }
}

