:root {
  --ink: #101820;
  --ink-2: #223242;
  --muted: #627286;
  --soft: #edf2f5;
  --paper: #f7f9f7;
  --white: #ffffff;
  --line: #dce4e8;
  --blue: #145b78;
  --blue-light: #1f7698;
  --teal: #0f766e;
  --teal-light: #15a398;
  --green: #5c9345;
  --logo-green: #7aa646;
  --logo-gray: #6f777d;
  --logo-dark: #3f474d;
  --gold: #c18b2d;
  --copper: #b7602b;
  --focus: #1f7698;
  --shadow: 0 18px 50px rgba(16, 24, 32, 0.10);
  --shadow-strong: 0 28px 80px rgba(16, 24, 32, 0.18);
  --shadow-hover: 0 24px 62px rgba(16, 24, 32, 0.14);
  --shadow-hover-strong: 0 32px 78px rgba(16, 24, 32, 0.18);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 8px;
  --radius-lg: 8px;
  --container: 1180px;
  --accent-gradient: linear-gradient(135deg, var(--logo-green) 0%, var(--teal) 48%, var(--logo-gray) 100%);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8faf8 46%, #ffffff 100%);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(16, 24, 32, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 72%, transparent);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(27, 139, 209, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px; top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  padding: 0 clamp(18px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(212, 226, 234, 0.8);
  backdrop-filter: blur(20px);
  transition: box-shadow 0.22s ease, background 0.22s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 30px rgba(13, 26, 38, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.brand:hover { transform: translateY(-1px); opacity: 0.92; }

.brand img,
.site-header .brand img {
  width: clamp(116px, 12vw, 148px);
  height: auto;
  object-fit: contain;
}

/* ─── NAV ─── */
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1.5vw, 8px);
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.main-nav a:hover svg,
.main-nav a.active svg { opacity: 1; }

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
  background: rgba(10, 92, 138, 0.07);
}

.nav-cta {
  min-height: 40px;
  padding: 0 18px !important;
  border-radius: 8px !important;
  background: var(--accent-gradient) !important;
  color: var(--white) !important;
  font-weight: 800 !important;
  gap: 8px !important;
  margin-left: 6px;
  box-shadow: 0 4px 16px rgba(6, 131, 126, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(6, 131, 126, 0.38) !important;
  background: linear-gradient(135deg, var(--logo-green), var(--teal-light) 56%, var(--logo-dark)) !important;
  color: var(--white) !important;
}
.nav-cta svg { opacity: 1 !important; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  padding: clamp(120px, 16vw, 190px) clamp(18px, 5vw, 72px) clamp(180px, 22vw, 240px);
  overflow: hidden;
  isolation: isolate;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 12s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(10, 20, 35, 0.78) 0%,
    rgba(6, 131, 126, 0.22) 60%,
    rgba(10, 92, 138, 0.35) 100%
  );
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 0%, transparent 70%);
}

.hero-content {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  color: var(--white);
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

section:not(.hero) .eyebrow,
.section .eyebrow {
  border: none;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin: 0 0 14px;
}

.hero h1 {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  max-width: 820px;
  margin: 0 0 22px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #5de0d8, #9aef7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero > .hero-content > p {
  max-width: 580px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(255,255,255,0.82);
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 36px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 28px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
}

.hero-panel span { flex: 1; font-weight: 600; }

.hero-panel ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0; padding: 0;
}

.hero-panel li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.hero-panel li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 8px rgba(9, 168, 159, 0.8);
  flex-shrink: 0;
}

/* ─── BUTTONS ─── */
.button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button-primary {
  background: var(--accent-gradient);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(6, 131, 126, 0.3);
}
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(6, 131, 126, 0.4);
}

.button-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}
.button-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line);
}
.button-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px) clamp(18px, 3vw, 30px);
  border-right: 1px solid var(--line);
  transition: background 0.22s ease;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--paper); }

.trust-item span {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(6, 131, 126, 0.1), rgba(10, 92, 138, 0.08));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--teal);
}

.trust-item strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink);
}

/* ─── SECTIONS ─── */
.section {
  padding: clamp(64px, 9vw, 108px) clamp(18px, 5vw, 72px);
  max-width: 100%;
}

