:root {
  --bg: #f5f7f2;
  --surface: #ffffff;
  --surface-2: #edf5ed;
  --ink: #121f17;
  --muted: #58665e;
  --line: #d7e2d8;
  --green: #009a22;
  --green-2: #0a6f24;
  --mint: #dff1df;
  --blue: #263f48;
  --amber: #b9823b;
  --cream: #fbf8f0;
  --shadow: 0 18px 55px rgba(20, 36, 29, 0.12);
  --radius: 8px;
  --max: 1180px;
  --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-precise: cubic-bezier(0.16, 1, 0.3, 1);
  --focus-ring: 0 0 0 4px rgba(185, 130, 59, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background:
    linear-gradient(150deg, rgba(10, 111, 36, 0.045) 0%, transparent 32%),
    linear-gradient(330deg, rgba(185, 130, 59, 0.04) 0%, transparent 34%),
    linear-gradient(135deg, #f8faf4 0%, var(--bg) 48%, #f1f4ee 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 14%, rgba(185, 130, 59, 0.06) 14.08%, transparent 14.16%),
    linear-gradient(120deg, transparent 0 72%, rgba(38, 63, 72, 0.06) 72.08%, transparent 72.16%);
  content: "";
}

body.menu-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--blue));
  box-shadow: 0 2px 12px rgba(10, 111, 36, 0.22);
  pointer-events: none;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  transition: transform 0.12s linear;
}

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

h1,
h2,
h3 {
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, sans-serif;
  hyphens: auto;
  max-width: 100%;
  overflow-wrap: break-word;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 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);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 27, 23, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(17, 27, 23, 0.12);
}

.nav {
  width: min(100% - 32px, 1240px);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 0;
  background: url("/assets/hs-logo-mark.png") center / contain no-repeat;
  color: transparent;
  font-weight: 800;
  letter-spacing: 0;
  overflow: hidden;
}

.brand-text {
  display: grid;
  min-width: 0;
  line-height: 1.12;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
  white-space: nowrap;
}

.brand-sub {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 0.93rem;
  padding: 10px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.nav-links .btn-primary,
.nav-links .btn-primary:hover,
.nav-links .btn-primary:focus-visible {
  color: #fff;
  background: var(--green-2);
}

.nav-action {
  margin-left: 6px;
}

.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    transform 0.18s var(--ease-standard),
    border-color 0.18s var(--ease-standard),
    background-color 0.18s var(--ease-standard),
    box-shadow 0.18s var(--ease-standard);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-primary {
  background: var(--green-2);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 154, 34, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #07591d;
  box-shadow: 0 14px 34px rgba(10, 111, 36, 0.24);
  transform: translateY(-2px);
  outline: none;
}

.btn-secondary {
  background: var(--surface);
  color: var(--green-2);
  border-color: rgba(22, 79, 61, 0.22);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--green-2);
  box-shadow: 0 12px 28px rgba(20, 36, 29, 0.08);
  transform: translateY(-2px);
  outline: none;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-2);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  min-height: min(700px, calc(100vh - 96px));
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #f7fbf5;
  color: var(--ink);
}

.home-hero {
  isolation: isolate;
  background:
    linear-gradient(116deg, transparent 0 58%, rgba(10, 111, 36, 0.055) 58.08%, transparent 58.16%),
    linear-gradient(116deg, transparent 0 71%, rgba(185, 130, 59, 0.045) 71.08%, transparent 71.16%),
    linear-gradient(135deg, #fbfdf8 0%, #f2f8ef 52%, #e8f4e7 100%);
}

.hero-atmosphere {
  position: absolute;
  top: 82px;
  right: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 58px;
  z-index: 0;
  width: min(48vw, 650px);
  min-height: 470px;
  pointer-events: none;
}

.hero-collage-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(10, 111, 36, 0.16);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 42, 23, 0.08);
  filter: saturate(0.82) contrast(0.96);
}

.hero-collage-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(248, 253, 248, 0.68), rgba(232, 244, 231, 0.45));
  content: "";
}

.hero-collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-collage-photo-main {
  top: 14%;
  right: 0;
  width: 70%;
  height: 44%;
  opacity: 0.46;
  transform: rotate(2deg);
}

.hero-collage-photo-plan {
  top: 1%;
  left: 9%;
  width: 45%;
  height: 33%;
  opacity: 0.36;
  transform: rotate(-4deg);
}

.hero-collage-photo-site {
  left: 0;
  bottom: 8%;
  width: 54%;
  height: 39%;
  opacity: 0.38;
  transform: rotate(-2deg);
}

.hero::before {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.02);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(116deg, transparent 0 59%, rgba(38, 63, 72, 0.07) 59.08%, transparent 59.16%),
    linear-gradient(116deg, transparent 0 68%, rgba(10, 111, 36, 0.06) 68.08%, transparent 68.16%);
  content: "";
}

.home-hero::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 46px 0 50px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.5fr);
  gap: 54px;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.hero .eyebrow {
  color: var(--green-2);
}

.hero h1 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
  font-size: clamp(2.65rem, 4.8vw, 4.75rem);
  font-weight: 900;
  hyphens: none;
  overflow-wrap: normal;
}

.hero h1 span {
  color: inherit;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero h1 .hero-title-accent {
  color: var(--green);
}

.page-hero h1 {
  margin: 0;
  max-width: 900px;
  letter-spacing: 0;
  line-height: 1.05;
  font-size: clamp(1.9rem, 3.7vw, 3.15rem);
  font-weight: 900;
}

.hero p {
  max-width: 660px;
  margin: 18px 0 0;
  color: #425148;
  font-size: 1.08rem;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin-top: 24px;
}

.hero-fact {
  min-height: 82px;
  padding: 14px;
  border: 1px solid #cfddcf;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(28, 52, 37, 0.08);
}

.hero-fact strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.hero-fact span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  margin: 0;
  padding: 0;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  border: 5px solid #fff;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(15, 42, 23, 0.18);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.hero-visual:hover img {
  box-shadow: 0 30px 86px rgba(15, 42, 23, 0.22);
  transform: translateY(-3px) scale(1.01);
}

.hero-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: -22px;
  max-width: 310px;
  padding: 16px 18px;
  border: 1px solid rgba(47, 172, 72, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(15, 42, 23, 0.14);
}

.hero-visual figcaption span,
.content-image-card figcaption span,
.wide-image-card figcaption span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual figcaption strong,
.content-image-card figcaption strong,
.wide-image-card figcaption strong {
  display: block;
  color: var(--ink);
  line-height: 1.18;
}

.hero-project {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.hero-project h2 {
  margin: 0 0 20px;
  color: #fff;
  line-height: 1.1;
  font-size: 1.55rem;
}

.project-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.project-row strong {
  display: block;
  color: #fff;
}

.project-row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.project-status {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(219, 234, 222, 0.17);
  color: #dff4e5;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.section {
  position: relative;
  padding: 94px 0;
}

.section-tight {
  position: relative;
  padding: 70px 0;
}

.section::before,
.section-tight::before,
.page-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 32px, var(--max));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38, 63, 72, 0.18), transparent);
  transform: translateX(-50%);
  content: "";
}

main > .section:nth-of-type(even):not(.band),
main > .section-tight:nth-of-type(even):not(.band),
main > .page-section:nth-of-type(even):not(.band) {
  background:
    linear-gradient(135deg, rgba(10, 111, 36, 0.035), transparent 34%),
    linear-gradient(315deg, rgba(38, 63, 72, 0.025), transparent 36%),
    rgba(255, 255, 255, 0.42);
}

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

.section > .container,
.section-tight > .container,
.page-section > .container {
  position: relative;
}

.section-jump {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  border-bottom: 1px solid rgba(10, 111, 36, 0.12);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
}

main section[id] {
  scroll-margin-top: 108px;
}

.jump-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(10, 111, 36, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(10, 111, 36, 0.08), rgba(255, 255, 255, 0) 42%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(20, 36, 29, 0.08);
}

.jump-strip span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--green-2);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
}

.jump-strip a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(10, 111, 36, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.jump-strip a:hover,
.jump-strip a:focus-visible {
  border-color: rgba(10, 111, 36, 0.42);
  background: var(--mint);
  color: var(--green-2);
  outline: none;
  transform: translateY(-1px);
}

.section-marker {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 11px;
  border: 1px solid rgba(10, 111, 36, 0.22);
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.section-marker-light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.section-spotlight {
  background:
    linear-gradient(90deg, rgba(10, 111, 36, 0.075), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #ffffff 0%, #f9fcf8 100%),
    #fff;
}

.section-accent {
  background:
    linear-gradient(135deg, rgba(223, 241, 223, 0.92), rgba(255, 255, 255, 0) 46%),
    linear-gradient(315deg, rgba(10, 111, 36, 0.07), rgba(255, 255, 255, 0) 40%),
    #edf7ed;
  border-top: 1px solid rgba(10, 111, 36, 0.13);
  border-bottom: 1px solid rgba(10, 111, 36, 0.13);
}

.section-rhythm {
  background:
    linear-gradient(135deg, rgba(185, 130, 59, 0.09), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #fffdf8 0%, #f7faf4 100%);
}

.section-highlight-soft {
  background:
    linear-gradient(135deg, rgba(185, 130, 59, 0.14), rgba(255, 255, 255, 0) 36%),
    linear-gradient(315deg, rgba(10, 111, 36, 0.075), rgba(255, 255, 255, 0) 38%),
    #fffaf2;
  border-top: 1px solid rgba(185, 130, 59, 0.16);
  border-bottom: 1px solid rgba(185, 130, 59, 0.12);
}

.section-closing {
  background:
    linear-gradient(90deg, rgba(10, 111, 36, 0.06), rgba(255, 255, 255, 0) 34%),
    #ffffff;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.58fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head > *,
.split > *,
.service-package > *,
.card {
  min-width: 0;
}

.section-head h2,
.split h2,
.band h2,
.page-section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
}

.section-head p,
.split p,
.band p,
.page-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.service-secondary {
  margin-top: 18px;
}

.card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.card::before,
.cost-card::before,
.mini-card::before,
.service-package::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--amber), transparent 72%);
  opacity: 0;
  transition: opacity 0.2s ease;
  content: "";
}

.cost-card:hover,
.service-package:hover {
  border-color: rgba(10, 111, 36, 0.28);
  box-shadow: 0 18px 42px rgba(20, 36, 29, 0.1);
  transform: translateY(-3px);
}

.cost-card:hover::before,
.service-package:hover::before {
  opacity: 1;
}

.card-strong {
  background: var(--green-2);
  color: #fff;
}

.card-strong p,
.card-strong .muted,
.card-strong li {
  color: rgba(255, 255, 255, 0.76);
}

.card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.22;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-preview {
  display: grid;
  gap: 14px;
}

.service-preview-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.service-preview-item::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--green);
  content: "";
}

.service-preview-item:nth-child(2n)::before {
  background: var(--amber);
}