.section:not(.section-muted):not(.cta-section) {
  background-color: rgba(255, 255, 255, 0.96);
  background-image:
    linear-gradient(90deg, rgba(16, 24, 32, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(16, 24, 32, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 22px 22px, rgba(15, 118, 110, 0.08) 1px, transparent 1.5px);
  background-size: 44px 44px, 44px 44px, 44px 44px;
}

.section > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

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

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}

.section-head p:last-child {
  color: var(--muted);
  margin-top: 12px;
}

.section-action {
  text-align: center;
  margin-top: clamp(32px, 5vw, 50px);
}

/* ─── HEADINGS ─── */
h1, h2, h3 {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); margin: 0 0 16px; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); margin: 0 0 10px; }
p { margin: 0 0 16px; }

/* ─── INTRO GRID ─── */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.intro-grid > p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin-top: 8px; }

/* ─── SERVICE GRID ─── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 131, 126, 0.3);
  box-shadow: var(--shadow);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card .card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(6, 131, 126, 0.12), rgba(10, 92, 138, 0.08));
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--teal);
}

.service-card > span:first-child {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.service-card h3 { font-size: 1.25rem; margin: 0 0 10px; }
.service-card p { color: var(--muted); flex: 1; font-size: 0.94rem; }

/* ─── IMAGE TEXT ─── */
.image-text {
  display: grid;
  grid-template-columns: minmax(280px, 1.02fr) minmax(280px, 0.98fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}
.image-text-reverse img { order: 2; }

.image-text img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.image-text:hover img {
  transform: scale(1.012);
  filter: saturate(1.06) contrast(1.03);
}

.check-list, .mini-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li, .mini-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--green));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ─── SHOWCASE CARDS ─── */
.project-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1.05fr;
  gap: 1px;
  background: var(--line);
}

.showcase-card {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.showcase-card img {
  width: 100%; height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.showcase-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7,18,26,0.06), rgba(7,18,26,0.86));
}

.showcase-card div {
  position: absolute;
  left: clamp(22px, 4vw, 34px);
  right: clamp(22px, 4vw, 34px);
  bottom: clamp(24px, 4vw, 36px);
}

.showcase-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.showcase-card strong {
  display: block;
  max-width: 390px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.showcase-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.08);
}

/* ─── PROCESS ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.process-step {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.process-step span {
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-gradient);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.process-step h3 { font-size: 1.08rem; margin: 0 0 8px; }
.process-step p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ─── CTA SECTION ─── */
.cta-section {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.48fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: linear-gradient(135deg, #063e3c 0%, #072e48 60%, #0a1e2e 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 168, 159, 0.18), transparent 70%);
  pointer-events: none;
}

.cta-section > * { max-width: none; margin-left: 0; margin-right: 0; }

.cta-section h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
}

.cta-section p {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255,255,255,0.78);
}

.cta-actions {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
}

.cta-section .button-primary {
  background: var(--accent-gradient);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(3, 24, 30, 0.24);
}
.cta-section .button-primary:hover {
  background: linear-gradient(135deg, var(--logo-green), var(--teal-light) 54%, var(--logo-dark));
  color: var(--white);
}

.cta-section .button-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.cta-section .button-outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.54);
  background: rgba(255,255,255,0.16);
}

.footer-bridge {
  position: relative;
  z-index: 2;
  padding: 0 clamp(18px, 5vw, 72px);
  margin-top: clamp(-64px, -4vw, -32px);
  margin-bottom: -1px;
}

.footer-bridge-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 22px 58px rgba(3, 18, 28, 0.22);
  backdrop-filter: blur(12px);
}

.footer-bridge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 22px clamp(18px, 3vw, 30px);
  border-right: 1px solid rgba(16, 24, 32, 0.08);
}

.footer-bridge-item:last-child {
  border-right: none;
}

.footer-bridge-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(122, 166, 70, 0.16), rgba(15, 118, 110, 0.12));
  color: var(--teal);
  font-size: 1rem;
}

.footer-bridge-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.25;
}

.footer-bridge-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.contact-link {
  color: rgba(255,255,255,0.82);
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}
.contact-link:hover { color: var(--white); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.9rem;
}
.text-link::after {
  content: '';
  width: 20px; height: 2px;
  background: var(--teal);
  transition: transform 0.2s ease;
}
.text-link:hover::after { transform: translateX(5px); }

/* ─── INLINE CTA ─── */
.inline-cta { margin-top: 28px; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: clamp(86px, 10vw, 142px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 20%, rgba(82, 163, 63, 0.2), transparent 28%),
    linear-gradient(135deg, #0d1a26, #0f2e42);
  color: var(--white);
}

.page-hero > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
}

.page-hero p {
  max-width: 740px;
  color: rgba(255,255,255,0.76);
  margin-top: 18px;
}

.page-hero-split {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  overflow: hidden;
}

.page-hero-split img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

/* ─── LEISTUNGEN ─── */
.leistung-list { display: grid; gap: 18px; }

.leistung-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.leistung-row:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 131, 126, 0.34);
  box-shadow: var(--shadow);
}

.leistung-number {
  width: 66px; height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(82, 163, 63, 0.18), rgba(6, 131, 126, 0.12));
  color: var(--teal);
  font-weight: 900;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.1rem;
}

.leistung-row h3 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}
.leistung-row p { max-width: 900px; margin: 0 0 12px; color: var(--muted); }

.service-overview {
  padding-top: clamp(48px, 7vw, 84px);
}

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

.insight-card,
.deliverable-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(220, 228, 232, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 18px 48px rgba(16, 24, 32, 0.08);
}

.insight-icon,
.deliverable-card > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 18px;
  color: var(--teal);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(183, 96, 43, 0.12));
}

.insight-card strong {
  display: block;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.insight-card p,
.deliverable-card p,
.flow-infographic p,
.decision-matrix p {
  color: var(--muted);
  margin: 0;
}

.infographic-section {
  overflow: hidden;
}

.flow-infographic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.flow-infographic::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.12), rgba(183, 96, 43, 0.38), rgba(15, 118, 110, 0.12));
}

.flow-infographic article {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(220, 228, 232, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(16, 24, 32, 0.08);
}

.flow-infographic span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
}

.flow-infographic h3,
.deliverable-card h3,
.decision-matrix h3 {
  font-size: 1.12rem;
}

.decision-matrix {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  margin-top: clamp(34px, 5vw, 58px);
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(9, 31, 39, 0.98), rgba(20, 91, 120, 0.94) 58%, rgba(54, 43, 34, 0.96));
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.decision-matrix .eyebrow,
.decision-matrix p {
  color: rgba(255,255,255,0.74);
}

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

.matrix-grid span {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
  font-weight: 750;
}

.matrix-grid i {
  color: #f0b85f;
  flex: 0 0 auto;
}

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

/* ─── STATS BAND ─── */
.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0; padding-bottom: 0;
  background: var(--line);
}

.stats-band div {
  background: var(--ink);
  color: var(--white);
  padding: clamp(28px, 5vw, 58px);
}

.stats-band strong {
  display: block;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1;
  background: linear-gradient(90deg, #5de0d8, #9aef7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-band span { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* ─── FOUNDER SECTION ─── */
.founder-section {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
  padding: clamp(64px, 9vw, 108px) clamp(18px, 5vw, 72px);
  max-width: 100%;
}

.founder-section > * {
  max-width: var(--container);
}

.founder-card {
  position: sticky;
  top: 100px;
  text-align: center;
}

.founder-photo {
  width: 280px; height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-strong);
  border: 4px solid var(--white);
  outline: 1px solid var(--line);
}

.founder-name {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--ink);
}

.founder-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.founder-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin: 0 0 20px;
}

.founder-content p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.founder-quote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--teal);
  background: linear-gradient(135deg, rgba(6, 131, 126, 0.05), rgba(10, 92, 138, 0.03));
  border-radius: 0 var(--radius) var(--radius) 0;
}

.founder-quote p {
  font-size: 1.12rem;
  font-style: italic;
  color: var(--ink);
  font-weight: 600;
  margin: 0;
}

/* ─── TEAM NEW IMAGE SECTIONS ─── */
.new-image-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin: 0 clamp(18px, 5vw, 72px);
}