.service-preview-item:nth-child(3n)::before {
  background: var(--blue);
}

.service-preview-item:hover {
  border-color: rgba(10, 111, 36, 0.26);
  box-shadow: 0 14px 34px rgba(20, 36, 29, 0.08);
  transform: translateY(-2px);
}

.service-preview-item.is-hidden {
  display: none;
}

.service-preview-button {
  width: 100%;
  min-height: 96px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.service-preview-button h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.12;
}

.service-preview-button p {
  margin: 5px 0 0;
  color: var(--muted);
}

.service-preview-item.is-open {
  border-color: #2fac48;
  background:
    linear-gradient(90deg, rgba(223, 241, 223, 0.82), rgba(255, 255, 255, 0) 28%),
    #f8fff6;
  box-shadow: 0 18px 38px rgba(47, 172, 72, 0.1);
}

.service-preview-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-2);
  font-weight: 900;
  transition: transform 0.18s ease;
}

.service-preview-side {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  color: var(--green-2);
  font-weight: 900;
  white-space: nowrap;
}

.service-preview-item.is-open .service-preview-arrow {
  transform: rotate(90deg);
}

.service-preview-panel {
  display: none;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 24px;
  padding: 0 22px 22px 94px;
}

.service-preview-item.is-open .service-preview-panel {
  display: grid;
  animation: panelOpen 0.24s ease both;
}

.service-preview-panel h4 {
  margin: 0 0 8px;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 1.02rem;
}

.service-preview-panel p {
  margin: 0;
  color: var(--muted);
}

.package-note {
  position: relative;
  margin-top: 12px !important;
  padding: 12px 14px;
  border: 1px solid rgba(10, 111, 36, 0.2);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: #f3fbf0;
  color: #25442f !important;
  font-size: 0.94rem !important;
  font-weight: 700;
}

.service-preview-panel ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.service-preview-panel li {
  margin: 5px 0;
}

.service-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-flow {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdf9;
}

.service-flow li::before {
  display: none;
}

.service-flow span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-flow strong,
.service-flow small {
  display: block;
  grid-column: 2;
}

.service-flow small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-preview-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.service-preview-note {
  padding: 22px;
  border: 1px solid #2fac48;
  border-radius: 14px;
  background: #ddf2d9;
}

.service-preview-note h3 {
  margin: 0;
  color: #087023;
}

.service-preview-note p {
  margin: 8px 0 0;
  color: #263c2d;
}

.card ul,
.clean-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.card li,
.clean-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0;
  color: var(--muted);
}

.card li::before,
.clean-list li::before {
  width: 7px;
  height: 7px;
  margin-top: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.process-highlight {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(10, 111, 36, 0.22);
  border-left: 5px solid var(--green);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(10, 111, 36, 0.1), rgba(255, 255, 255, 0) 48%),
    #fff;
  box-shadow: 0 16px 36px rgba(20, 36, 29, 0.08);
}

.process-highlight strong,
.process-highlight span {
  display: block;
}

.process-highlight strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.process-highlight span {
  margin-top: 6px;
  color: var(--muted);
}

.section-inline-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(10, 111, 36, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 32px rgba(20, 36, 29, 0.07);
}

.section-inline-cta span {
  color: var(--muted);
  font-weight: 800;
}

.card-strong h3 {
  color: #fff;
}

.card-strong p,
.card-strong li,
.card-strong .muted {
  color: rgba(255, 255, 255, 0.9);
}

.card-strong li::before {
  background: #9be7a8;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green-2);
}

.icon svg {
  width: 22px;
  height: 22px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 50px;
  align-items: center;
}

.content-image-card,
.wide-image-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}

.content-image-card:hover,
.wide-image-card:hover {
  box-shadow: 0 26px 68px rgba(15, 42, 23, 0.17);
  transform: translateY(-3px);
}

.content-image-card img,
.wide-image-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.content-image-card:hover img,
.wide-image-card:hover img {
  transform: scale(1.025);
}

.content-image-card img {
  aspect-ratio: 1.05 / 1;
}

.portrait-card img {
  aspect-ratio: 0.9 / 1;
  object-position: center 24%;
}

.partner-network-image img {
  aspect-ratio: 1.18 / 1;
  object-position: center center;
}

.partner-comparison {
  background:
    linear-gradient(135deg, rgba(10, 111, 36, 0.055), rgba(255, 255, 255, 0) 36%),
    #fbfdf8;
  border-top: 1px solid rgba(10, 111, 36, 0.12);
  border-bottom: 1px solid rgba(10, 111, 36, 0.12);
}

.comparison-table {
  overflow: hidden;
  border: 1px solid rgba(18, 31, 23, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 52px rgba(20, 36, 29, 0.08);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.74fr) minmax(250px, 0.94fr) minmax(280px, 1fr);
  min-height: 104px;
  border-top: 1px solid rgba(18, 31, 23, 0.1);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row > div {
  min-width: 0;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(18, 31, 23, 0.1);
  color: var(--ink);
  line-height: 1.35;
}

.comparison-row > div:first-child {
  border-left: 0;
}

.comparison-head {
  min-height: 64px;
}

.comparison-head > div {
  justify-content: center;
  padding: 17px 20px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.comparison-head > div:first-child {
  background: #fff;
}

.comparison-head > div:nth-child(2) {
  background: var(--blue);
}

.comparison-head > div:nth-child(3) {
  background: linear-gradient(135deg, #2f9d52, var(--green-2));
}

.comparison-topic {
  gap: 16px;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.comparison-icon {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue);
}

.comparison-icon::before,
.comparison-icon::after {
  position: absolute;
  content: "";
}

.comparison-icon.time::before {
  width: 34px;
  height: 34px;
  border: 3px solid currentColor;
  border-radius: 999px;
}

.comparison-icon.time::after {
  width: 12px;
  height: 13px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(4px, -2px);
}

.comparison-icon.folder::before {
  width: 36px;
  height: 25px;
  border: 3px solid currentColor;
  border-radius: 4px;
  transform: translateY(4px);
}

.comparison-icon.folder::after {
  left: 7px;
  top: 10px;
  width: 18px;
  height: 8px;
  border-radius: 4px 4px 0 0;
  background: currentColor;
}

.comparison-icon.file::before {
  width: 29px;
  height: 36px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.comparison-icon.file::after {
  width: 15px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 8px 0 currentColor, 0 16px 0 currentColor;
  transform: translateY(2px);
}

.comparison-icon.shield::before {
  width: 34px;
  height: 38px;
  background: currentColor;
  clip-path: polygon(50% 0, 88% 16%, 82% 68%, 50% 100%, 18% 68%, 12% 16%);
}

.comparison-icon.calc::before {
  width: 30px;
  height: 36px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.comparison-icon.calc::after {
  width: 5px;
  height: 5px;
  background: currentColor;
  box-shadow: 10px 0 0 currentColor, 20px 0 0 currentColor, 0 10px 0 currentColor, 10px 10px 0 currentColor, 20px 10px 0 currentColor, 0 20px 0 currentColor, 10px 20px 0 currentColor, 20px 20px 0 currentColor;
  transform: translateY(3px);
}

.comparison-icon.school::before {
  width: 38px;
  height: 24px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 28%, 50% 56%, 0 28%);
}

.comparison-icon.school::after {
  width: 24px;
  height: 11px;
  border-bottom: 5px solid currentColor;
  border-radius: 0 0 12px 12px;
  transform: translateY(14px);
}

.comparison-icon.scale::before {
  bottom: 8px;
  left: 7px;
  width: 7px;
  height: 12px;
  background: currentColor;
  box-shadow: 12px -8px 0 currentColor, 24px -18px 0 currentColor;
}

.comparison-icon.scale::after {
  width: 34px;
  height: 26px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: rotate(45deg) translate(1px, -2px);
}

.comparison-icon::before,
.comparison-icon::after {
  display: none;
}

.comparison-icon svg {
  width: 34px;
  height: 34px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-icon.shield svg {
  width: 35px;
  height: 35px;
}

.comparison-icon.school svg,
.comparison-icon.scale svg {
  width: 36px;
  height: 36px;
}

.comparison-win {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  color: var(--green-2) !important;
}

.comparison-win span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #3aad5d, var(--green-2));
  box-shadow: 0 8px 20px rgba(10, 111, 36, 0.22);
}

.comparison-win span::before {
  width: 15px;
  height: 8px;
  border: solid #fff;
  border-width: 0 0 3px 3px;
  transform: rotate(-45deg) translateY(-1px);
  content: "";
}

.comparison-win strong {
  font-size: 1.02rem;
  line-height: 1.35;
}

.comparison-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.comparison-summary > div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(18, 31, 23, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.comparison-summary > div:last-child {
  background: linear-gradient(135deg, #f0fbef, #ffffff);
  border-color: rgba(10, 111, 36, 0.2);
}

.summary-mark {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.summary-bad {
  background: var(--blue);
}

.summary-good {
  background: var(--green-2);
}

.summary-mark::before,
.summary-mark::after {
  position: absolute;
  width: 25px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
  content: "";
}

.summary-bad::before {
  transform: rotate(45deg);
}

.summary-bad::after {
  transform: rotate(-45deg);
}

.summary-good::before {
  width: 24px;
  height: 12px;
  border: solid #fff;
  border-width: 0 0 4px 4px;
  background: transparent;
  transform: rotate(-45deg) translate(2px, -2px);
}

.summary-good::after {
  display: none;
}

.comparison-summary strong {
  display: block;
  color: var(--ink);
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.12rem;
  text-transform: uppercase;
}

.comparison-summary p {
  margin: 4px 0 0;
  color: var(--muted);
}

.comparison-actions {
  margin-top: 24px;
  justify-content: center;
}

.partner-lead {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, #263f48 0%, #19313b 48%, #075f24 100%);
  color: #fff;
}

.partner-lead .eyebrow,
.partner-lead h2,
.partner-lead p,
.partner-lead li {
  color: #fff;
}

.partner-lead .clean-list li::before {
  background: #fff;
  color: var(--green-2);
}

.partner-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 42px;
  align-items: start;
}

.partner-info-form {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
}

.partner-info-form h3 {
  margin: 0;
}

.partner-offers {
  background:
    linear-gradient(135deg, rgba(185, 130, 59, 0.08), rgba(255, 255, 255, 0) 35%),
    #fffaf2;
}

.partner-process {
  background:
    linear-gradient(90deg, rgba(10, 111, 36, 0.055), rgba(255, 255, 255, 0) 34%),
    #ffffff;
}

.partner-why {
  background:
    linear-gradient(135deg, rgba(223, 241, 223, 0.86), rgba(255, 255, 255, 0) 44%),
    #f8fbf5;
  border-top: 1px solid rgba(10, 111, 36, 0.13);
  border-bottom: 1px solid rgba(10, 111, 36, 0.13);
}

.partner-services {
  background:
    linear-gradient(135deg, rgba(185, 130, 59, 0.09), rgba(255, 255, 255, 0) 35%),
    #fffaf2;
}

.partner-platform {
  background:
    linear-gradient(135deg, rgba(10, 111, 36, 0.09), rgba(255, 255, 255, 0) 42%),
    linear-gradient(90deg, rgba(38, 63, 72, 0.055), rgba(255, 255, 255, 0) 58%),
    #ffffff;
  border-top: 1px solid rgba(10, 111, 36, 0.12);
  border-bottom: 1px solid rgba(10, 111, 36, 0.12);
}

.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.platform-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(10, 111, 36, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.platform-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 14px;
  padding: 16px;
  border: 1px solid rgba(207, 220, 206, 0.9);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(246, 251, 245, 0.94), rgba(255, 255, 255, 0.96));
}

.platform-row span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #ddf2d9;
  color: var(--green);
  font-weight: 900;
}

.platform-row strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.platform-row small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.partner-automation {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 38%),
    linear-gradient(135deg, #075f24 0%, #0a6f24 48%, #263f48 100%);
  color: #fff;
}

.partner-automation .section-head {
  position: relative;
  z-index: 1;
}

.partner-automation .eyebrow {
  color: #cbeed0;
}

.partner-automation h2,
.partner-automation h3,
.partner-automation .section-head p {
  color: #fff;
}

.partner-automation .step {
  position: relative;
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.partner-automation .steps {
  position: relative;
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

.partner-automation .step:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.15);
}

.partner-automation .step-number {
  color: #f2b35b;
}

.partner-automation .step p {
  color: rgba(255, 255, 255, 0.88);
}

.partner-fit {
  background:
    linear-gradient(90deg, rgba(10, 111, 36, 0.055), rgba(255, 255, 255, 0) 32%),
    #ffffff;
}

.partner-services .card,
.partner-automation .step,
.partner-fit .card {
  box-shadow: 0 16px 38px rgba(20, 36, 29, 0.07);
}

.partner-services .card:nth-child(3n + 2)::before,
.partner-fit .card::before {
  background: linear-gradient(90deg, var(--amber), var(--green), transparent 72%);
  opacity: 1;
}

.partner-services .card:nth-child(3n)::before {
  background: linear-gradient(90deg, var(--blue), var(--green), transparent 72%);
  opacity: 1;
}

.wide-image-card {
  margin-top: 30px;
}

.wide-image-card img {
  aspect-ratio: 2.35 / 1;
}

.content-image-card figcaption,
.wide-image-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(15, 42, 23, 0.14);
}

.split-image {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue);
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.image-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(15, 31, 25, 0.76);
  color: #fff;
  backdrop-filter: blur(12px);
}

.image-note strong {
  display: block;
}

.image-note span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.section-rhythm .steps {
  border-color: rgba(10, 111, 36, 0.18);
  box-shadow: 0 18px 45px rgba(20, 36, 29, 0.08);
}

.step {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(10, 111, 36, 0.035), transparent 38%),
    transparent;
  transition: background-color 0.2s ease;
}

.step::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-right: 1px solid rgba(185, 130, 59, 0.36);
  border-bottom: 1px solid rgba(185, 130, 59, 0.36);
  content: "";
}