.new-image-section img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.new-image-section .content-side {
  background: linear-gradient(135deg, #063e3c, #072e48);
  color: var(--white);
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.new-image-section .content-side h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.new-image-section .content-side p {
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  font-size: 0.98rem;
}

/* ─── BENEFIT LIST ─── */
.value-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.value-copy { position: sticky; top: 100px; }
.value-copy p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

.benefit-list { display: grid; gap: 16px; }

.benefit-item {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  position: relative;
  padding-left: 72px;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.benefit-item:hover {
  transform: translateX(6px);
  border-color: rgba(6, 131, 126, 0.3);
  box-shadow: 0 8px 24px rgba(13, 26, 38, 0.07);
}

.benefit-item::before {
  content: "\f00c";
  position: absolute;
  left: 22px; top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(6, 131, 126, 0.12), rgba(10, 92, 138, 0.08));
  font: var(--fa-font-solid);
  display: grid;
  place-items: center;
  color: var(--teal);
  font-size: 1rem;
}

.benefit-item:nth-child(1)::before { content: "\f085"; }
.benefit-item:nth-child(2)::before { content: "\f4ad"; }
.benefit-item:nth-child(3)::before { content: "\f0eb"; }
.benefit-item:nth-child(4)::before { content: "\f5a0"; }
.benefit-item:nth-child(5)::before { content: "\f0e0"; }

.benefit-item h3 { font-size: 1rem; margin: 0 0 6px; }
.benefit-item p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ─── PILL GRID ─── */
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }

.pill-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s;
}
.pill-grid span:hover {
  border-color: var(--teal);
  background: rgba(6, 131, 126, 0.06);
}

/* ─── MEDIA BAND ─── */
.media-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 1px;
  background: var(--line);
  overflow: hidden;
}
.media-band img { width: 100%; height: 430px; object-fit: cover; }

/* ─── CONTACT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  gap: 28px;
  align-items: start;
}

.contact-info { display: grid; gap: 16px; }
.contact-info address { font-style: normal; color: var(--muted); }
.contact-info a { color: var(--blue); font-weight: 800; text-decoration: none; display: block; }

.contact-form {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; font-weight: 700; }

input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(6, 131, 126, 0.13);
}

textarea { resize: vertical; }
.contact-form p { color: var(--muted); font-size: 0.9rem; }
.contact-form a { color: var(--blue); font-weight: 800; }

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

.legal-response-actions {
  margin-top: 28px;
}

/* ─── LEGAL ─── */
.legal-wrap {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: 20px;
  justify-items: stretch;
}

.legal-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 4px 0 10px;
}

.legal-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 8px;
  background: rgba(255,255,255,0.88);
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(16, 24, 32, 0.06);
}

.legal-card {
  width: 100%;
  padding: clamp(24px, 3vw, 34px);
}

.legal-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.22;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.legal-card p {
  margin: 0;
}

.legal-card p + p {
  margin-top: 12px;
}

.legal-card a { color: var(--teal); font-weight: 800; }
.legal-card ul { margin: 12px 0 0; padding-left: 22px; }
.legal-card li + li { margin-top: 6px; }

/* ─── FOOTER ─── */
.site-footer {
  padding: 64px clamp(18px, 5vw, 72px) 32px;
  background: linear-gradient(135deg, #051a24 0%, #071e2e 50%, #06131e 100%);
  color: rgba(255,255,255,0.65);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(9, 168, 159, 0.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: var(--container);
  margin: 0 auto;
}

.footer-brand img {
  width: 154px; height: auto;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.95);
  margin-bottom: 18px;
}

.site-footer p { max-width: 390px; margin-bottom: 0; line-height: 1.7; }
.site-footer address { font-style: normal; line-height: 1.9; }
.site-footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: var(--white); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 28px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-bottom a {
  color: rgba(255,255,255,0.78);
  font-weight: 700;
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ─── FAQ GRID ─── */
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ─── SPLIT SECTION ─── */
.split-section .value-layout { display: grid; gap: 36px; }

/* ─── DETAIL GRID ─── */
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ─── PREMIUM REFINEMENTS ─── */
*,
*::before,
*::after {
  letter-spacing: 0 !important;
}

.site-header {
  min-height: 82px;
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(16, 24, 32, 0.08);
}

.site-header.is-scrolled {
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.10);
}

.brand img,
.site-header .brand img {
  width: clamp(128px, 13vw, 162px);
}

.main-nav a {
  min-height: 42px;
  color: #46566a;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, #7aa646 0%, #0f766e 52%, #6f777d 100%) !important;
  box-shadow: 0 12px 30px rgba(92, 147, 69, 0.24);
}

.button-primary:hover,
.nav-cta:hover {
  box-shadow: 0 18px 42px rgba(92, 147, 69, 0.32) !important;
}

.hero {
  min-height: 760px;
  padding-top: clamp(116px, 13vw, 174px);
  padding-bottom: clamp(150px, 18vw, 210px);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 14, 22, 0.86) 0%, rgba(7, 14, 22, 0.58) 46%, rgba(15, 118, 110, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 14, 22, 0.08), rgba(7, 14, 22, 0.46));
}