.step:hover {
  background-color: #fbfdf9;
}

.section-rhythm .step:nth-child(2),
.section-rhythm .step:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(223, 241, 223, 0.62), rgba(255, 255, 255, 0) 48%),
    #fbfdf9;
}

.step:first-child {
  border-left: 0;
}

.step-number {
  color: var(--amber);
  font-weight: 900;
}

.step h3 {
  margin: 18px 0 10px;
  line-height: 1.2;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.13), transparent 28%),
    linear-gradient(116deg, transparent 0 64%, rgba(255, 255, 255, 0.09) 64.08%, transparent 64.16%),
    linear-gradient(135deg, #084f22 0%, var(--green-2) 58%, #263f48 100%);
  color: #fff;
}

.band::after {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2));
  top: 36px;
  width: 170px;
  height: 170px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
  content: "";
}

.band .section-head p,
.band p {
  color: rgba(255, 255, 255, 0.78);
}

.band .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.band .card p,
.band .card li {
  color: rgba(255, 255, 255, 0.76);
}

.band .steps {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.band .step {
  border-color: rgba(255, 255, 255, 0.16);
}

.band .step:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.band .step h3 {
  color: #fff;
}

.band .step p {
  color: rgba(255, 255, 255, 0.76);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.4fr) minmax(0, 1.2fr);
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.price-row:first-child {
  border-top: 0;
}

.price-snapshot {
  padding: 16px 24px;
}

.price-row-featured {
  margin: 0 -8px;
  padding: 20px 8px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(10, 111, 36, 0.12), rgba(255, 255, 255, 0) 42%),
    #f8fff6;
}

.price-row strong {
  display: block;
  font-size: 1.05rem;
}

.price-row strong small {
  display: inline-flex;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-2);
  font-size: 0.7rem;
  font-weight: 900;
  vertical-align: middle;
}

.price-row span {
  color: var(--green-2);
  font-weight: 900;
}

.cost-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 111, 36, 0.06), transparent 34%),
    linear-gradient(315deg, rgba(185, 130, 59, 0.05), transparent 38%),
    linear-gradient(116deg, transparent 0 70%, rgba(38, 63, 72, 0.07) 70.08%, transparent 70.16%),
    var(--cream);
}

.cost-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr);
  gap: 42px;
  align-items: center;
}

.cost-hero .hero-actions {
  margin-top: 26px;
}

.cost-hero-panel {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(10, 111, 36, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.cost-mini-row {
  width: 100%;
  min-width: 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.cost-mini-row::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--green);
  content: "";
}

.cost-mini-row:nth-child(2) {
  background: #fff8ed;
}

.cost-mini-row:nth-child(2)::before {
  background: var(--amber);
}

.cost-mini-row:nth-child(3) {
  background: #f3fbf0;
}

.cost-mini-row:nth-child(3)::before {
  background: var(--blue);
}

.cost-mini-row span {
  min-width: 0;
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.cost-mini-row strong {
  color: var(--green-2);
  font-size: 1.2rem;
  white-space: nowrap;
}

.cost-hero-panel p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

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

.cost-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.cost-card::after {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 54px;
  height: 54px;
  border-top: 1px solid rgba(185, 130, 59, 0.28);
  border-right: 1px solid rgba(185, 130, 59, 0.28);
  content: "";
}

.cost-card-featured {
  border-color: rgba(0, 154, 34, 0.34);
  background:
    linear-gradient(135deg, rgba(0, 154, 34, 0.08) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #f8fff6 0%, #ffffff 100%);
  box-shadow: var(--shadow);
}

.cost-card:nth-child(1) {
  background:
    linear-gradient(135deg, rgba(38, 63, 72, 0.07), rgba(255, 255, 255, 0) 42%),
    #ffffff;
}

.cost-card:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(185, 130, 59, 0.09), rgba(255, 255, 255, 0) 42%),
    #fffaf2;
}

.cost-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.16;
}

.cost-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cost-price {
  color: var(--green-2) !important;
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 2.35rem !important;
  font-weight: 900;
  line-height: 1;
}

.cost-card ul {
  margin: 18px 0 22px;
}

.cost-card .btn {
  margin-top: auto;
}

.cost-list-section {
  background:
    linear-gradient(135deg, rgba(10, 111, 36, 0.045), rgba(255, 255, 255, 0) 34%),
    linear-gradient(315deg, rgba(38, 63, 72, 0.045), rgba(255, 255, 255, 0) 38%),
    #f8fbf5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.cost-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdf9;
}

.cost-line h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.cost-line p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.cost-line strong {
  color: var(--green-2);
  font-size: 1.16rem;
  white-space: nowrap;
}

.cost-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(20, 36, 29, 0.08);
}

.service-finder-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green-2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(20, 36, 29, 0.08);
}

.cost-search {
  display: grid;
  gap: 7px;
  color: var(--green-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cost-search input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: none;
}

.cost-search input:focus {
  border-color: var(--green-2);
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 111, 36, 0.12);
}

.cost-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cost-filter-tabs button {
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.cost-filter-tabs button:hover,
.cost-filter-tabs button:focus-visible,
.cost-filter-tabs button.is-active {
  border-color: rgba(10, 111, 36, 0.34);
  background: var(--mint);
  color: var(--green-2);
  outline: none;
  transform: translateY(-1px);
}

.cost-match-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

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

.cost-tile {
  position: relative;
  min-height: 232px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.cost-tile::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--green);
  opacity: 1;
  transition: height 0.2s ease;
  content: "";
}

.cost-tile[data-category~="berechnung"]::before {
  background: var(--blue);
}

.cost-tile[data-category~="ausweis"]::before {
  background: var(--amber);
}

.cost-tile[data-category~="begleitung"]::before {
  background: #2fac48;
}

.cost-tile:hover {
  border-color: rgba(10, 111, 36, 0.28);
  box-shadow: 0 18px 42px rgba(20, 36, 29, 0.1);
  transform: translateY(-3px);
}

.cost-tile:hover::before {
  height: 8px;
}

.cost-tile.is-hidden {
  display: none;
}

.cost-tile-featured {
  border-color: rgba(0, 154, 34, 0.34);
  background:
    linear-gradient(135deg, rgba(0, 154, 34, 0.12), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #f8fff6 0%, #ffffff 100%);
}

.cost-tile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.cost-tile-head .service-badge {
  margin: 0;
}

.cost-tile-head strong {
  color: var(--green-2);
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  white-space: nowrap;
}

.cost-tile h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.18;
}

.cost-tile p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.cost-tile a {
  margin-top: auto;
  color: var(--green-2);
  font-weight: 900;
  text-decoration: none;
}

.cost-tile a:hover,
.cost-tile a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.cost-empty {
  margin: 18px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

/* Page-specific rhythm changes. Content stays the same; the visual reading order and layout language differs by page. */
.home-page main,
.partner-page main {
  display: flex;
  flex-direction: column;
}

.home-page .home-hero {
  order: 1;
}

.home-page .section-jump {
  order: 2;
}

.home-page main > .trust-strip {
  order: 3;
}

.home-page #projektlotse {
  order: 4;
}

.home-page #leistungen {
  order: 5;
}

.home-page #arbeitsweise {
  order: 6;
}

.home-page #ablauf {
  order: 7;
}

.home-page #partner {
  order: 8;
}

.home-page #preise {
  order: 9;
}

.home-page #organisation {
  order: 10;
}

.home-page #ueber-uns {
  order: 11;
}

.home-page .section-jump {
  padding: 22px 0 28px;
  border-bottom: 1px solid rgba(185, 130, 59, 0.16);
  background:
    linear-gradient(90deg, rgba(38, 63, 72, 0.045), rgba(255, 255, 255, 0) 42%),
    #fffaf2;
}

.home-page .jump-strip {
  gap: 8px;
  border-radius: var(--radius);
  background: #fff;
}

.home-page .jump-strip span,
.home-page .jump-strip a {
  border-radius: var(--radius);
}

.home-page .section-spotlight {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 111, 36, 0.07), rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #ffffff 0%, #f6faf3 100%);
}

.home-page .section-spotlight::after {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  top: 70px;
  bottom: 70px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(185, 130, 59, 0.42), transparent);
  content: "";
}

.home-page .service-preview {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.home-page .service-preview-item.is-open {
  grid-column: 1 / -1;
}

.home-page .section-accent {
  background:
    linear-gradient(115deg, #ffffff 0%, #ffffff 58%, rgba(223, 241, 223, 0.76) 58.1%, rgba(223, 241, 223, 0.76) 100%);
}

.home-page .section-rhythm .steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  border: 0;
  background: transparent;
  overflow: visible;
}

.home-page .section-rhythm .step {
  min-height: 176px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, var(--green) 0 72px, rgba(38, 63, 72, 0.32) 72px 180px, transparent 180px),
    #fff;
  background-size: 100% 3px, auto;
  background-repeat: no-repeat;
  box-shadow: 0 16px 36px rgba(20, 36, 29, 0.07);
}

.home-page .section-rhythm .step:nth-child(even) {
  margin-top: 0;
}

.home-page .section-rhythm .step:nth-child(odd) {
  border-left: 1px solid var(--line);
}

.home-page .section-highlight-soft .price-snapshot {
  border-left: 6px solid var(--amber);
  background:
    linear-gradient(90deg, rgba(185, 130, 59, 0.08), rgba(255, 255, 255, 0) 32%),
    #fff;
}

.home-page .team-strip {
  background:
    linear-gradient(90deg, rgba(38, 63, 72, 0.05), rgba(255, 255, 255, 0) 38%),
    #f6f8f1;
}

.home-page .trust-strip {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(10, 111, 36, 0.06) 50%, rgba(255, 255, 255, 0) 100%),
    #ffffff;
}

.services-page .page-section {
  background:
    linear-gradient(90deg, rgba(38, 63, 72, 0.045), rgba(255, 255, 255, 0) 30%),
    #ffffff;
}

.services-page .page-section > .container {
  display: block;
}