.hero-grid {
  opacity: 0.55;
}

.hero h1,
.page-hero h1,
h2 {
  text-wrap: balance;
}

.hero h1 em,
.stats-band strong {
  background: linear-gradient(90deg, #68d7ca, #f0b85f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero > .hero-content > p,
.page-hero p,
.cta-section p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-panel {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.trust-strip {
  max-width: var(--container);
  margin: -22px auto 0;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(220, 228, 232, 0.9);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.section {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(247, 249, 247, 0.96), rgba(239, 244, 244, 0.96));
}

.section-head {
  max-width: 780px;
}

.eyebrow,
section:not(.hero) .eyebrow,
.section .eyebrow {
  color: var(--copper);
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta-section .eyebrow,
.new-image-section .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.service-card,
.process-step,
.leistung-row,
.benefit-item,
.contact-form,
.contact-info article,
.legal-card,
.faq-item {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 228, 232, 0.95);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.service-card:hover,
.process-step:hover,
.leistung-row:hover,
.benefit-item:hover {
  box-shadow: 0 22px 54px rgba(16, 24, 32, 0.12);
}

.service-card .card-icon,
.trust-item span,
.leistung-number,
.benefit-item::before,
.process-step span {
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(183, 96, 43, 0.12));
  color: var(--teal);
}

.process-step span,
.leistung-number {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.image-text img,
.page-hero-split img,
.new-image-section,
.showcase-card,
.founder-photo {
  border-radius: 8px;
}

.image-text img,
.page-hero-split img,
.founder-photo {
  box-shadow: 0 26px 70px rgba(16, 24, 32, 0.16);
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.94), rgba(20, 91, 120, 0.90)),
    url("images/building3.webp") center/cover;
  min-height: 440px;
  display: grid;
  align-items: center;
}

.page-hero-split {
  min-height: 520px;
}

.page-hero-split img {
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.leadership-preview {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 0;
}

.leadership-preview img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.leadership-preview p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.03rem;
}

.leadership-preview .button {
  margin-top: 14px;
}

.leadership-block {
  padding-top: clamp(72px, 8vw, 112px) !important;
  padding-bottom: clamp(72px, 8vw, 112px) !important;
}

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

.leadership-heading {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.founder-section {
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 76px);
  padding: 0;
  max-width: 100%;
}

.founder-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 228, 232, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 0;
  outline: 0;
  margin-bottom: 20px;
}

.founder-tags,
.founder-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.founder-tags {
  justify-content: center;
  margin-top: 16px;
}

.founder-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.20);
  background: rgba(15, 118, 110, 0.08);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
}

.founder-actions {
  margin-top: 32px;
}

.founder-content {
  padding-top: clamp(4px, 2vw, 20px);
}

.founder-quote {
  border-left-color: var(--copper);
  background: linear-gradient(135deg, rgba(183, 96, 43, 0.08), rgba(15, 118, 110, 0.05));
}

.new-image-section {
  box-shadow: 0 24px 70px rgba(16, 24, 32, 0.16);
}

.new-image-section .content-side,
.cta-section,
.site-footer {
  background:
    linear-gradient(135deg, rgba(9, 31, 39, 0.98), rgba(20, 91, 120, 0.94) 54%, rgba(54, 43, 34, 0.96));
}

.project-showcase {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.showcase-card::after {
  background: linear-gradient(180deg, rgba(7,18,26,0.02), rgba(7,18,26,0.86));
}

.contact-info article {
  padding: 22px;
}

.contact-info {
  gap: 14px;
}

.faq-grid {
  display: grid;
  gap: 20px;
}

.faq-item {
  padding: clamp(22px, 3vw, 30px);
}

/* ─── LOCAL FONT AWESOME ICONS ─── */
.main-nav a > svg,
.service-card .card-icon > svg,
.trust-item span > svg {
  display: none;
}

.main-nav a::before,
.service-card .card-icon::before,
.trust-item span::before {
  font: var(--fa-font-solid);
  display: inline-block;
  line-height: 1;
  text-align: center;
  speak: never;
}

.main-nav a::before {
  width: 1.25em;
  opacity: 0.76;
  transition: opacity 0.2s ease;
}

.main-nav a:hover::before,
.main-nav a.active::before {
  opacity: 1;
}

.main-nav a[href$="index.html"]::before { content: "\f015"; }
.main-nav a[href$="leistungen.html"]::before { content: "\f0ae"; }
.main-nav a[href$="about.html"]::before { content: "\f0c0"; }
.main-nav a[href$="kontakt.html"]::before { content: "\f086"; }
.main-nav .nav-cta::before { content: "\f086"; }

.service-card .card-icon::before,
.trust-item span::before {
  font-size: 1.25rem;
}

.service-card:nth-child(1) .card-icon::before { content: "\f0e7"; }
.service-card:nth-child(2) .card-icon::before { content: "\f1c0"; }
.service-card:nth-child(3) .card-icon::before { content: "\f015"; }

.trust-item:nth-child(1) span::before { content: "\f058"; }
.trust-item:nth-child(2) span::before { content: "\f0ae"; }
.trust-item:nth-child(3) span::before { content: "\f0c0"; }
.trust-item:nth-child(4) span::before { content: "\f3ed"; }

/* Hover polish */
.brand,
.main-nav a,
.nav-toggle,
.button,
.trust-item,
.trust-item span,
.service-card,
.service-card .card-icon,
.image-text img,
.page-hero-split img,
.showcase-card,
.showcase-card img,
.process-step,
.process-step span,
.leistung-row,
.leistung-number,
.insight-card,
.insight-icon,
.deliverable-card,
.deliverable-card > i,
.flow-infographic article,
.flow-infographic span,
.decision-matrix,
.matrix-grid span,
.matrix-grid i,
.benefit-item,
.pill-grid span,
.contact-info article,
.faq-item,
.text-link,
.contact-link,
.site-footer a,
.founder-photo,
.leadership-preview img,
.new-image-section img {
  transition-property: transform, box-shadow, border-color, background, color, filter, opacity;
  transition-duration: 0.28s;
  transition-timing-function: var(--ease-out);
}

.service-card h3,
.leistung-row h3,
.insight-card strong,
.deliverable-card h3,
.flow-infographic article h3,
.benefit-item h3,
.faq-item h3,
.benefit-item::before {
  transition: color 0.24s var(--ease-out), transform 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out);
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.24) 42%, transparent 64%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease-out);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button i,
.button svg,
.main-nav a::before,
.contact-link i,
.matrix-grid i {
  transition: transform 0.24s var(--ease-out), opacity 0.24s var(--ease-out), color 0.24s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover {
    transform: translateY(-2px) scale(1.015);
    opacity: 1;
  }

  .nav-toggle:hover,
  .main-nav a:hover,
  .main-nav a.active {
    color: var(--blue);
    background:
      linear-gradient(135deg, rgba(15, 118, 110, 0.10), rgba(20, 91, 120, 0.08));
    box-shadow: 0 10px 24px rgba(16, 24, 32, 0.07);
  }

  .main-nav a:hover {
    transform: translateY(-2px);
  }

  .main-nav a:hover::before,
  .main-nav a.active::before {
    transform: translateY(-1px) scale(1.08);
    opacity: 1;
  }

  .nav-cta:hover,
  .button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(92, 147, 69, 0.34) !important;
  }

  .button:hover::before {
    transform: translateX(120%);
  }

  .button:hover i,
  .button:hover svg {
    transform: translateX(2px) scale(1.04);
  }

  .button-outline:hover {
    background: rgba(15, 118, 110, 0.08);
    border-color: rgba(15, 118, 110, 0.42);
    box-shadow: 0 16px 38px rgba(16, 24, 32, 0.10);
  }

  .button-ghost:hover {
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  }

  .trust-item:hover,
  .contact-info article:hover,
  .faq-item:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(16, 24, 32, 0.10);
  }

  .trust-item:hover span,
  .service-card:hover .card-icon,
  .process-step:hover span,
  .leistung-row:hover .leistung-number,
  .benefit-item:hover::before,
  .insight-card:hover .insight-icon,
  .deliverable-card:hover > i,
  .flow-infographic article:hover span {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 14px 30px rgba(15, 118, 110, 0.18);
  }

  .service-card:hover,
  .process-step:hover,
  .leistung-row:hover,
  .benefit-item:hover,
  .insight-card:hover,
  .deliverable-card:hover,
  .flow-infographic article:hover {
    transform: translateY(-7px);
    border-color: rgba(15, 118, 110, 0.30);
    box-shadow: var(--shadow-hover);
  }

  .insight-card:hover,
  .deliverable-card:hover,
  .flow-infographic article:hover {
    background: rgba(255, 255, 255, 0.99);
  }

  .service-card:hover h3,
  .leistung-row:hover h3,
  .insight-card:hover strong,
  .deliverable-card:hover h3,
  .flow-infographic article:hover h3,
  .benefit-item:hover h3,
  .faq-item:hover h3 {
    color: var(--teal);
  }

  .image-text:hover img,
  .page-hero-split:hover img,
  .leadership-preview:hover img,
  .new-image-section:hover img {
    transform: scale(1.025);
    filter: saturate(1.08) contrast(1.04);
  }

  .showcase-card:hover {
    box-shadow: var(--shadow-hover-strong);
  }

  .showcase-card:hover img {
    transform: scale(1.055);
    filter: saturate(1.08) contrast(1.05);
  }

  .decision-matrix:hover {
    box-shadow: 0 34px 88px rgba(16, 24, 32, 0.24);
  }

  .matrix-grid span:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.28);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  }

  .matrix-grid span:hover i {
    transform: scale(1.12) rotate(-4deg);
    color: #ffd184;
  }

  .pill-grid span:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 118, 110, 0.28);
    background: rgba(15, 118, 110, 0.08);
    box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
  }

  .text-link:hover,
  .contact-link:hover,
  .site-footer a:hover {
    transform: translateX(3px);
  }

  .contact-link:hover i {
    transform: scale(1.1);
  }
}