.services-page .page-section .section-head {
  position: relative;
  top: auto;
  margin-bottom: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.services-page .page-section .section-head p {
  margin-top: 14px;
}

.services-page .service-directory {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.services-page .service-directory .service-preview-item.is-open {
  grid-column: 1 / -1;
}

.services-page .service-directory .service-preview-button {
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
}

.services-page .service-directory .service-preview-side {
  grid-column: 2;
  justify-self: start;
  margin-top: 6px;
  white-space: normal;
}

.services-page .service-directory .service-preview-panel {
  padding-left: 22px;
}

.services-page .service-directory .service-preview-item.is-open .service-preview-button {
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
}

.services-page .service-directory .service-preview-item.is-open .service-preview-side {
  grid-column: auto;
  justify-self: end;
}

.cost-page .cost-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
}

.cost-page .cost-card-featured {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.cost-page .cost-card:first-child,
.cost-page .cost-card:nth-child(3) {
  grid-column: 1;
}

.cost-page .cost-directory {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cost-page .cost-tile-featured {
  grid-column: span 2;
}

.cost-page .cost-tile:nth-child(4n + 3) {
  grid-column: span 2;
}

.cost-page .cost-tile {
  min-height: 214px;
}

.partner-page .partner-services {
  order: 4;
}

.partner-page .partner-platform {
  order: 3;
}

.partner-page .partner-automation {
  order: 5;
}

.partner-page .partner-why {
  order: 6;
}

.partner-page .partner-fit {
  order: 7;
}

.partner-page #ablauf {
  order: 8;
}

body.partner-page main > .partner-automation.section-tight {
  background:
    linear-gradient(135deg, rgba(185, 130, 59, 0.22), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, #263f48 0%, #19313b 54%, #075f24 100%);
  color: #fff;
}

body.partner-page main > .partner-automation.section-tight::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.partner-page .partner-services .grid-3 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.partner-page .partner-services .card {
  grid-column: span 3;
}

.partner-page .partner-services .card:nth-child(1),
.partner-page .partner-services .card:nth-child(4) {
  grid-column: span 4;
}

.partner-page .partner-services .card:nth-child(2),
.partner-page .partner-services .card:nth-child(3) {
  grid-column: span 2;
}

.partner-page .partner-services .card:nth-child(5),
.partner-page .partner-services .card:nth-child(6) {
  grid-column: span 3;
}

.partner-page .partner-automation .steps,
.partner-page .band .steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  border: 0;
  background: transparent;
  overflow: visible;
}

.partner-page .partner-automation .step,
.partner-page .band .step {
  min-height: 178px;
  border-radius: var(--radius);
}

.partner-page .band .step:nth-child(even) {
  transform: translateY(24px);
}

.about-page .about-team-section {
  background:
    linear-gradient(90deg, rgba(10, 111, 36, 0.05), rgba(255, 255, 255, 0) 34%),
    #ffffff;
}

.about-page .about-role-grid {
  align-items: stretch;
}

.muted {
  color: var(--muted);
}

.mt-18 {
  margin-top: 18px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 46px;
  background:
    linear-gradient(135deg, rgba(10, 111, 36, 0.055), transparent 34%),
    linear-gradient(315deg, rgba(185, 130, 59, 0.045), transparent 38%),
    linear-gradient(135deg, #fbf8f0 0%, #f4f8ef 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero::after,
.cost-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(116deg, transparent 0 61%, rgba(10, 111, 36, 0.06) 61.08%, transparent 61.16%),
    linear-gradient(116deg, transparent 0 78%, rgba(185, 130, 59, 0.07) 78.08%, transparent 78.16%);
  content: "";
}

.page-hero > .container,
.cost-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero.compact {
  padding: 42px 0 34px;
}

.page-hero.compact p {
  max-width: 760px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  gap: 46px;
  align-items: center;
}

.page-hero-grid > * {
  min-width: 0;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.intro-strip {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-strip {
  position: relative;
  padding: 28px 0;
  border-top: 1px solid rgba(10, 111, 36, 0.14);
  border-bottom: 1px solid rgba(10, 111, 36, 0.16);
  background:
    linear-gradient(90deg, rgba(10, 111, 36, 0.045), transparent 24%, transparent 76%, rgba(38, 63, 72, 0.035)),
    rgba(255, 255, 255, 0.72);
}

.trust-strip-compact {
  padding: 24px 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 28px;
  align-items: center;
}

.trust-strip .eyebrow {
  margin-bottom: 8px;
}

.trust-strip h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  line-height: 1.08;
}

.trust-strip p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
}

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

.trust-badge {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(10, 111, 36, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(20, 36, 29, 0.08);
}

.trust-badge strong {
  color: var(--green-2);
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.trust-badge small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.team-strip {
  padding: 50px 0;
  border-bottom: 1px solid rgba(10, 111, 36, 0.15);
  background:
    linear-gradient(135deg, rgba(223, 241, 223, 0.78), rgba(255, 255, 255, 0) 42%),
    linear-gradient(315deg, rgba(38, 63, 72, 0.045), rgba(255, 255, 255, 0) 34%),
    #fbfdf9;
}

.team-strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
}

.team-strip h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.03;
}

.team-strip p {
  max-width: 700px;
  color: var(--muted);
}

.team-role-grid,
.about-role-grid {
  display: grid;
  gap: 14px;
}

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

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

.team-role-card {
  position: relative;
  min-height: 158px;
  padding: 20px 96px 20px 20px;
  border: 1px solid rgba(10, 111, 36, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(20, 36, 29, 0.08);
  overflow: hidden;
}

.team-role-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue), transparent 74%);
  content: "";
}

.team-role-card .role-avatar {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 56px;
  height: 56px;
  display: block;
  margin: 0;
  border: 1px solid rgba(95, 111, 101, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 33%, rgba(121, 134, 125, 0.38) 0 8px, transparent 8.5px),
    radial-gradient(ellipse at 50% 72%, rgba(121, 134, 125, 0.3) 0 17px, transparent 17.5px),
    linear-gradient(135deg, rgba(245, 247, 245, 0.96), rgba(225, 231, 226, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.team-role-card .role-avatar::before {
  position: absolute;
  left: 50%;
  top: 15px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(95, 111, 101, 0.42);
  transform: translateX(-50%);
  content: "";
}

.team-role-card .role-avatar::after {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 30px;
  height: 20px;
  border-radius: 16px 16px 9px 9px;
  background: rgba(95, 111, 101, 0.34);
  transform: translateX(-50%);
  content: "";
}

.team-role-card .role-avatar-photo {
  object-fit: cover;
  object-position: center 34%;
  background: #eef3ee;
  box-shadow:
    0 8px 20px rgba(20, 36, 29, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.team-role-card .role-symbol {
  display: grid;
  place-items: center;
  color: #6b786f;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 30%),
    linear-gradient(145deg, rgba(250, 251, 250, 0.98), rgba(221, 227, 223, 0.84));
  box-shadow:
    0 10px 24px rgba(20, 36, 29, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.team-role-card .role-symbol::before,
.team-role-card .role-symbol::after {
  display: none;
}

.team-role-card .role-symbol svg {
  width: 30px;
  height: 30px;
}

.team-role-card .role-person svg {
  opacity: 0.88;
}

.team-role-card .role-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--amber);
  font-family: "Inter Tight", Inter, sans-serif;
  font-weight: 900;
}

.team-role-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.15;
}

.team-role-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.role-task-list {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.role-task-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
}

.role-task-list li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  transform: translateY(-50%);
  content: "";
}

.team-role-grid .team-role-lead {
  grid-column: 1 / -1;
}

.about-role-grid .team-role-lead {
  grid-column: span 2;
}

.team-role-lead {
  border-color: rgba(10, 111, 36, 0.28);
  background:
    linear-gradient(135deg, rgba(10, 111, 36, 0.12), rgba(255, 255, 255, 0) 46%),
    #fff;
}

.accountability-card {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(10, 111, 36, 0.2);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(20, 36, 29, 0.08);
}

.accountability-card strong,
.accountability-card span {
  display: block;
}

.accountability-card strong {
  color: var(--ink);
}

.accountability-card span {
  margin-top: 6px;
  color: var(--muted);
}

.about-accountability {
  background:
    linear-gradient(135deg, rgba(10, 111, 36, 0.055), rgba(255, 255, 255, 0) 34%),
    #fff;
}

.about-team-section {
  border-top: 1px solid rgba(10, 111, 36, 0.13);
  border-bottom: 1px solid rgba(10, 111, 36, 0.13);
  background:
    linear-gradient(135deg, rgba(38, 63, 72, 0.06), rgba(255, 255, 255, 0) 34%),
    linear-gradient(315deg, rgba(10, 111, 36, 0.06), rgba(255, 255, 255, 0) 38%),
    #f4f8f2;
}

.about-workflow-section {
  background:
    linear-gradient(90deg, rgba(185, 130, 59, 0.08), rgba(255, 255, 255, 0) 30%),
    #fffaf2;
}

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

.mini-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.mini-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.mini-card span {
  color: var(--muted);
}

.page-visual {
  width: 100%;
  min-width: 0;
  min-height: 350px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-2);
  box-shadow: var(--shadow);
}

.page-visual img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.page-visual-portrait img {
  object-position: center 22%;
}

.schematic-visual {
  width: 100%;
  min-width: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calc-status-card {
  display: grid;
  gap: 18px;
  max-width: 460px;
  padding: 24px;
  border: 1px solid rgba(10, 111, 36, 0.2);
  background: rgba(255, 255, 255, 0.86);
}

.calc-status-head {
  display: grid;
  gap: 4px;
}

.calc-status-head span,
.schematic-kicker {
  color: var(--green-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calc-status-head strong {
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.calc-status-meter {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4efe3;
}

.calc-status-meter span {
  width: 68%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-2), #2fac48);
  transform-origin: left center;
  animation: meterGrow 1.15s ease both;
}

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

.calc-status-list div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdf9;
}

.calc-status-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.calc-status-list strong {
  min-width: 0;
  font-size: 0.98rem;
}

.calc-status-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.schematic-kicker {
  margin-bottom: 18px;
}

.partner-schematic {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.partner-schematic .schematic-kicker,
.contact-schematic .schematic-kicker {
  margin-bottom: 4px;
  color: var(--green-2);
}

.flow-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbf5;
}

.flow-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-2);
  font-weight: 900;
}

.flow-step strong,
.flow-step small {
  display: block;
  grid-column: 2;
}

.flow-step small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.contact-schematic {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #f4f8f2;
  box-shadow: none;
}

.check-line {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
}

.check-line span {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 5px;
  background: var(--green-2);
}

.check-line span::before {
  width: 8px;
  height: 5px;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg) translateY(-1px);
  content: "";
}

.page-section {
  position: relative;
  padding: 82px 0;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.service-packages {
  display: grid;
  gap: 18px;
}

.service-package {
  position: relative;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(20, 36, 29, 0.08);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.service-package-highlight {
  border-color: rgba(0, 154, 34, 0.34);
  background: linear-gradient(135deg, #f8fff6 0%, #ffffff 100%);
}

.service-package h2,
.service-package h3 {
  margin: 0;
}

.service-package p {
  margin: 12px 0 0;
}

.service-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.service-checklist li {
  position: relative;
  display: block;
  min-width: 0;
  padding: 10px 0;
  padding-left: 34px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.service-checklist li:last-child {
  border-bottom: 0;
}

.service-checklist li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-2);
  content: "+";
  font-weight: 900;
  line-height: 1;
}

.service-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #f0d4a9;
  border-radius: var(--radius);
  background: #fff8ed;
  color: #5f4727;
}

.feature-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-item .icon {
  margin: 0;
}

.feature-item h3 {
  margin: 0;
}

.feature-item p {
  margin-top: 5px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.78fr);
  gap: 44px;
  align-items: start;
}

.contact-direct {
  padding-top: 46px;
}

.contact-title {
  margin: 0 0 16px;
  line-height: 1.08;
  font-size: clamp(1.9rem, 3.3vw, 2.8rem);
}

.page-section:first-child,
.page-hero.compact + .page-section {
  padding-top: 46px;
}

.contact-panel {
  width: 100%;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-image-card {
  margin: 24px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f4f8f2;
}

.contact-image-card img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.contact-image-card figcaption {
  padding: 14px 0 0;
}

.contact-image-card figcaption strong,
.contact-image-card figcaption span {
  display: block;
}

.contact-image-card figcaption strong {
  color: var(--ink);
  line-height: 1.2;
}

.contact-image-card figcaption span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

#formular {
  scroll-margin-top: 110px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #cfd8d2;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-2);
  outline: 3px solid rgba(70, 111, 91, 0.18);
}

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

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

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.ok {
  color: var(--green-2);
}

.form-status.err {
  color: #a23524;
}

.site-footer {
  background: #111b17;
  color: #fff;
}

.footer-grid {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(150px, 0.35fr) minmax(240px, 0.55fr) minmax(160px, 0.35fr);
  gap: 30px;
}

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

.site-footer .brand-name {
  color: #fff;
}

.site-footer .brand-sub {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  outline: none;
}

.footer-title {
  margin: 0 0 12px;
  color: #fff;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 8px;
  overflow-wrap: anywhere;
}

.footer-note {
  max-width: 420px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  width: min(100% - 32px, var(--max));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  margin-top: 0;
  line-height: 1.08;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-content h2 {
  margin-top: 34px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--green-2);
  font-weight: 800;
}

.legal-box {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.legal-box p:last-child,
.legal-box ul:last-child {
  margin-bottom: 0;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: min(420px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #111b17;
  color: #fff;
  box-shadow: 0 24px 70px rgba(17, 27, 23, 0.34);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.cookie-banner a {
  color: #fff;
  font-weight: 800;
}

.cookie-banner .btn-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.cookie-actions .btn {
  min-height: 40px;
  padding: 10px 13px;
  font-size: 0.9rem;
}

.calculator-page {
  background:
    linear-gradient(135deg, rgba(0, 154, 34, 0.08), rgba(255, 255, 255, 0) 38%),
    linear-gradient(315deg, rgba(38, 63, 72, 0.07), rgba(255, 255, 255, 0) 42%),
    #f8fbf5;
}

.calc-shell {
  position: relative;
  min-height: auto;
  overflow: clip;
  border-bottom: 5px solid #092414;
}

.calc-shell::before,
.calc-shell::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.calc-shell::before {
  background:
    linear-gradient(116deg, transparent 0 58%, rgba(38, 63, 72, 0.07) 58.08%, transparent 58.16%),
    linear-gradient(116deg, transparent 0 75%, rgba(185, 130, 59, 0.06) 75.08%, transparent 75.16%);
}

.calc-shell::after {
  top: 42px;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: auto;
  left: auto;
  width: 180px;
  height: 180px;
  border-top: 1px solid rgba(38, 63, 72, 0.14);
  border-right: 1px solid rgba(38, 63, 72, 0.14);
}

.calc-hero {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 56px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.6fr);
  gap: 54px;
  align-items: center;
}

.calc-kicker {
  margin: 0 0 12px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.calc-kicker::before {
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 8px;
  vertical-align: middle;
  background: currentColor;
  content: "";
}

.calc-hero h1 {
  max-width: 680px;
  margin: 0;
  color: #06140c;
  font-size: clamp(2.6rem, 5vw, 5.05rem);
  line-height: 1.04;
  hyphens: none;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.calc-hero h1 span {
  color: #2fac48;
  white-space: nowrap;
}

.calc-hero .calc-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: #33443a;
  font-size: 1.05rem;
}

.calc-visual {
  margin: 0;
  border: 5px solid #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 42, 23, 0.16);
  background: #fff;
}

.calc-visual img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  object-position: center;
}

.calc-card {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  padding: 8px 0 64px;
  overflow-anchor: none;
  scroll-margin-top: 108px;
}

.calc-step {
  display: none;
  scroll-margin-top: 108px;
}

.calc-step:focus {
  outline: none;
}

.calc-step.is-active {
  display: block;
}

.calc-step-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 10px 0 16px;
}

.calc-step-head h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.08;
}

.calc-step-head span {
  color: #84958b;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

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

.calc-options.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.calc-option,
.calc-check,
.calc-pill {
  border: 1px solid #cbd8c9;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: #04140b;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.calc-option:hover,
.calc-check:hover,
.calc-pill:hover {
  border-color: #36af4e;
  transform: translateY(-1px);
}

.calc-option.is-selected,
.calc-check.is-selected,
.calc-pill.is-selected {
  border-color: #2fac48;
  background: #ddf2d9;
  color: #087023;
  box-shadow: 0 8px 18px rgba(47, 172, 72, 0.13);
}

.calc-option {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  text-align: left;
}

.calc-option.center {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.calc-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #dcf0d8;
  color: #167532;
}

.calc-option.is-selected .calc-icon,
.calc-check.is-selected .calc-icon {
  background: rgba(255, 255, 255, 0.62);
}

.calc-icon svg {
  width: 26px;
  height: 26px;
}

.calc-option small,
.calc-check small {
  display: block;
  margin-top: 4px;
  color: #7f8e84;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calc-field-group {
  margin-top: 22px;
}

.calc-field-group.is-hidden {
  display: none;
}

.calc-label {
  display: block;
  margin: 0 0 8px;
  color: #7f8e84;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calc-help {
  max-width: 760px;
  margin: -2px 0 12px;
  color: #617064;
  font-size: 0.92rem;
}

.calc-pills {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.calc-pill {
  min-height: 40px;
  padding: 9px 12px;
}

.calc-range-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
}

.calc-range-label strong {
  color: #2fac48;
}

.calc-range {
  width: 100%;
  margin-top: 14px;
  accent-color: #2fac48;
}

.calc-check {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  text-align: left;
}

.calc-checkmark {
  width: 24px;
  height: 24px;
  margin-left: auto;
  border: 2px solid #bfcdbf;
  border-radius: 7px;
  background: #fff;
}

.calc-check.is-selected .calc-checkmark {
  border-color: #2fac48;
  background:
    linear-gradient(135deg, transparent 48%, #2fac48 48%, #2fac48 58%, transparent 58%),
    linear-gradient(45deg, transparent 40%, #2fac48 40%, #2fac48 52%, transparent 52%),
    #fff;
}

.calc-divider {
  height: 1px;
  margin: 24px 0 18px;
  background: #dfe8df;
}

.calc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #dfe8df;
}

.calc-back {
  border: 0;
  background: transparent;
  color: #132019;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.calc-back:disabled {
  color: #b7c2b9;
  cursor: default;
}

.calc-next {
  min-width: 118px;
  border-radius: 999px;
}

.calc-result-box {
  padding: 28px;
  border: 1px solid #2fac48;
  border-radius: 14px;
  background: #ddf2d9;
}

.calc-result-top {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.calc-result-top h2 {
  margin: 0;
  color: #087023;
}

.calc-result-top p {
  margin: 6px 0 0;
  color: #1f3627;
}

.calc-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.calc-summary div {
  padding: 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.68);
}

.calc-summary strong {
  display: block;
  color: #087023;
  font-size: 1.25rem;
}

.calc-email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.calc-email-row input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #2fac48;
  border-radius: 10px;
  background: #fff;
  font: inherit;
}

.calc-email-row .btn {
  width: 100%;
  border-radius: 999px;
  background: #061d10;
}

.calc-note {
  margin: 10px 0 0;
  color: #617064;
  font-size: 0.85rem;
  text-align: center;
}

.calc-output {
  display: none;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #cbd8c9;
  border-radius: 10px;
  background: #fff;
}

.calc-output.is-visible {
  display: block;
}

.calc-output ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.calc-pdf-report {
  display: none;
}

.js-reveal .reveal {
  opacity: 0;
  translate: 0 16px;
  transition:
    opacity 0.55s ease,
    translate 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js-reveal .reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

@keyframes panelOpen {
  from {
    opacity: 0;
    translate: 0 -6px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes meterGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .js-reveal .reveal {
    opacity: 1;
    translate: 0 0;
  }
}

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

@media (max-width: 1120px) and (min-width: 961px) {
  .nav {
    gap: 14px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 9px 8px;
    font-size: 0.88rem;
  }

  .nav-action {
    margin-left: 2px;
  }

  .brand-sub {
    display: none;
  }
}

@media (max-width: 1160px) and (min-width: 961px) {
  .nav {
    position: relative;
    min-height: 76px;
    padding-right: 56px;
  }

  .menu-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 2;
    display: inline-flex !important;
    color: var(--green-2);
    background: #fff;
    box-shadow: 0 8px 22px rgba(20, 36, 29, 0.1);
    transform: translateY(-50%);
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 27, 23, 0.98);
    box-shadow: 0 22px 48px rgba(17, 27, 23, 0.22);
  }

  body.menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-action {
    margin: 8px 0 0;
    width: 100%;
  }

  .brand-sub {
    display: none;
  }
}

@media (max-width: 1020px) {
  .hero-atmosphere {
    top: 72px;
    right: -8%;
    bottom: auto;
    width: min(58vw, 520px);
    height: 420px;
    min-height: 0;
    opacity: 0.56;
  }

  .hero-collage-photo-site {
    display: none;
  }

  .section-head,
  .split,
  .page-hero-grid,
  .contact-layout,
  .partner-lead-grid,
  .trust-strip-grid,
  .team-strip-grid,
  .intro-strip-grid,
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1fr) minmax(0, 1fr);
  }

  .comparison-row > div {
    padding: 18px;
  }

  .grid-3,
  .steps,
  .about-role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step:nth-child(odd) {
    border-left: 0;
  }

  .step:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .cost-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .cost-toolbar,
  .service-finder-toolbar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

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

  .home-page .service-preview,
  .project-guide-grid,
  .project-checklist,
  .services-page .page-section > .container,
  .services-page .service-directory {
    grid-template-columns: 1fr;
  }

  .services-page .page-section .section-head {
    position: relative;
    top: auto;
  }

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

  .cost-page .cost-card-featured,
  .cost-page .cost-card:first-child,
  .cost-page .cost-card:nth-child(3),
  .cost-page .cost-tile-featured,
  .cost-page .cost-tile:nth-child(4n + 3) {
    grid-column: auto;
    grid-row: auto;
  }

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

  .partner-page .partner-services .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-page .partner-services .card,
  .partner-page .partner-services .card:nth-child(1),
  .partner-page .partner-services .card:nth-child(2),
  .partner-page .partner-services .card:nth-child(3),
  .partner-page .partner-services .card:nth-child(4),
  .partner-page .partner-services .card:nth-child(5),
  .partner-page .partner-services .card:nth-child(6) {
    grid-column: auto;
  }

  .calc-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .calc-visual {
    max-width: 520px;
    margin: 0;
  }

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

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

@media (max-width: 960px) {
  .hero-atmosphere {
    top: 18px;
    right: -22%;
    width: 96%;
    height: 260px;
    opacity: 0.28;
  }

  .hero-collage-photo-main {
    width: 58%;
    height: 48%;
  }

  .hero-collage-photo-plan {
    left: 26%;
    width: 38%;
    height: 34%;
  }

  .nav {
    position: relative;
    min-height: 68px;
    padding-right: 56px;
  }

  .menu-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 2;
    display: inline-flex !important;
    color: var(--green-2);
    background: #fff;
    box-shadow: 0 8px 22px rgba(20, 36, 29, 0.1);
    transform: translateY(-50%);
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 27, 23, 0.98);
    box-shadow: 0 22px 48px rgba(17, 27, 23, 0.22);
  }

  body.menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-action {
    margin: 8px 0 0;
    width: 100%;
  }

  .nav-action .btn {
    width: 100%;
  }

  .brand-sub {
    display: none;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .comparison-table {
    display: grid;
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(18, 31, 23, 0.12);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 28px rgba(20, 36, 29, 0.06);
  }

  .comparison-row > div {
    display: block;
    padding: 16px;
    border-left: 0;
    border-top: 1px solid rgba(18, 31, 23, 0.08);
  }

  .comparison-row > div:first-child {
    border-top: 0;
  }

  .comparison-row > div:nth-child(2)::before,
  .comparison-win::before {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .comparison-row > div:nth-child(2)::before {
    content: "Ohne Partnerschaft";
  }

  .comparison-win::before {
    grid-column: 1 / -1;
    content: "Mit Partnerschaft";
  }

  .comparison-topic {
    display: grid !important;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
  }

  .comparison-win {
    display: grid !important;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px 12px;
  }

  .comparison-win span {
    width: 32px;
    height: 32px;
  }

  .comparison-summary {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .section-jump {
    padding: 12px 0;
  }

  .jump-strip {
    gap: 8px;
    padding: 10px;
  }

  .jump-strip span,
  .jump-strip a {
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.82rem;
  }

  .hero-inner {
    padding: 46px 0 58px;
  }

  .hero-visual {
    max-width: 620px;
  }

  .hero-visual figcaption {
    position: static;
    max-width: none;
    margin: -28px 18px 0;
  }

  .hero-facts,
  .grid-2,
  .grid-3,
  .cost-grid,
  .trust-badges,
  .team-role-grid,
  .about-role-grid,
  .service-package,
  .steps,
  .form-grid,
  .platform-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-page .section-rhythm .steps,
  .partner-page .partner-automation .steps,
  .partner-page .band .steps,
  .partner-page .partner-services .grid-3,
  .cost-page .cost-grid,
  .cost-page .cost-directory {
    grid-template-columns: 1fr;
  }

  .home-page .section-rhythm .step:nth-child(even),
  .partner-page .partner-automation .step:nth-child(even),
  .partner-page .band .step:nth-child(even) {
    margin-top: 0;
    transform: none;
  }

  .about-role-grid .team-role-lead {
    grid-column: auto;
  }

  .step {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 0;
  }

  .step:first-child {
    border-top: 0;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cost-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cost-line strong {
    white-space: normal;
  }

  .cost-directory {
    grid-template-columns: 1fr;
  }

  .cost-match-count {
    white-space: normal;
  }

  .section,
  .page-section {
    padding: 64px 0;
  }

  .section-tight {
    padding: 52px 0;
  }

  .page-hero {
    padding: 38px 0 34px;
  }

  .trust-strip {
    padding: 22px 0;
  }

  .trust-badge {
    min-height: 0;
  }

  .wide-image-card img {
    aspect-ratio: 1.35 / 1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .calc-shell {
    min-height: auto;
  }

  .calc-shell::before,
  .calc-shell::after {
    display: none;
  }

  .calc-hero {
    gap: 24px;
    padding-top: 38px;
  }

  .calc-hero h1 {
    max-width: 640px;
    font-size: clamp(2.2rem, 8.8vw, 3.15rem);
    line-height: 1.02;
  }

  .calc-visual {
    display: block;
    max-width: 520px;
    margin: 0;
  }

  .calc-card {
    padding-bottom: 44px;
  }
}

@media (max-width: 520px) {
  .comparison-topic {
    grid-template-columns: 38px minmax(0, 1fr);
    font-size: 0.88rem;
  }

  .comparison-icon {
    width: 38px;
    height: 38px;
    scale: 0.86;
    transform-origin: left center;
  }

  .comparison-row > div {
    padding: 14px;
  }

  .comparison-win strong {
    font-size: 0.96rem;
  }

  .comparison-summary > div {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .summary-mark {
    width: 42px;
    height: 42px;
  }

  .partner-info-form {
    padding: 18px;
  }

  .hero-atmosphere {
    right: -38%;
    height: 220px;
    opacity: 0.2;
  }

  .hero-collage-photo-plan {
    display: none;
  }

  .process-highlight {
    padding: 16px;
  }

  .container,
  .nav,
  .footer-grid,
  .footer-bottom-inner {
    width: min(100% - 32px, var(--max));
  }

  .hero .eyebrow {
    max-width: 310px;
    letter-spacing: 0.06em;
    line-height: 1.45;
  }

  .hero h1 {
    max-width: 21rem;
    font-size: 2.05rem;
    letter-spacing: 0;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero p {
    max-width: 21rem;
    font-size: 1.03rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding: 38px 0 44px;
  }

  .hero-actions,
  .hero-facts {
    max-width: 21rem;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .hero-fact:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero-fact {
    min-height: 0;
    padding: 11px 9px;
  }

  .hero-fact strong {
    font-size: 0.82rem;
    line-height: 1.18;
  }

  .hero-fact span {
    display: none;
  }

  .page-hero h1 {
    max-width: 21rem;
    font-size: clamp(1.55rem, 7.1vw, 1.88rem);
    letter-spacing: 0;
    line-height: 1.06;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .page-hero p {
    max-width: 20rem;
    overflow-wrap: break-word;
  }

  .section-head p {
    max-width: 20rem;
  }

  .trust-strip h2,
  .trust-strip p {
    max-width: 21rem;
  }

  .trust-badge {
    padding: 14px;
  }

  .section-head h2,
  .split h2,
  .band h2,
  .page-section h2 {
    font-size: 1.68rem;
    overflow-wrap: break-word;
  }

  .page-hero.compact {
    padding: 30px 0 28px;
  }

  .page-section:first-child,
  .page-hero.compact + .page-section {
    padding-top: 34px;
  }

  .contact-title {
    font-size: clamp(1.7rem, 8vw, 2.05rem);
  }

  .contact-layout {
    width: calc(100vw - 32px);
    max-width: 21rem;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .card,
  .contact-panel {
    padding: 20px;
  }

  .contact-panel p,
  .contact-panel li {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .contact-panel a {
    overflow-wrap: anywhere;
  }

  .page-visual {
    min-height: 0;
  }

  .page-visual img {
    min-height: 0;
    aspect-ratio: 1.28 / 1;
  }

  .page-visual-portrait img {
    aspect-ratio: 0.94 / 1;
  }

  .feature-item {
    grid-template-columns: 1fr;
  }

  .service-package {
    padding: 22px;
    overflow: hidden;
  }

  .service-package h2,
  .service-package p,
  .service-checklist li,
  .card h3,
  .card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .service-package .hero-actions,
  .service-package .hero-actions .btn {
    min-width: 0;
  }

  .service-preview-button {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 18px;
  }

  .service-preview-button h3,
  .service-preview-button p {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .service-preview-arrow {
    display: none;
  }

  .service-preview-side {
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
    white-space: normal;
  }

  .service-preview-panel {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }

  .service-flow li {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 12px;
  }

  .cost-toolbar {
    padding: 14px;
  }

  .cost-filter-tabs button {
    flex: 1 1 auto;
  }

  .cost-tile {
    min-height: 0;
  }

  .content-image-card figcaption,
  .wide-image-card figcaption {
    position: static;
    margin: 0;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .calc-hero,
  .calc-card {
    width: min(100% - 32px, var(--max));
  }

  .calc-hero {
    padding-top: 32px;
  }

  .calc-kicker {
    max-width: 340px;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .calc-hero h1 {
    max-width: 21rem;
    font-size: 2.18rem;
  }

  .calc-hero h1 span {
    display: block;
  }

  .calc-hero .calc-copy {
    max-width: 330px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .cost-mini-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cost-mini-row strong {
    justify-self: start;
  }

  .calc-status-card {
    max-width: 21rem;
    padding: 22px;
  }

  .calc-status-head strong {
    font-size: 1.22rem;
  }

  .calc-visual img {
    aspect-ratio: 1.55 / 1;
  }

  .calc-step-head {
    display: block;
  }

  .calc-step-head span {
    display: block;
    margin-top: 4px;
  }

  .calc-options,
  .calc-options.two,
  .calc-options.four,
  .calc-pills,
  .calc-summary {
    grid-template-columns: 1fr;
  }

  .calc-option {
    min-height: 86px;
    padding: 16px;
  }

  .calc-nav {
    align-items: stretch;
  }

  .calc-next {
    min-width: 0;
    flex: 1;
  }
}

@media (max-width: 380px) {
  .calc-hero h1 {
    font-size: 1.98rem;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .section-head h2,
  .split h2,
  .band h2,
  .page-section h2 {
    font-size: 1.58rem;
  }
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body.calculator-page {
    background: #fff !important;
    color: #102017 !important;
  }

  .calculator-page .site-header,
  .calculator-page .skip-link,
  .calculator-page .calc-hero,
  .calculator-page .trust-strip,
  .calculator-page .site-footer,
  .calculator-page .calc-nav,
  .calculator-page .calc-email-row,
  .calculator-page .calc-output .hero-actions,
  body.calculator-page::before,
  .calculator-page .calc-shell::before,
  .calculator-page .calc-shell::after {
    display: none !important;
  }

  .calculator-page .calc-shell {
    min-height: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    background: #fff !important;
  }

  .calculator-page .calc-card {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .calculator-page .calc-step {
    display: none !important;
  }

  .calculator-page .calc-step.is-active {
    display: block !important;
  }

  .calculator-page .calc-step-head {
    display: none !important;
  }

  .calculator-page .calc-step-head h2 {
    margin: 0 !important;
    color: #0a6f24 !important;
    font-size: 17pt !important;
  }

  .calculator-page .calc-step-head span {
    color: #58665e !important;
  }

  .calculator-page .calc-result-box {
    position: relative;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  .calculator-page .calc-result-box::before {
    display: none !important;
    padding: 7mm 10mm 6mm;
    border-bottom: 1.5mm solid #0a6f24 !important;
    background: #f6fbf5 !important;
    color: #102017 !important;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    content: "Schneider Energieberatung · Förder-Einschätzung";
  }

  .calculator-page .calc-result-top,
  .calculator-page .calc-summary,
  .calculator-page .calc-note,
  .calculator-page .calc-output {
    display: none !important;
  }

  .calculator-page .calc-pdf-report {
    display: block !important;
    min-height: 267mm;
    padding: 0;
    color: #102017 !important;
    font-size: 10.2pt;
    line-height: 1.45;
  }

  .calculator-page .pdf-report-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 7mm 8mm;
    border-bottom: 1.5mm solid #0a6f24 !important;
    background: #f4faf3 !important;
  }

  .calculator-page .pdf-report-header strong {
    display: block;
    color: #102017 !important;
    font-size: 14pt;
    font-weight: 900;
  }

  .calculator-page .pdf-report-header span {
    display: block;
    color: #516458 !important;
    font-size: 9pt;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .calculator-page .pdf-report-title {
    padding: 8mm 8mm 5mm;
  }

  .calculator-page .pdf-report-title p,
  .calculator-page .pdf-report-title span {
    margin: 0;
    color: #0a6f24 !important;
    font-size: 9pt;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .calculator-page .pdf-report-title h2 {
    max-width: 150mm;
    margin: 1.5mm 0 2mm;
    color: #102017 !important;
    font-size: 23pt !important;
    line-height: 1.08 !important;
  }

  .calculator-page .pdf-highlight-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 4mm !important;
    padding: 0 8mm 7mm;
  }

  .calculator-page .pdf-highlight-grid div {
    min-height: 24mm;
    padding: 4mm;
    border: 1px solid #cfe3cf !important;
    border-radius: 2.5mm;
    background: #fff !important;
  }

  .calculator-page .pdf-highlight-grid span {
    display: block;
    color: #627166 !important;
    font-size: 8pt;
    font-weight: 800;
    text-transform: uppercase;
  }

  .calculator-page .pdf-highlight-grid strong {
    display: block;
    margin-top: 2mm;
    color: #0a6f24 !important;
    font-size: 17pt !important;
    line-height: 1.1;
  }

  .calculator-page .pdf-report-grid {
    display: grid !important;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 5mm;
    padding: 0 8mm;
  }

  .calculator-page .pdf-report-grid section,
  .calculator-page .pdf-benefit-box,
  .calculator-page .pdf-next-steps {
    padding: 5mm;
    border: 1px solid #cfe3cf !important;
    border-radius: 2.5mm;
    background: #fff !important;
  }

  .calculator-page .pdf-benefit-box {
    margin: 5mm 8mm 0;
    border-left: 4mm solid #0a6f24 !important;
    background: #f8fcf7 !important;
  }

  .calculator-page .pdf-next-steps {
    margin: 5mm 8mm 0;
  }

  .calculator-page .calc-pdf-report h3 {
    margin: 0 0 3mm;
    color: #102017 !important;
    font-size: 12pt !important;
  }

  .calculator-page .calc-pdf-report ul,
  .calculator-page .calc-pdf-report ol {
    margin: 0;
    padding-left: 5mm;
  }

  .calculator-page .calc-pdf-report li {
    margin: 2mm 0 !important;
    color: #263f48 !important;
  }

  .calculator-page .pdf-benefit-box p {
    margin: 0;
    color: #263f48 !important;
  }

  .calculator-page .pdf-disclaimer {
    margin: 5mm 8mm 0;
    padding: 4mm !important;
    border-radius: 3mm !important;
    background: #fff8ed !important;
    color: #4e4b42 !important;
    text-align: left !important;
  }

  .calculator-page .btn,
  .calculator-page button {
    display: none !important;
  }
}

.partner-page .partner-automation .step,
.partner-page .partner-automation .step:nth-child(even) {
  transform: none !important;
}

.home-page .home-hero-real {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0b1511;
  color: #fff;
}

.home-page .home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04);
}

.home-page .home-hero-picture {
  position: absolute;
  inset: 0;
}

.home-page .home-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 13, 0.94) 0%, rgba(7, 18, 13, 0.72) 43%, rgba(7, 18, 13, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 18, 13, 0.72) 0%, rgba(7, 18, 13, 0.08) 48%, rgba(7, 18, 13, 0.22) 100%);
}

.home-page .home-hero-real .hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: clamp(68px, 12vh, 132px) 0 clamp(36px, 8vh, 78px);
}

.home-page .home-hero-real .hero-content {
  max-width: 780px;
}

.home-page .home-hero-real .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.home-page .home-hero-real .hero-title {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 8.4vw, 7.4rem);
  line-height: 0.94;
  letter-spacing: 0;
  hyphens: none;
}

.home-page .home-hero-real .hero-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.06rem, 1.6vw, 1.32rem);
  line-height: 1.45;
}

.home-page .home-hero-real .hero-actions {
  margin-top: 30px;
}

.home-page .home-hero-real .btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.home-page .home-hero-real .hero-facts {
  max-width: 820px;
  margin-top: clamp(36px, 7vh, 72px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .home-hero-real .hero-fact {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(12px);
}

.home-page .home-hero-real .hero-fact strong {
  color: #fff;
}

.home-page .home-hero-real .hero-fact span {
  color: rgba(255, 255, 255, 0.72);
}

.home-page .home-proof-strip {
  border: 0;
  background: #f7f8f4;
}

.home-page .home-proof-strip .trust-strip-grid {
  align-items: center;
}

.home-page .home-proof-strip h2 {
  max-width: 720px;
}

.home-page .home-project-guide {
  background:
    linear-gradient(120deg, rgba(38, 63, 72, 0.07), rgba(255, 255, 255, 0) 38%),
    linear-gradient(300deg, rgba(185, 130, 59, 0.09), rgba(255, 255, 255, 0) 36%),
    #eef4ed;
}

.home-page .home-project-guide .section-head h2 {
  hyphens: none;
}

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

.route-card {
  position: relative;
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(18, 31, 23, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.route-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--green);
  content: "";
}

.route-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 74px;
  height: 74px;
  border-right: 1px solid rgba(18, 31, 23, 0.14);
  border-bottom: 1px solid rgba(18, 31, 23, 0.14);
  content: "";
}

.route-card-trade::before {
  background: var(--blue);
}

.route-card-docs::before {
  background: var(--amber);
}

.route-card:hover,
.route-card:focus-visible {
  border-color: rgba(10, 111, 36, 0.28);
  box-shadow: 0 20px 48px rgba(20, 36, 29, 0.12);
  outline: none;
  transform: translateY(-3px);
}

.route-kicker {
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(10, 111, 36, 0.18);
  border-radius: var(--radius);
  background: #f4faf3;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-card-trade .route-kicker {
  border-color: rgba(38, 63, 72, 0.22);
  background: #eef5f5;
  color: var(--blue);
}

.route-card-docs .route-kicker {
  border-color: rgba(185, 130, 59, 0.26);
  background: #fff7e9;
  color: #8a5d25;
}

.route-card h3 {
  margin: 22px 0 0;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.08;
}

.route-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.route-meta {
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-2);
  font-weight: 900;
}

.route-meta::after {
  content: "->";
  transition: transform 0.18s var(--ease-standard);
}

.route-card:hover .route-meta::after,
.route-card:focus-visible .route-meta::after {
  transform: translateX(3px);
}

.route-card-trade .route-meta {
  color: var(--blue);
}

.route-card-docs .route-meta {
  color: #8a5d25;
}

.project-checklist {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(18, 31, 23, 0.13);
  border-left: 6px solid var(--green-2);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(20, 36, 29, 0.09);
}

.project-checklist h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.16;
}

.project-checklist .eyebrow {
  margin-bottom: 8px;
}

.project-checklist .clean-list {
  margin: 0;
}

.project-checklist .text-link {
  margin-top: 0;
  white-space: nowrap;
}

@media (max-width: 1020px) {
  .project-guide-grid,
  .project-checklist {
    grid-template-columns: 1fr;
  }
}

.home-page .home-services-short {
  background: #fff;
}

.home-page .home-services-short .card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: rgba(18, 31, 23, 0.12);
  box-shadow: none;
}

.home-page .home-services-short .card p {
  font-size: 1rem;
}

.text-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  color: var(--green-2);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  margin-left: 7px;
  content: "->";
  transition: transform 0.18s var(--ease-standard);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(3px);
}

.btn:focus-visible,
.text-link:focus-visible,
.nav-links a:focus-visible,
.menu-toggle:focus-visible,
.route-card:focus-visible,
.service-preview-button:focus-visible,
.service-package:focus-visible,
.cost-card:focus-visible,
.cost-line:focus-visible,
.cost-tile:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(185, 130, 59, 0.82);
  outline-offset: 3px;
}

.card,
.cost-card,
.service-package,
.service-preview-item,
.route-card,
.jump-strip a {
  transition-timing-function: var(--ease-standard);
}

@media (hover: hover) and (pointer: fine) {
  .home-page .home-services-short .card:hover {
    border-color: rgba(10, 111, 36, 0.26);
    box-shadow: 0 16px 36px rgba(20, 36, 29, 0.09);
    transform: translateY(-2px);
  }
}

.home-page .home-real-work {
  background: #f2f5ef;
}

.home-page .home-real-work .split,
.home-page .home-partner-short .split,
.home-page .section-closing .split {
  align-items: center;
}

.home-page .home-real-work .wide-image-card,
.home-page .home-partner-short .wide-image-card,
.home-page .section-closing .content-image-card {
  border-radius: 8px;
  box-shadow: none;
}

.home-page .home-real-work .wide-image-card img,
.home-page .home-partner-short .wide-image-card img,
.home-page .section-closing .content-image-card img {
  min-height: 520px;
  object-fit: cover;
}

.home-page .home-real-work .wide-image-card img {
  object-position: center;
}

.home-page .home-partner-short .wide-image-card img {
  object-position: center 38%;
}

.home-page .home-partner-short {
  background:
    linear-gradient(90deg, rgba(10, 111, 36, 0.16), rgba(255, 255, 255, 0) 44%),
    #102017;
}

.home-page .home-partner-short .btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.home-page .section-closing .portrait-card img {
  object-position: center 18%;
}

.home-page .section-closing .portrait-card-formal img,
.about-page .page-visual-formal img {
  object-position: center 16%;
}

.services-page .service-preview-button .icon,
.about-page .team-role-card .role-symbol {
  display: none;
}

.services-page .service-preview-button {
  grid-template-columns: minmax(0, 1fr) auto;
}

@media (max-width: 760px) {
  .home-page .home-hero-real {
    min-height: auto;
  }

  .home-page .home-hero-bg {
    object-position: center 16%;
  }

  .home-page .home-hero-shade {
    background:
      linear-gradient(0deg, rgba(7, 18, 13, 0.94) 0%, rgba(7, 18, 13, 0.78) 47%, rgba(7, 18, 13, 0.34) 100%),
      linear-gradient(90deg, rgba(7, 18, 13, 0.78), rgba(7, 18, 13, 0.26));
  }

  .home-page .home-hero-real .hero-inner {
    padding-top: 43vh;
    padding-bottom: 30px;
  }

  .home-page .home-hero-real .hero-title {
    font-size: clamp(2.35rem, 11.8vw, 3.25rem);
    line-height: 0.98;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 14px;
  }

  .cookie-banner p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .cookie-actions {
    gap: 8px;
    margin-top: 10px;
  }

  .cookie-actions .btn {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .home-page .home-hero-real .hero-content > p:not(.eyebrow) {
    font-size: 1.08rem;
  }

  .home-page .home-hero-real .hero-facts {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .home-page .home-hero-real .hero-fact {
    min-height: 0;
    padding: 14px;
  }

  .home-page .home-real-work .wide-image-card img,
  .home-page .home-partner-short .wide-image-card img,
  .home-page .section-closing .content-image-card img {
    min-height: 360px;
  }

  .route-card {
    min-height: 230px;
    padding: 20px;
  }

  .project-checklist {
    padding: 18px;
  }

  .project-checklist .text-link {
    white-space: normal;
  }

  .home-page .home-services-short .card {
    min-height: 190px;
  }
}

/* Feedback pass: less text wall, fewer synthetic icons, clearer mobile flow. */
.calculator-page .calc-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.92)),
    #f8fbf5;
}

.calculator-page .calc-hero {
  padding-top: 44px;
  padding-bottom: 20px;
}

.calculator-page .calc-hero h1 {
  max-width: 620px;
  font-size: clamp(2.75rem, 5.2vw, 5.6rem);
  line-height: 0.98;
}

.calculator-page .calc-hero .calc-copy {
  max-width: 520px;
  font-size: 1.02rem;
}

.calculator-page .calc-photo-card {
  position: relative;
  border-width: 0;
  border-radius: 18px;
}

.calculator-page .calc-photo-card img {
  aspect-ratio: 1.18 / 1;
  min-height: 330px;
  object-position: center 42%;
}

.calculator-page .calc-photo-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(7, 18, 13, 0.78);
  color: #fff;
  backdrop-filter: blur(10px);
}

.calculator-page .calc-photo-card figcaption strong {
  font-size: 0.95rem;
}

.calculator-page .calc-photo-card figcaption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.calculator-page .calc-card {
  max-width: 900px;
  margin-top: 10px;
  margin-bottom: 70px;
  padding: 26px;
  border: 1px solid rgba(22, 117, 50, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 68px rgba(19, 32, 25, 0.12);
}

.calculator-page .calc-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: #dcf0d8;
  color: var(--green-2);
}

.calculator-page .calc-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calculator-page .calc-option.is-selected .calc-icon,
.calculator-page .calc-check.is-selected .calc-icon {
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.calculator-page .calc-house-icon {
  width: 82px;
  height: 58px;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.calculator-page .calc-house-icon svg {
  width: 80px;
  height: 56px;
}

.calculator-page .calc-step-head {
  margin-top: 0;
}

.calculator-page .calc-step-head h2 {
  font-size: clamp(1.42rem, 2.2vw, 1.86rem);
}

.calculator-page .calc-step-head span,
.calculator-page .calc-label {
  letter-spacing: 0;
}

.calculator-page .calc-option {
  min-height: 88px;
  gap: 14px;
  padding: 18px 20px;
  justify-content: flex-start;
  border-radius: 14px;
}

.calculator-page .calc-option.center {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.calculator-page .calc-options[data-single="building"] .calc-option.center {
  min-height: 130px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.calculator-page .calc-check {
  min-height: 66px;
  padding: 15px 16px;
  border-radius: 12px;
}

.calculator-page .calc-result-top {
  grid-template-columns: 1fr;
}

.calculator-page .calc-result-box {
  padding: 22px;
  border-radius: 16px;
}

.services-page .service-preview-button p {
  display: none;
}

.services-page .service-preview-item.is-open .service-preview-button p {
  display: block;
}

.services-page .service-preview-button {
  min-height: 78px;
}

.services-page .service-directory .service-preview-button,
.services-page .service-directory .service-preview-item.is-open .service-preview-button {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.services-page .service-directory .service-preview-side,
.services-page .service-directory .service-preview-item.is-open .service-preview-side {
  grid-column: auto;
  justify-self: end;
  margin-top: 0;
}

.services-page .service-preview-button h3 {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.services-page .free-consultation-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 0 0 22px;
  padding: 24px;
  border: 1px solid rgba(10, 111, 36, 0.28);
  border-left: 6px solid var(--green-2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(223, 241, 223, 0.82), rgba(255, 255, 255, 0.9) 44%),
    #fff;
  box-shadow: 0 20px 56px rgba(20, 36, 29, 0.12);
}

.services-page .free-consultation-cta h3 {
  margin: 2px 0 8px;
  color: var(--ink);
  font-size: clamp(1.48rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.services-page .free-consultation-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.services-page .free-consultation-cta .btn {
  min-height: 54px;
  padding-inline: 22px;
  white-space: nowrap;
}

.services-page .service-preview-side {
  font-size: 0.88rem;
}

.cost-page .cost-card ul,
.cost-page .cost-card .package-note {
  display: none;
}

.cost-page .cost-card {
  min-height: 0;
}

.cost-page .cost-tile p {
  display: none;
}

.cost-page .cost-directory {
  gap: 12px;
}

.cost-page .cost-tile {
  min-height: 142px;
}

@media (max-width: 760px) {
  .page-hero p,
  .section-head p {
    overflow-wrap: anywhere;
  }

  .cost-toolbar,
  .service-finder-toolbar {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .cost-search,
  .cost-search input,
  .cost-filter-tabs,
  .cost-match-count {
    min-width: 0;
    max-width: 100%;
  }

  .cost-search input {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cost-filter-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cost-filter-tabs button {
    min-width: 0;
    width: 100%;
    padding-inline: 10px;
    white-space: normal;
  }

  .calculator-page .calc-hero {
    width: min(100% - 24px, var(--max));
    padding-top: 28px;
    gap: 18px;
  }

  .calculator-page .calc-hero h1 {
    max-width: 17rem;
    font-size: clamp(2.46rem, 12vw, 3.35rem);
  }

  .calculator-page .calc-hero .calc-copy {
    max-width: 20rem;
  }

  .calculator-page .calc-photo-card {
    max-width: none;
  }

  .calculator-page .calc-photo-card img {
    min-height: 250px;
    aspect-ratio: 1.35 / 1;
  }

  .calculator-page .calc-photo-card figcaption {
    position: static;
    border-radius: 0 0 18px 18px;
    background: #102017;
  }

  .calculator-page .calc-card {
    width: min(100% - 24px, var(--max));
    padding: 18px;
    border-radius: 18px;
  }

  .calculator-page .calc-option {
    min-height: 60px;
    padding: 14px 15px;
  }

  .calculator-page .calc-nav {
    position: sticky;
    bottom: 10px;
    z-index: 3;
    margin: 20px -6px -4px;
    padding: 10px;
    border: 1px solid rgba(22, 117, 50, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 36px rgba(19, 32, 25, 0.16);
    backdrop-filter: blur(12px);
  }

  .calculator-page .calc-back,
  .calculator-page .calc-next {
    min-height: 44px;
  }

  .services-page .page-section .section-head,
  .cost-page .page-section .section-head,
  .cost-page .cost-list-section .section-head {
    gap: 8px;
  }

  .services-page .service-preview-button {
    grid-template-columns: minmax(0, 1fr);
    min-height: 72px;
  }

  .services-page .free-consultation-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .services-page .free-consultation-cta .btn {
    width: 100%;
    white-space: normal;
  }

  .services-page .service-directory .service-preview-button,
  .services-page .service-directory .service-preview-item.is-open .service-preview-button {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-page .service-preview-side {
    grid-column: 1;
  }

  .services-page .service-directory .service-preview-side,
  .services-page .service-directory .service-preview-item.is-open .service-preview-side {
    grid-column: 1;
    justify-self: start;
  }

  .cost-page .cost-tile {
    min-height: 116px;
  }
}