/* ─── RESPONSIVE ─── */
@media (min-width: 1440px) {
  :root { --container: 1280px; }
  .hero { min-height: 880px; }
}

@media (max-width: 1024px) {
  .trust-strip, .service-grid, .process-grid, .footer-grid,
  .project-showcase, .media-band, .detail-grid, .capability-grid,
  .value-grid, .timeline-grid, .insight-grid, .flow-infographic,
  .deliverable-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .intro-grid, .image-text, .contact-layout, .page-hero-split,
  .leistung-row, .value-layout, .split-section .value-layout, .cta-section,
  .founder-section, .new-image-section, .leadership-preview,
  .decision-matrix { grid-template-columns: 1fr; }

  .value-copy { position: static; }
  .image-text-reverse img { order: 0; }
  .hero { min-height: 760px; padding-bottom: 200px; }
  .showcase-card { min-height: 380px; }
  .page-hero-split img { min-height: 320px; }
  .flow-infographic::before { display: none; }

  .founder-card { position: static; }
  .founder-photo { margin: 0 auto 24px; }
  .founder-photo, .leadership-preview img { max-width: 420px; }
}

@media (max-width: 767px) {
  html { scroll-padding-top: 78px; }

  .site-header[data-header] {
    min-height: 66px;
    padding: 10px 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header[data-header] .main-nav {
    position: absolute;
    left: 12px; right: 12px;
    top: calc(100% + 8px);
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.99);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .site-header[data-header].nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-header[data-header] .main-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: var(--radius);
  }

  .site-header[data-header] .main-nav a::after { display: none; }
  .site-header[data-header] .nav-cta { justify-content: center; margin-top: 4px; margin-left: 0; }

  .hero { min-height: auto; padding-top: 128px; padding-bottom: 240px; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); }

  .hero-panel {
    left: 14px; right: 14px; bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-panel ul { flex-wrap: wrap; gap: 12px; }

  .trust-strip, .service-grid, .process-grid, .footer-grid,
  .project-showcase, .media-band, .detail-grid, .capability-grid,
  .faq-grid, .value-grid, .timeline-grid, .stats-band, .insight-grid,
  .flow-infographic, .deliverable-grid, .matrix-grid { grid-template-columns: 1fr; }

  .trust-strip {
    margin: 0 16px;
  }

  .trust-item { border-right: none; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: none; }

  .section { padding-left: 16px; padding-right: 16px; }

  .value-layout {
    gap: 24px;
  }

  .value-copy {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .value-copy p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .benefit-list {
    width: min(100%, 620px);
    margin: 0 auto;
    gap: 14px;
  }

  .benefit-item {
    padding: 22px 20px 22px 68px;
    min-height: 112px;
  }

  .benefit-item::before {
    left: 20px;
    top: 24px;
    transform: none;
    width: 36px;
    height: 36px;
  }

  .benefit-item h3 {
    font-size: 1rem;
    line-height: 1.28;
  }

  .benefit-item p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .image-text img { min-height: 260px; aspect-ratio: 4/3; }
  .media-band img { height: 260px; }
  .insight-card,
  .deliverable-card,
  .flow-infographic article,
  .decision-matrix {
    padding: 22px;
  }
  .legal-wrap {
    gap: 14px;
  }
  .legal-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding-bottom: 8px;
  }
  .legal-nav a {
    width: 100%;
    justify-content: center;
  }
  .legal-card {
    padding: 22px;
  }
  .legal-card h2 {
    font-size: 1.16rem;
    line-height: 1.28;
    margin-bottom: 12px;
  }
  .legal-card p,
  .legal-card li {
    font-size: 0.96rem;
    line-height: 1.68;
  }
  .cta-actions { align-items: stretch; }
  .cta-actions .button { width: 100%; justify-content: center; }

  .footer-bridge {
    padding: 0 16px;
    margin-top: -28px;
  }

  .footer-bridge-inner {
    grid-template-columns: 1fr;
  }

  .footer-bridge-item {
    min-height: 78px;
    padding: 18px;
    border-right: none;
    border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  }

  .footer-bridge-item:last-child {
    border-bottom: none;
  }

  .footer-bridge-item i {
    width: 38px;
    height: 38px;
  }

  .new-image-section {
    grid-template-columns: 1fr;
    margin: 0 16px;
  }
  .new-image-section img { height: 280px; }
  .leadership-preview {
    padding-top: clamp(56px, 12vw, 78px);
  }
  .leadership-preview img {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .hero-actions .button, .button { width: 100%; justify-content: center; }
  .trust-item { min-height: 80px; }
  .benefit-item {
    padding: 18px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 4px;
  }
  .benefit-item::before {
    position: static;
    grid-row: 1 / span 2;
    transform: none;
    width: 40px;
    height: 40px;
  }
  .benefit-item h3,
  .benefit-item p {
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .why-section .section-head {
    max-width: 100%;
    padding-top: 44px !important;
    margin-bottom: 28px;
  }

  .why-section .section-head h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.08;
  }

  .why-section .value-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px !important;
    width: 100%;
  }

  .why-section .value-copy,
  .why-section .benefit-list {
    width: min(100%, 620px) !important;
    max-width: 100%;
    margin-inline: auto !important;
  }

  .why-section .value-copy p {
    font-size: 1rem;
    line-height: 1.72;
    margin: 0 0 14px;
  }

  .why-section .benefit-list {
    gap: 14px;
  }

  .why-section .benefit-item {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    column-gap: 14px;
    row-gap: 4px;
    align-items: start;
    min-height: 0;
    padding: 18px !important;
  }

  .why-section .benefit-item::before {
    position: static !important;
    grid-row: 1 / span 2;
    width: 42px !important;
    height: 42px !important;
    transform: none !important;
  }

  .why-section .benefit-item h3,
  .why-section .benefit-item p {
    min-width: 0;
  }
}

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